@charset "UTF-8";
/*
================================================================
 ベースレイアウト
================================================================
*/
html {
  font-size: 16px;
  font-weight: normal;
  line-height: 2;
}
@media print {
  html {
    font-size: 16px;
  }
}

/*
================================================================
 端末ごとの表示変更
================================================================
*/
@media all and (max-width: 1279px) {
  .mb-hide,
  .pc-only {
    /* タブレット、スマートフォン時非表示 */
    display: none !important;
  }
}
@media all and (max-width: 767px) {
  .sp-hide,
  .tb-only {
    /* スマートフォン時非表示 */
    display: none !important;
  }
}
@media all and (min-width: 1280px) {
  .pc-hide,
  .mb-only,
  .tb-only {
    /* PC時非表示 */
    display: none !important;
  }
}
@media all and (min-width: 768px) {
  .sp-only {
    /* PC、タブレット時非表示 */
    display: none !important;
  }
}
@media all and (min-width: 768px) and (max-width: 1279px) {
  .tb-hide {
    /* タブレット時非表示 */
    display: none !important;
  }
}
/*
================================================================
 コンテナ
================================================================
*/
.container {
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 0;
  clear: both;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  width: calc(100% - 30px);
  max-width: 1000px;
}
@media all and (min-width: 580px) {
  .container {
    width: calc(100% - 50px);
  }
}
@media all and (min-width: 768px) {
  .container {
    width: calc(100% - 100px);
  }
}
@media all and (min-width: 1080px) {
  .container {
    width: calc(100% - 120px);
  }
}
@media all and (min-width: 1280px) {
  .container {
    width: calc(100% - 140px);
  }
}
@media all and (min-width: 1440px) {
  .container {
    width: calc(100% - 160px);
  }
}
.container.container--wide {
  max-width: 1200px;
}
.container.container--exwide {
  max-width: 1400px;
}
.container.container--narrow {
  max-width: 800px;
}

.half-container {
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 0;
  width: 90%;
  max-width: 500px;
  clear: both;
  box-sizing: border-box;
  width: calc(100% - 15px);
}
@media all and (min-width: 580px) {
  .half-container {
    width: calc(100% - 25px);
  }
}
@media all and (min-width: 768px) {
  .half-container {
    width: calc(100% - 50px);
  }
}
@media all and (min-width: 1080px) {
  .half-container {
    width: calc(100% - 60px);
  }
}
@media all and (min-width: 1280px) {
  .half-container {
    width: calc(100% - 70px);
  }
}
@media all and (min-width: 1440px) {
  .half-container {
    width: calc(100% - 80px);
  }
}
.half-container.half-container--left {
  margin-left: auto;
  margin-right: 0;
}
.half-container.half-container--right {
  margin-left: 0;
  margin-right: auto;
}
.half-container.half-container--wide {
  max-width: 600px;
}
.half-container.half-container--exwide {
  max-width: 700px;
}
.half-container.half-container--narrow {
  max-width: 400px;
}

.inner-container {
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 0;
  clear: both;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  width: calc(100% - 30px);
  max-width: 1000px;
}
@media all and (min-width: 580px) {
  .inner-container {
    width: calc(100% - 50px);
  }
}
@media all and (min-width: 768px) {
  .inner-container {
    width: calc(100% - 100px);
  }
}
@media all and (min-width: 1080px) {
  .inner-container {
    width: calc(100% - 100px);
  }
}
@media all and (min-width: 1280px) {
  .inner-container {
    width: calc(100% - 140px);
  }
}
@media all and (min-width: 1440px) {
  .inner-container {
    width: calc(100% - 140px);
  }
}
.inner-container.inner-container--wide {
  max-width: 1200px;
}
.inner-container.inner-container--exwide {
  max-width: 1400px;
}
.inner-container.inner-container--narrow {
  max-width: 800px;
}

/*
================================================================
 サイトデザインの反映
================================================================
*/
html {
  background: #a7a7a7;
  background-repeat: repeat;
  background-size: auto;
  color: #000;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  text-align: left;
}

a {
  color: #06b;
  text-decoration: underline;
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s;
}
a:hover {
  opacity: 0.7;
}

a.inherit {
  color: inherit;
  text-decoration: inherit;
}

a.href-box {
  display: block;
}

.set-call-link a {
  color: inherit;
  text-decoration: inherit;
}

ruby rt {
  transform: translateY(0.5em);
}

.twitter-tweet {
  margin-left: auto;
  margin-right: auto;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

.line-break-span span {
  display: inline-block;
}

@media all and (max-width: 1279px) {
  .line-break-span-mb span {
    display: inline-block;
  }

  .line-break-span-mb br:not(.set--force) {
    display: none;
  }
}
/*
================================================================
 表示領域とスクロール領域
================================================================
*/
.display-content {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  min-height: 100dvh;
  max-width: 2560px;
  background-color: #fff;
  background-image: url(../img/common/bg/bg_ruled.png);
  background-position: center center;
  background-repeat: repeat;
  background-size: 122px 122px;
  color: #000;
}

.display-content-area {
  position: relative;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 2560px;
}

/* スクロール領域 */
@media print {
  /* for print color */
  html {
    background: transparent;
  }

  .display-content {
    background: transparent;
    color: #000;
  }
}
/*
================================================================
 エフェクト
================================================================
*/
/*
================================================================
 表示
================================================================
*/
.disp-blend-multiply {
  mix-blend-mode: multiply;
}

.disp-clip-box {
  overflow: hidden;
}

body.agent-prop--SP .is-PC-only {
  display: none !important;
}

body:not(.agent-prop--SP) .is-SP-only {
  display: none !important;
}

.txt-punc-shrink {
  display: inline-block;
  margin-right: -0.4em;
}

/*
================================================================
 操作
================================================================
*/
.jsctrl--disable-events {
  pointer-events: none !important;
}

/*
================================================================
 メイン領域
================================================================
*/
/*
================================================================
 グローバルヘッダー
================================================================
*/
/* スクロール位置 */
/* ヘッダー */
.global-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000;
  display: block;
  width: 100%;
  height: 100px;
  color: #000;
}
.global-header::before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 1;
  transition: height 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s, opacity 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s;
}

/* タイトル部 */
.global-header-title {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
}
.global-header-title .content-container {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
}

.global-header-title__label {
  position: absolute;
  top: 15px;
  left: 25px;
  z-index: 12;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  height: 70px;
  padding: 0 0;
  width: auto;
  width: -moz-max-content;
  /* Firefox */
  width: -webkit-max-content;
  /* Chrome */
  width: max-content;
}
.global-header-title__label img {
  display: block;
  width: auto;
  height: 100%;
}
.global-header-title__label em {
  display: block;
  background-color: #007d9b;
  color: #fff;
  font-size: 1rem;
  line-height: 2;
  padding: 0 0.7em 1px;
  margin-left: 1.5em;
  border-radius: 8px;
}

/* ハンバーガーメニュー ボタン */
.global-header-toggle {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
}
.global-header-toggle .content-container {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.global-header-toggle-button {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 13;
  display: block;
  margin: 0;
  padding: 0;
  border: 0 none;
  outline: 0 none;
  background-color: #007d9b;
  width: 50px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}
.global-header-toggle-button::before {
  /* auto height */
  content: "";
  display: block;
  box-sizing: content-box;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 100% 0 0;
}
.global-header-toggle-button span {
  position: absolute;
  z-index: 2;
  left: 25%;
  display: block;
  box-sizing: content-box;
  width: 50%;
  height: 0;
  margin-top: -1px;
  border-top: 1px solid #fff;
  opacity: 1;
  transition: top 0.3s cubic-bezier(0, 0, 0.6, 1) 0.3s, opacity 0.3s cubic-bezier(0, 0, 0.6, 1) 0.3s, left 0.3s cubic-bezier(0.4, 0, 1, 1) 0s, width 0.3s cubic-bezier(0.4, 0, 1, 1) 0s, transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
}
.global-header-toggle-button span:nth-child(1) {
  top: 40%;
}
.global-header-toggle-button span:nth-child(2) {
  top: 60%;
}

/* ハンバーガーメニュー 項目 */
.global-header-content {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
}
.global-header-content .content-container {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.global-header-content__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.global-header-content__display-height {
  display: none;
  height: 100vh;
  height: 100lvh;
}

.global-header-content__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
}
.global-header-content__panel .content-container {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.global-header-nav {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-end;
  box-sizing: border-box;
  margin: 0 0 0;
  padding: 0 0 0;
  width: 100%;
  height: 100px;
}

.global-header-nav-menu {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  box-sizing: border-box;
  margin: 0 0 0;
  padding: 20px 0;
  height: 100px;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt" 1;
}
.global-header-nav-menu > .menu-item {
  position: relative;
  display: block;
  box-sizing: border-box;
  width: auto;
  width: -moz-max-content;
  /* Firefox */
  width: -webkit-max-content;
  /* Chrome */
  width: max-content;
  height: 100%;
  margin: 0;
  padding: 0;
}
.global-header-nav-menu > .menu-item > a, .global-header-nav-menu > .menu-item > .as-link {
  position: relative;
  z-index: 11;
  display: block;
  box-sizing: border-box;
  height: 100%;
  margin: 0;
  padding: 14px 20px 16px;
  cursor: pointer;
  text-decoration: none;
  opacity: 1;
  text-align: center;
  color: #000;
  font-size: 1.125rem;
  line-height: 30px;
  transition: color 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s, opacity 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s;
}
.global-header-nav-menu > .menu-item > a:hover {
  color: #007d9b;
}
.global-header-nav-menu > .menu-item.current-menu-item > a, .global-header-nav-menu > .menu-item.current-menu-item > .as-link {
  color: #007d9b;
}

.global-header-nav-btn {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  box-sizing: border-box;
  margin: 0 0 0 40px;
  padding: 20px 0;
  height: 100px;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt" 1;
}
.global-header-nav-btn > .menu-item {
  position: relative;
  display: block;
  box-sizing: border-box;
  height: 100%;
  margin: 0;
  padding: 0;
}
.global-header-nav-btn > .menu-item > a, .global-header-nav-btn > .menu-item > .as-link {
  position: relative;
  z-index: 11;
  display: block;
  box-sizing: border-box;
  height: 100%;
  margin: 0;
  padding: 14px 40px 16px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  opacity: 1;
  text-align: center;
  background-color: #007d9b;
  color: #fff;
  font-size: 1.125rem;
  line-height: 30px;
  transition: color 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s, opacity 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s;
}
.global-header-nav-btn > .menu-item > a .this__title, .global-header-nav-btn > .menu-item > .as-link .this__title {
  position: relative;
  z-index: 2;
}
.global-header-nav-btn > .menu-item > a:hover {
  opacity: 0.7;
}

.scroll-content__main {
  padding-top: 100px;
}

@media all and (max-width: 1079px) {
  .global-header {
    height: 70px;
  }

  .global-header-title__label {
    top: 10px;
    left: 10px;
    height: 50px;
  }
  .global-header-title__label em {
    font-size: 0.875rem;
    line-height: 2;
    padding: 0 0.7em 1px;
    border-radius: 6px;
  }

  .global-header-nav {
    height: 70px;
  }

  .global-header-nav-menu {
    height: 70px;
    padding: 10px 0;
  }
  .global-header-nav-menu > .menu-item > a, .global-header-nav-menu > .menu-item > .as-link {
    padding: 9px 10px 11px;
    font-size: 0.875rem;
    line-height: 30px;
  }

  .global-header-nav-btn {
    height: 70px;
    margin: 0 0 0 20px;
    padding: 10px 0;
  }
  .global-header-nav-btn > .menu-item > a, .global-header-nav-btn > .menu-item > .as-link {
    padding: 9px 30px 11px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    font-size: 0.875rem;
    line-height: 30px;
  }

  .scroll-content__main {
    padding-top: 70px;
  }
}
@media all and (max-width: 767px) {
  .global-header {
    height: 70px;
  }

  .global-header-title__label {
    top: 10px;
    left: 10px;
    height: 50px;
  }
  .global-header-title__label em {
    font-size: 0.875rem;
    line-height: 2;
    padding: 0 0.7em 1px;
    border-radius: 6px;
  }

  .global-header-toggle {
    display: block;
  }

  .global-header-content__canvas {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100lvh;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transform: translateY(-100%);
    transition: opacity 0.6s cubic-bezier(0.2, 0, 0.8, 1) 0s, transform 0s 0.6s, visibility 0s 0.6s;
    background-color: rgba(255, 255, 255, 0.9);
  }

  .global-header-content__display-height {
    display: block;
  }

  .global-header-content__panel {
    position: absolute;
    top: 70px;
    left: 0;
    height: calc( 100% - 70px );
    width: 100%;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.2, 0, 0.8, 1) 0s, opacity 0.6s cubic-bezier(0.2, 0, 0.8, 1) 0s, top 0.6s cubic-bezier(0.2, 0, 0.8, 1) 0s, visibility 0.6s cubic-bezier(0.2, 0, 0.8, 1) 0s;
  }
  .global-header-content__panel .content-container {
    height: auto;
    padding: 0 0 calc(100lvh - 100svh);
  }

  .global-header-nav {
    position: relative;
    display: block;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    height: auto;
  }

  .global-header-nav-menu {
    position: static;
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 0;
    margin: 0 0;
  }
  .global-header-nav-menu > .menu-item {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s;
  }
  .global-header-nav-menu > .menu-item:first-child > a, .global-header-nav-menu > .menu-item:first-child > .as-link {
    border-top-color: transparent;
  }
  .global-header-nav-menu > .menu-item > a, .global-header-nav-menu > .menu-item > .as-link {
    width: 100%;
    height: auto;
    padding: 18px 30px 21px;
    text-align: center;
    color: #000;
    border-top: 1px solid #a7a7a7;
    text-decoration: none;
    font-size: 1.125rem;
    line-height: 2;
  }

  .global-header-nav-btn {
    position: static;
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 0 0 0;
    margin: 0 0;
  }
  .global-header-nav-btn > .menu-item {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }
  .global-header-nav-btn > .menu-item > a, .global-header-nav-btn > .menu-item > .as-link {
    width: 100%;
    height: auto;
    padding: 18px 30px 21px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.125rem;
    line-height: 2;
    border-radius: 0;
    transition: none;
  }
  .global-header-nav-btn > .menu-item > a .this__title, .global-header-nav-btn > .menu-item > .as-link .this__title {
    display: inline-block;
    vertical-align: middle;
  }
  .global-header-nav-btn > .menu-item > a:hover, .global-header-nav-btn > .menu-item > .as-link:hover {
    opacity: 1;
  }

  /* ハンバーガーメニュー 展開時 */
  .open-global-header-nav .global-header::before {
    height: 100%;
    opacity: 1;
  }
  .open-global-header-nav .global-header-toggle-button span {
    border-top-color: #fff;
    top: 50%;
    transition: border-color 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s, top 0.3s cubic-bezier(0.4, 0, 1, 1) 0s, opacity 0.3s cubic-bezier(0.4, 0, 1, 1) 0s, left 0.3s cubic-bezier(0, 0, 0.6, 1) 0.3s, width 0.3s cubic-bezier(0, 0, 0.6, 1) 0.3s, transform 0.3s cubic-bezier(0, 0, 0.6, 1) 0.3s;
  }
  .open-global-header-nav .global-header-toggle-button span:nth-child(1) {
    left: 22.5%;
    width: 55%;
    transform: rotate(25deg);
  }
  .open-global-header-nav .global-header-toggle-button span:nth-child(2) {
    left: 22.5%;
    width: 55%;
    transform: rotate(-25deg);
  }
  .open-global-header-nav .global-header-content__canvas {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.2, 0, 0.8, 1) 0s;
  }
  .open-global-header-nav .global-header-content__panel {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .scroll-content__main {
    padding-top: 70px;
  }
}
@media all and (max-width: 579px) {
  .global-header-nav-menu > .menu-item > a, .global-header-nav-menu > .menu-item > .as-link {
    font-size: 1rem;
  }

  .global-header-nav-btn > .menu-item > a, .global-header-nav-btn > .menu-item > .as-link {
    font-size: 1rem;
  }
}
@media print {
  /* 印刷時 */
  .global-header {
    position: absolute;
  }
}
/*
================================================================
 フッターバナー
================================================================
*/
.content-footer-guideline {
  padding: 80px 0;
}

.content-footer-guideline-voice {
  text-align: center;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-size: 1.125rem;
  line-height: 1.8;
}
.content-footer-guideline-voice .this__voice {
  position: relative;
  display: inline-block;
  padding: 0 1em 0.1em;
}
.content-footer-guideline-voice .this__voice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  box-sizing: content-box;
  width: 0;
  height: 100%;
  border-left: 2px solid #000;
  transform: rotate(-15deg);
}
.content-footer-guideline-voice .this__voice::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  box-sizing: content-box;
  width: 0;
  height: 100%;
  border-right: 2px solid #000;
  transform: rotate(15deg);
}

.content-footer-guideline-bnr {
  position: relative;
  z-index: 11;
  padding: 30px 0 0;
}
.content-footer-guideline-bnr a {
  position: relative;
  z-index: 11;
  display: block;
  box-sizing: border-box;
  margin: 0 auto;
  width: 480px;
  padding: 20px 48px 24px;
  background-color: #fff5d7;
  border: 2px solid #000;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  color: #000;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-size: 1.625rem;
  line-height: 1.8;
  box-shadow: 0 5px #c1272d;
}
.content-footer-guideline-bnr a > em {
  display: block;
  color: #c1272d;
  font-style: normal;
  font-size: 3.25rem;
  line-height: 1.2;
  letter-spacing: 0;
  padding-left: 0;
}
.content-footer-guideline-bnr a > span {
  display: block;
}
.content-footer-guideline-bnr a::after {
  content: "";
  position: absolute;
  right: 28px;
  top: calc(50% - 10px);
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/arrow/arrow_black_right.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

.content-footer-guideline-YM {
  position: relative;
  z-index: 1;
  display: block;
  margin: -100px 0 0;
  width: 100%;
  height: 100px;
}
.content-footer-guideline-YM::before {
  content: "";
  position: absolute;
  right: 10%;
  bottom: -10px;
  display: block;
  width: 140px;
  height: 170px;
  background-image: url(../img/common/YM/YM_bow.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.content-footer-guideline-YM.disp-animate::before {
  bottom: -30%;
  opacity: 0;
  transition: opacity 0.3s ease 0s, bottom 0.5s ease-in 0s;
}
.content-footer-guideline-YM.disp-animate.disp-animate--display::before {
  bottom: -10px;
  opacity: 1;
}

@media all and (max-width: 1079px) {
  .content-footer-guideline-YM {
    margin: 0 0 0;
    width: 100%;
    height: 200px;
  }
  .content-footer-guideline-YM::before {
    right: calc(50% - 70px);
    bottom: 0;
    width: 140px;
    height: 170px;
  }
  .content-footer-guideline-YM.disp-animate::before {
    bottom: -30%;
    opacity: 0;
    transition: opacity 0.3s ease 0s, bottom 0.5s ease-in 0s;
  }
  .content-footer-guideline-YM.disp-animate.disp-animate--display::before {
    bottom: 0;
    opacity: 1;
  }
}
@media all and (max-width: 767px) {
  .content-footer-guideline {
    padding: 60px 0;
  }

  .content-footer-guideline-voice {
    font-size: 1rem;
    line-height: 1.8;
  }

  .content-footer-guideline-bnr {
    padding: 30px 0 0;
  }
  .content-footer-guideline-bnr a {
    width: auto;
    padding: 20px 38px 24px;
    background-color: #fff5d7;
    border: 2px solid #000;
    border-radius: 30px;
    font-size: 1.125rem;
    line-height: 1.8;
    box-shadow: 0 5px #c1272d;
  }
  .content-footer-guideline-bnr a > em {
    font-size: 2rem;
    line-height: 1.2;
  }
  .content-footer-guideline-bnr a::after {
    right: 18px;
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
  }

  .content-footer-guideline-YM {
    margin: 0 0 0;
    width: 100%;
    height: 160px;
  }
  .content-footer-guideline-YM::before {
    right: calc(50% - 56px);
    bottom: 0;
    width: 112px;
    height: 136px;
  }
  .content-footer-guideline-YM.disp-animate::before {
    bottom: -30%;
    opacity: 0;
    transition: opacity 0.3s ease 0s, bottom 0.5s ease-in 0s;
  }
  .content-footer-guideline-YM.disp-animate.disp-animate--display::before {
    bottom: 0;
    opacity: 1;
  }
}
/*
================================================================
 スクロールボタン
================================================================
*/
.scroll-to-top_container {
  position: sticky;
  z-index: 8990;
  bottom: 45px;
  margin-top: 35px;
}
.scroll-to-top_container .container {
  position: relative;
  height: 0;
}
main + .scroll-to-top_container {
  margin-top: 95px;
}

a.scroll-to-top {
  position: absolute;
  right: calc(50% - 46px);
  bottom: -45px;
  display: block;
  box-sizing: border-box;
  width: 92px;
  height: 80px;
  padding: 60px 0 0;
  margin: 0;
  background-color: #c1272d;
  color: #fff;
  text-decoration: none;
  border-top-left-radius: 46px;
  border-top-right-radius: 46px;
  text-align: center;
  font-size: 0.875rem;
  line-height: 20px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.6s cubic-bezier(0.2, 0, 0.8, 1) 0s, opacity 0.6s cubic-bezier(0.2, 0, 0.8, 1) 0s;
}
a.scroll-to-top::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 36px;
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/arrow/arrow_white_up.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
a.scroll-to-top.scrolled {
  visibility: visible;
  opacity: 1;
}
a.scroll-to-top.scrolled:hover {
  opacity: 0.7;
}

@media all and (max-width: 767px) {
  .scroll-to-top_container {
    bottom: 30px;
    margin-top: 25px;
  }
  main + .scroll-to-top_container {
    margin-top: 65px;
  }

  a.scroll-to-top {
    right: calc(50% - 35px);
    bottom: -30px;
    width: 70px;
    height: 55px;
    padding: 35px 0 0;
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
    font-size: 0.75rem;
    line-height: 20px;
  }
  a.scroll-to-top::before {
    top: 16px;
    left: 26px;
    width: 18px;
    height: 18px;
  }
}
@media all and (max-height: 479px) {
  a.scroll-to-top {
    display: none !important;
  }
}
@media print {
  a.scroll-to-top {
    display: none !important;
  }
}
/*
================================================================
 グローバルフッター
================================================================
*/
.global-footer {
  position: relative;
  z-index: 8900;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 60px 0 10px;
  color: #fff;
}
.global-footer::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #c1272d;
  border-top-left-radius: 95px;
  border-top-right-radius: 95px;
}
.global-footer a {
  color: inherit;
  text-decoration: none;
}

.global-footer-layout {
  position: relative;
  z-index: 11;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
}

.global-footer-credit {
  order: 1;
  width: 60%;
  padding-bottom: 30px;
  text-align: left;
}
.global-footer-credit .this__name {
  font-size: 1.25rem;
  line-height: 1.4;
}
.global-footer-credit .this__address {
  margin-top: 5px;
  font-size: 1rem;
  line-height: 1.8;
}

.global-footer-bnr {
  order: 2;
  width: 40%;
  padding-bottom: 30px;
  text-align: right;
}

.global-footer-privacy {
  order: 4;
  width: 40%;
  padding-bottom: 30px;
  text-align: right;
  font-size: 0.875rem;
  line-height: 2;
}

.global-footer-copyright {
  order: 3;
  width: 60%;
  padding-bottom: 30px;
  text-align: left;
  font-size: 0.75rem;
  line-height: 2;
}

@media all and (max-width: 767px) {
  .global-footer {
    padding: 60px 0 10px;
  }
  .global-footer::before {
    border-top-left-radius: 65px;
    border-top-right-radius: 65px;
  }

  .global-footer-credit {
    order: 1;
    width: 100%;
    padding-bottom: 30px;
    text-align: center;
  }
  .global-footer-credit .this__name {
    font-size: 1.25rem;
    line-height: 1.4;
  }
  .global-footer-credit .this__address {
    margin-top: 5px;
    font-size: 1rem;
    line-height: 1.8;
  }

  .global-footer-bnr {
    order: 3;
    width: 100%;
    padding-bottom: 30px;
    text-align: center;
  }

  .global-footer-privacy {
    order: 2;
    width: 100%;
    padding-bottom: 30px;
    text-align: center;
    font-size: 0.875rem;
    line-height: 2;
  }

  .global-footer-copyright {
    order: 4;
    width: 100%;
    padding-bottom: 30px;
    text-align: center;
    font-size: 0.75rem;
    line-height: 2;
  }
}
/*
================================================================
 共通パーツ
================================================================
*/
a.nav-btn, a.nav-btn-move, a.nav-btn-forward, input[type="submit"].nav-btn, input[type="submit"].nav-btn-move, input[type="submit"].nav-btn-forward, input[type="button"].nav-btn, input[type="button"].nav-btn-move, input[type="button"].nav-btn-forward, button.nav-btn, button.nav-btn-move, button.nav-btn-forward {
  display: inline-block;
  box-sizing: border-box;
  min-width: 300px;
  max-width: 100%;
  padding: 8px 35px 10px;
  border: 0 none;
  outline: 0 none;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  text-decoration: none !important;
  font-size: 1.125rem;
  line-height: 40px;
  text-align: center;
  background-color: #000 !important;
  background-image: url(../img/common/arrow/arrow_white_right.png);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: right 25px top 50%;
  color: #fff !important;
  border: 1px solid #000 !important;
  border-radius: 30px;
  transform: none;
  transition: background-color 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s, color 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s, border-color 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s;
}
a.nav-btn:hover, a.nav-btn-move:hover, a.nav-btn-forward:hover, input[type="submit"].nav-btn:hover, input[type="submit"].nav-btn-move:hover, input[type="submit"].nav-btn-forward:hover, input[type="button"].nav-btn:hover, input[type="button"].nav-btn-move:hover, input[type="button"].nav-btn-forward:hover, button.nav-btn:hover, button.nav-btn-move:hover, button.nav-btn-forward:hover {
  opacity: 1;
  background-color: #c1272d !important;
  color: #fff !important;
  border-color: #c1272d !important;
}
a.nav-btn:disabled, a.nav-btn-move:disabled, a.nav-btn-forward:disabled, input[type="submit"].nav-btn:disabled, input[type="submit"].nav-btn-move:disabled, input[type="submit"].nav-btn-forward:disabled, input[type="button"].nav-btn:disabled, input[type="button"].nav-btn-move:disabled, input[type="button"].nav-btn-forward:disabled, button.nav-btn:disabled, button.nav-btn-move:disabled, button.nav-btn-forward:disabled {
  background-color: #a7a7a7 !important;
}
a.nav-btn:disabled:hover, a.nav-btn-move:disabled:hover, a.nav-btn-forward:disabled:hover, input[type="submit"].nav-btn:disabled:hover, input[type="submit"].nav-btn-move:disabled:hover, input[type="submit"].nav-btn-forward:disabled:hover, input[type="button"].nav-btn:disabled:hover, input[type="button"].nav-btn-move:disabled:hover, input[type="button"].nav-btn-forward:disabled:hover, button.nav-btn:disabled:hover, button.nav-btn-move:disabled:hover, button.nav-btn-forward:disabled:hover {
  background-color: #a7a7a7 !important;
  color: #000 !important;
  border-color: #000 !important;
}
@media all and (max-width: 767px) {
  a.nav-btn, a.nav-btn-move, a.nav-btn-forward, input[type="submit"].nav-btn, input[type="submit"].nav-btn-move, input[type="submit"].nav-btn-forward, input[type="button"].nav-btn, input[type="button"].nav-btn-move, input[type="button"].nav-btn-forward, button.nav-btn, button.nav-btn-move, button.nav-btn-forward {
    min-width: 180px;
    padding: 8px 35px 10px;
    font-size: 0.875rem;
    line-height: 30px;
    background-position: right 15px top 50%;
    border-radius: 25px;
  }
}

a.nav-btn-back, input[type="submit"].nav-btn-back, input[type="button"].nav-btn-back, button.nav-btn-back, .form-btn-back a, .form-btn-back input[type="submit"], .form-btn-back input[type="button"], .form-btn-back button {
  display: inline-block;
  box-sizing: border-box;
  min-width: 220px;
  max-width: 100%;
  padding: 8px 35px 10px;
  border: 0 none;
  outline: 0 none;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  text-decoration: none !important;
  font-size: 1rem;
  line-height: 40px;
  text-align: center;
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #000 !important;
  border-radius: 30px;
  transform: none;
  transition: background-color 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s, color 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s, border-color 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s;
}
a.nav-btn-back:hover, input[type="submit"].nav-btn-back:hover, input[type="button"].nav-btn-back:hover, button.nav-btn-back:hover, .form-btn-back a:hover, .form-btn-back input[type="submit"]:hover, .form-btn-back input[type="button"]:hover, .form-btn-back button:hover {
  opacity: 1;
  background-color: #c1272d !important;
  color: #fff !important;
  border-color: #c1272d !important;
}
a.nav-btn-back:disabled, input[type="submit"].nav-btn-back:disabled, input[type="button"].nav-btn-back:disabled, button.nav-btn-back:disabled, .form-btn-back a:disabled, .form-btn-back input[type="submit"]:disabled, .form-btn-back input[type="button"]:disabled, .form-btn-back button:disabled {
  background-color: #a7a7a7 !important;
}
a.nav-btn-back:disabled:hover, input[type="submit"].nav-btn-back:disabled:hover, input[type="button"].nav-btn-back:disabled:hover, button.nav-btn-back:disabled:hover, .form-btn-back a:disabled:hover, .form-btn-back input[type="submit"]:disabled:hover, .form-btn-back input[type="button"]:disabled:hover, .form-btn-back button:disabled:hover {
  background-color: #a7a7a7 !important;
  color: #000 !important;
  border-color: #000 !important;
}
@media all and (max-width: 767px) {
  a.nav-btn-back, input[type="submit"].nav-btn-back, input[type="button"].nav-btn-back, button.nav-btn-back, .form-btn-back a, .form-btn-back input[type="submit"], .form-btn-back input[type="button"], .form-btn-back button {
    min-width: 180px;
    padding: 9px 30px 11px;
    font-size: 0.875rem;
    line-height: 30px;
    border-radius: 25px;
  }
}

a.nav-btn-submit, input[type="submit"].nav-btn-submit, input[type="button"].nav-btn-submit, button.nav-btn-submit, .form-btn-submit a, .form-btn-submit input[type="submit"], .form-btn-submit input[type="button"], .form-btn-submit button {
  display: inline-block;
  box-sizing: border-box;
  min-width: 240px;
  max-width: 100%;
  padding: 7px 30px 9px;
  border: 0 none;
  outline: 0 none;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  text-decoration: none !important;
  font-size: 1.125rem;
  line-height: 40px;
  text-align: center;
  background-color: #ccc !important;
  color: #fff !important;
  border: 2px solid #ccc !important;
  border-radius: 30px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  transform: none;
  transition: background-color 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s, color 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s, border-color 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s;
}
a.nav-btn-submit:hover, input[type="submit"].nav-btn-submit:hover, input[type="button"].nav-btn-submit:hover, button.nav-btn-submit:hover, .form-btn-submit a:hover, .form-btn-submit input[type="submit"]:hover, .form-btn-submit input[type="button"]:hover, .form-btn-submit button:hover {
  opacity: 1;
  background-color: #fff !important;
  color: #ccc !important;
  border-color: #ccc !important;
}
a.nav-btn-submit:disabled, input[type="submit"].nav-btn-submit:disabled, input[type="button"].nav-btn-submit:disabled, button.nav-btn-submit:disabled, .form-btn-submit a:disabled, .form-btn-submit input[type="submit"]:disabled, .form-btn-submit input[type="button"]:disabled, .form-btn-submit button:disabled {
  background-color: #a7a7a7 !important;
  border-color: #a7a7a7 !important;
}
a.nav-btn-submit:disabled:hover, input[type="submit"].nav-btn-submit:disabled:hover, input[type="button"].nav-btn-submit:disabled:hover, button.nav-btn-submit:disabled:hover, .form-btn-submit a:disabled:hover, .form-btn-submit input[type="submit"]:disabled:hover, .form-btn-submit input[type="button"]:disabled:hover, .form-btn-submit button:disabled:hover {
  background-color: #a7a7a7 !important;
  color: #fff !important;
  border-color: #a7a7a7 !important;
}
@media all and (max-width: 767px) {
  a.nav-btn-submit, input[type="submit"].nav-btn-submit, input[type="button"].nav-btn-submit, button.nav-btn-submit, .form-btn-submit a, .form-btn-submit input[type="submit"], .form-btn-submit input[type="button"], .form-btn-submit button {
    min-width: 180px;
    padding: 7px 30px 9px;
    font-size: 0.875rem;
    line-height: 30px;
    border-radius: 25px;
  }
}

.form-btn-submit {
  position: relative;
  display: inline-block;
  max-width: 100%;
}
.form-btn-submit a, .form-btn-submit input[type="submit"], .form-btn-submit input[type="button"], .form-btn-submit button {
  text-align: center;
}
.form-btn-submit .wpcf7-spinner {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0 -30px 0 0;
}

.form-btn-back {
  position: relative;
  display: inline-block;
  max-width: 100%;
}
.form-btn-back .wpcf7-spinner {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0 -30px 0 0;
}

.content-more-btn {
  margin-top: 60px;
  text-align: center;
}

@media all and (max-width: 767px) {
  .content-more-btn {
    margin-top: 40px;
    text-align: center;
  }
}
@media all and (max-width: 579px) {
  .content-more-btn {
    text-align: center;
  }
}
/*
================================================================
 セクション
================================================================
*/
.hero-section-container {
  min-height: 100px;
}

.header-section-container {
  min-height: 100px;
}

.menu-section-container {
  min-height: 100px;
}

.upper-section-container {
  min-height: 100px;
}

.section-container {
  margin-top: -100px;
  padding-top: 100px;
  min-height: 100px;
}

.section-panel {
  position: relative;
  z-index: 11;
  box-sizing: border-box;
}
.section-panel .section-panel {
  background-color: transparent;
  color: inherit;
}

.section-panel-body {
  position: relative;
  z-index: 11;
}

.section-block {
  position: relative;
  z-index: 11;
}

@media all and (max-width: 1079px) {
  .hero-section-container {
    min-height: 70px;
  }

  .section-container {
    margin-top: -70px;
    padding-top: 70px;
    min-height: 70px;
  }
}
/*
================================================================
 ページヘッダー
================================================================
*/
.section-panel.page-header-screen {
  background-color: #fff5d7;
}

.page-header-canvas {
  position: relative;
  z-index: 1;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-header-frame {
  position: absolute;
  z-index: 3;
  bottom: -40px;
  left: 0;
  display: block;
  width: 100%;
  height: 240px;
}
.page-header-frame::before {
  content: "";
  position: absolute;
  z-index: 10;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 41px;
  background-color: #fff5d7;
}
.page-header-frame .page-header-frame__bg,
.page-header-frame .page-header-frame__base,
.page-header-frame .page-header-frame__town,
.page-header-frame .page-header-frame__YM {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.page-header-frame .page-header-frame__bg {
  z-index: 1;
  background-image: url(../img/common/header/header_1440_bg.png);
}
.page-header-frame .page-header-frame__base {
  z-index: 11;
  background-image: url(../img/common/header/header_1440_base.png);
}
.page-header-frame .page-header-frame__town {
  z-index: 12;
  background-image: url(../img/common/header/header_1440_town.png);
}
.page-header-frame .page-header-frame__YM {
  z-index: 15;
  background-image: url(../img/common/header/header_1440_YM.png);
}
.page-header-frame.disp-animate .page-header-frame__bg {
  bottom: -10%;
  opacity: 0;
  transition: opacity 0.3s ease 0s, bottom 0.5s cubic-bezier(0.3, 0.3, 0.7, 1.5) 0s;
}
.page-header-frame.disp-animate .page-header-frame__town {
  bottom: -10%;
  opacity: 0;
  transition: opacity 0.3s ease 0.2s, bottom 0.5s cubic-bezier(0.3, 0.3, 0.7, 1.7) 0.2s;
}
.page-header-frame.disp-animate .page-header-frame__YM {
  bottom: -10%;
  opacity: 0;
  transition: opacity 0.3s ease 0.4s, bottom 0.5s cubic-bezier(0.2, 0.8, 0.5, 3) 0.4s;
}
.page-header-frame.disp-animate.disp-animate--display .page-header-frame__bg,
.page-header-frame.disp-animate.disp-animate--display .page-header-frame__town,
.page-header-frame.disp-animate.disp-animate--display .page-header-frame__YM {
  left: 0;
  bottom: 0;
  opacity: 1;
  transform: none;
}

.page-header-layout {
  position: relative;
  z-index: 11;
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 20px 0 0;
}

ul.page-header-breadcrumb {
  list-style-type: none;
  display: block;
  text-align: left;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  line-height: 1.5;
  font-size: 0.875rem;
}
ul.page-header-breadcrumb > li {
  list-style-type: none;
  display: inline-block;
  margin: 0;
  padding: 0 0 0 2.5em;
}
ul.page-header-breadcrumb > li::before {
  content: "_";
  display: inline-block;
  width: 2.5em;
  text-align: center;
  margin-left: -2.5em;
}
ul.page-header-breadcrumb > li:first-child {
  padding-left: 0;
}
ul.page-header-breadcrumb > li:first-child::before {
  content: none;
  display: none;
}
ul.page-header-breadcrumb > li a {
  color: inherit;
  text-decoration: none;
  opacity: 1;
  transition: color 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s, opacity 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s;
}
ul.page-header-breadcrumb > li a:hover {
  opacity: 1;
  color: #007d9b;
}

.page-header-heading {
  display: block;
  margin-top: -1.3125rem;
  text-align: center;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  line-height: 1.2;
}
.page-header-heading .this__ja {
  display: block;
  color: #007d9b;
  font-size: 3.25rem;
}
.page-header-heading .this__en {
  display: block;
  font-size: 1.25rem;
  margin-top: 1em;
}

.page-header-msg {
  margin-top: 1em;
  text-align: center;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  color: inherit;
  line-height: 1.8;
  font-size: 1.125rem;
}

@media all and (max-width: 1439px) {
  .page-header-frame .page-header-frame__bg {
    background-image: url(../img/common/header/header_1080_bg.png);
  }
  .page-header-frame .page-header-frame__town {
    background-image: url(../img/common/header/header_1080_town.png);
  }
  .page-header-frame .page-header-frame__YM {
    background-image: url(../img/common/header/header_1080_YM.png);
  }
}
@media all and (max-width: 1079px) {
  .page-header-canvas {
    height: 320px;
  }

  .page-header-frame {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    max-height: 240px;
    padding: 22.2222% 0 0;
  }
}
@media all and (max-width: 767px) {
  .page-header-canvas {
    height: 280px;
  }

  ul.page-header-breadcrumb {
    line-height: 1.5;
    font-size: 0.75rem;
  }

  .page-header-heading {
    margin-top: -1.125rem;
  }
  .page-header-heading .this__ja {
    font-size: 1.5rem;
  }
  .page-header-heading .this__en {
    font-size: 0.875rem;
  }

  .page-header-msg {
    text-align: center;
    line-height: 1.8;
    font-size: 0.875rem;
  }
}
@media all and (max-width: 579px) {
  .page-header-canvas {
    height: 240px;
  }

  .page-header-frame {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    max-height: 240px;
    padding: 34% 0 0;
  }
  .page-header-frame .page-header-frame__bg {
    background-image: url(../img/common/header/header_720_bg.png);
  }
  .page-header-frame .page-header-frame__town {
    background-image: url(../img/common/header/header_720_town.png);
  }
  .page-header-frame .page-header-frame__YM {
    background-image: url(../img/common/header/header_720_YM.png);
  }

  .page-header-heading {
    margin-top: 1.125rem;
  }
  .page-header-heading .this__ja {
    font-size: 1.5rem;
  }
  .page-header-heading .this__en {
    font-size: 0.875rem;
  }
}
/*
================================================================
 コンテンツフッター
================================================================
*/
.page-footer-canvas {
  position: relative;
  z-index: 1;
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 20px 0 0;
  overflow: hidden;
}

.page-footer-frame {
  position: relative;
  display: block;
  width: 100%;
  height: 140px;
}
.page-footer-frame .page-footer-frame__bg,
.page-footer-frame .page-footer-frame__town,
.page-footer-frame .page-footer-frame__left,
.page-footer-frame .page-footer-frame__right {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.page-footer-frame .page-footer-frame__bg {
  z-index: 1;
  background-image: url(../img/common/footer/footer_1440_bg.png);
}
.page-footer-frame .page-footer-frame__town {
  z-index: 12;
  background-image: url(../img/common/footer/footer_1440_town.png);
}
.page-footer-frame .page-footer-frame__left {
  z-index: 13;
  background-image: url(../img/common/footer/footer_1440_left.png);
}
.page-footer-frame .page-footer-frame__right {
  z-index: 14;
  background-image: url(../img/common/footer/footer_1440_right.png);
}
.page-footer-frame.disp-animate .page-footer-frame__bg {
  left: -1%;
  bottom: -10%;
  opacity: 0;
  transition: opacity 0.3s ease 0s, left 0.5s ease 0s, bottom 0.5s cubic-bezier(0.3, 0.3, 0.7, 1.5) 0s;
}
.page-footer-frame.disp-animate .page-footer-frame__town {
  bottom: -10%;
  opacity: 0;
  transition: opacity 0.3s ease 0.2s, bottom 0.5s cubic-bezier(0.3, 0.3, 0.7, 1.7) 0.2s;
}
.page-footer-frame.disp-animate .page-footer-frame__left {
  left: -1%;
  opacity: 0;
  transition: opacity 0.3s ease 0.4s, left 0.5s ease 0.4s;
}
.page-footer-frame.disp-animate .page-footer-frame__right {
  left: 1%;
  opacity: 0;
  transition: opacity 0.3s ease 0.5s, left 0.5s ease 0.5s;
}
.page-footer-frame.disp-animate.disp-animate--display .page-footer-frame__bg,
.page-footer-frame.disp-animate.disp-animate--display .page-footer-frame__town,
.page-footer-frame.disp-animate.disp-animate--display .page-footer-frame__left,
.page-footer-frame.disp-animate.disp-animate--display .page-footer-frame__right {
  left: 0;
  bottom: 0;
  opacity: 1;
  transform: none;
}

@media all and (max-width: 1279px) {
  .page-footer-frame .page-footer-frame__bg {
    background-image: url(../img/common/footer/footer_1080_bg.png);
  }
  .page-footer-frame .page-footer-frame__town {
    background-image: url(../img/common/footer/footer_1080_town.png);
  }
  .page-footer-frame .page-footer-frame__left {
    background-image: url(../img/common/footer/footer_1080_left.png);
  }
  .page-footer-frame .page-footer-frame__right {
    background-image: url(../img/common/footer/footer_1080_right.png);
  }
}
@media all and (max-width: 1079px) {
  .page-footer-frame {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    max-height: 140px;
    padding: 12.963% 0 0;
  }
}
@media all and (max-width: 579px) {
  .page-footer-frame {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    max-height: 140px;
    padding: 19.4444% 0 0;
  }
  .page-footer-frame .page-footer-frame__bg {
    background-image: url(../img/common/footer/footer_720_bg.png);
  }
  .page-footer-frame .page-footer-frame__town {
    background-image: url(../img/common/footer/footer_720_town.png);
  }
  .page-footer-frame .page-footer-frame__left {
    display: none;
  }
  .page-footer-frame .page-footer-frame__right {
    display: none;
  }
}
/*
================================================================
 イントロダクション
================================================================
*/
.page-introduction {
  text-align: center;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  color: inherit;
  line-height: 1.8;
  font-size: 1.125rem;
}
.page-introduction.page-introduction--tight-top {
  position: relative;
  top: -30px;
  margin-top: -20px;
}

@media all and (max-width: 1079px) {
  .page-introduction {
    text-align: center;
    line-height: 1.8;
    font-size: 1.125rem;
  }
  .page-introduction.page-introduction--tight-top {
    position: relative;
    top: 0;
    margin-top: -30px;
  }
}
@media all and (max-width: 767px) {
  .page-introduction {
    text-align: center;
    line-height: 1.8;
    font-size: 0.875rem;
  }
  .page-introduction.page-introduction--tight-top {
    position: relative;
    top: 0;
    margin-top: -30px;
  }
}
@media all and (max-width: 579px) {
  .page-introduction {
    text-align: center;
    line-height: 1.8;
    font-size: 0.875rem;
  }
  .page-introduction.page-introduction--tight-top {
    position: relative;
    top: 0;
    margin-top: -10px;
  }
}
/*
================================================================
 パネルレイアウト
================================================================
*/
.section-panel.section-panel--page-main {
  padding: 50px 0;
  background-color: #fff5d7;
  overflow: hidden;
}

.page-main-panel {
  position: relative;
  display: block;
  box-sizing: border-box;
  width: calc(100% - 80px);
  max-width: 1360px;
  margin: 80px auto 50px;
  padding: 30px 0;
  background-color: #fff;
  background-image: url(../img/common/bg/bg_ruled.png);
  background-position: center center;
  background-repeat: repeat;
  background-size: 122px 122px;
  border: 2px solid #000;
  border-radius: 50px;
}
.page-main-panel::before {
  content: "";
  position: absolute;
  top: -110px;
  right: 80px;
  display: block;
  width: 170px;
  height: 110px;
  background-image: url(../img/common/accent/panel_ico_01.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.page-main-panel:first-child {
  margin-top: 0;
}

.page-main-panel-top-YM {
  position: relative;
  z-index: 1;
  height: 50px;
}
.page-main-panel-top-YM::after {
  content: "";
  position: absolute;
  left: 80px;
  bottom: 0;
  width: 160px;
  height: 170px;
  background-image: url(../img/common/YM/YM_wink.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.section-panel--page-business .page-main-panel-top-YM::after {
  width: 210px;
  height: 170px;
  background-image: url(../img/common/YM/YM_cheer.png);
}
.section-panel--page-people .page-main-panel-top-YM::after {
  width: 210px;
  height: 210px;
  background-image: url(../img/common/YM/YM_blossoms.png);
}
.section-panel--page-information .page-main-panel-top-YM::after, .section-panel--page-environment .page-main-panel-top-YM::after, .section-panel--page-error .page-main-panel-top-YM::after {
  width: 160px;
  height: 170px;
  background-image: url(../img/common/YM/YM_wink.png);
}
.page-main-panel-top-YM.disp-animate::after {
  bottom: -100%;
  opacity: 0;
  transition: opacity 0.3s ease 0s, bottom 0.5s cubic-bezier(0.2, 3, 0.8, 0.5) 0s;
}
.page-main-panel-top-YM.disp-animate.disp-animate--display::after {
  bottom: 0;
  opacity: 1;
}

.page-main-panel-bottom-YM {
  position: relative;
  z-index: 1;
  height: 50px;
}
.page-main-panel-bottom-YM::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 270px;
  height: 160px;
  background-image: url(../img/common/YM/YM_fly_to_right.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.page-main-panel-bottom-YM.disp-animate::after {
  left: -10%;
  top: -20%;
  opacity: 0;
  transition: opacity 0.3s ease 0s, left 0.3s ease 0s, top 0.5s cubic-bezier(0.2, 3, 0.8, 0.5) 0s;
}
.page-main-panel-bottom-YM.disp-animate.disp-animate--display::after {
  left: 0;
  top: 0;
  opacity: 1;
}

@media all and (max-width: 1079px) {
  .page-main-panel {
    padding: 20px 0;
  }
  .page-main-panel::before {
    top: -89px;
    right: 40px;
    width: 136px;
    height: 88px;
  }

  .page-main-panel-top-YM::after {
    left: 40px;
    bottom: 0;
    width: 128px;
    height: 136px;
  }
  .section-panel--page-business .page-main-panel-top-YM::after {
    width: 168px;
    height: 136px;
  }
  .section-panel--page-people .page-main-panel-top-YM::after {
    width: 168px;
    height: 168px;
  }
  .section-panel--page-information .page-main-panel-top-YM::after, .section-panel--page-environment .page-main-panel-top-YM::after, .section-panel--page-error .page-main-panel-top-YM::after {
    width: 128px;
    height: 136px;
  }

  .page-main-panel-bottom-YM {
    height: 40px;
  }
  .page-main-panel-bottom-YM::after {
    width: 216px;
    height: 128px;
  }
}
@media all and (max-width: 767px) {
  .section-panel.section-panel--page-main {
    padding: 30px 0;
  }

  .page-main-panel {
    padding: 15px 0;
    margin: 100px auto 30px;
    width: calc(100% - 40px);
    border-radius: 30px;
  }
  .page-main-panel::before {
    top: -89px;
    right: 40px;
    width: 136px;
    height: 88px;
  }

  .page-main-panel-top-YM {
    height: 30px;
  }
  .page-main-panel-top-YM::after {
    left: 0;
    bottom: 0;
    width: 128px;
    height: 136px;
  }
  .section-panel--page-business .page-main-panel-top-YM::after {
    width: 168px;
    height: 136px;
  }
  .section-panel--page-people .page-main-panel-top-YM::after {
    width: 168px;
    height: 168px;
  }
  .section-panel--page-information .page-main-panel-top-YM::after, .section-panel--page-environment .page-main-panel-top-YM::after, .section-panel--page-error .page-main-panel-top-YM::after {
    width: 128px;
    height: 136px;
  }

  .page-main-panel-bottom-YM {
    height: 30px;
  }
  .page-main-panel-bottom-YM::after {
    width: 162px;
    height: 96px;
  }
}
/*
================================================================
 ヘッダー装飾
================================================================
*/
.content-heading-pencil-center {
  box-sizing: border-box;
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
  text-align: center;
}

.content-heading-pencil {
  position: relative;
  display: inline-block;
  box-sizing: content-box;
  max-width: calc(100% - 120px);
  padding: 20px 100px 5px 0;
  text-align: left;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-size: 2.125rem;
  line-height: 1.8;
}
.content-heading-pencil-center .content-heading-pencil {
  left: 60px;
  text-align: center;
}
.content-heading-pencil::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 120px;
  height: 84px;
  background-image: url(../img/common/accent/pencil_heading.png);
  background-size: 120px 84px;
  background-position: left bottom;
  background-repeat: no-repeat;
  pointer-events: none;
}
.content-heading-pencil::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: calc(100% - 120px);
  height: 5px;
  background-image: url(../img/common/accent/pencil_heading_border.png);
  background-size: 1320px 5px;
  background-position: right center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.content-heading-pencil .this__title {
  position: relative;
  display: inline-block;
  padding-right: 10px;
}

@media all and (max-width: 767px) {
  .content-heading-pencil-center {
    padding-left: 36px;
    padding-right: 36px;
  }

  .content-heading-pencil {
    max-width: calc(100% - 72px);
    padding: 12px 60px 3px 0;
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .content-heading-pencil-center .content-heading-pencil {
    left: 36px;
  }
  .content-heading-pencil::before {
    width: 72px;
    height: 51px;
    background-size: 72px 51px;
    background-position: left bottom;
  }
  .content-heading-pencil::after {
    width: calc(100% - 72px);
    height: 3px;
    background-size: 792px 3px;
    background-position: right center;
  }
  .content-heading-pencil .this__title {
    padding-right: 6px;
  }
}
/*
================================================================
 トップ
================================================================
*/
.top-hero-screen {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

.top-hero-canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 640px;
  min-height: calc(100vh - 100px);
  min-height: calc(100svh - 100px);
}

.top-hero-bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: calc(100% - 40px);
  background-size: cover;
  background-repeat: no-repeat;
}

.top-hero-slider {
  position: absolute;
  z-index: 2;
  display: block;
  width: 100%;
  pointer-events: none;
}
.top-hero-slider.top-hero-slider--PC {
  z-index: 3;
  opacity: 1;
}
.top-hero-slider.top-hero-slider--MB {
  z-index: 2;
  opacity: 0;
}

.top-hero-slider-item-frame {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 640px;
  min-height: calc(100vh - 140px);
  min-height: calc(100svh - 140px);
}

.top-hero-slider-item-canvas {
  position: relative;
  z-index: 1;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.top-hero-slider-item-canvas::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  box-sizing: border-box;
  width: 75%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.top-hero-slider-item-canvas::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  display: block;
  box-sizing: border-box;
  width: 75%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  mask-image: linear-gradient(-75deg, #ffffff, #ffffff 60%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0));
}

.top-hero-slider-item-catch {
  position: relative;
  z-index: 11;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 3.4375rem;
}
.top-hero-slider-item-catch p {
  color: #fff;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  text-align: left;
  line-height: 1.6;
  text-shadow: 0 0 0.3em #000;
}

.top-hero-catch {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.top-hero-catch h1 {
  padding: 0 0 2em 1em;
  color: #fff;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  text-align: left;
  font-size: 3.4375rem;
  line-height: 1.6;
  text-shadow: 0 0 20px #000;
}

.top-hero-frame {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 240px;
}
.top-hero-frame::before {
  content: "";
  position: absolute;
  z-index: 10;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 41px;
  background-color: #fff5d7;
}
.top-hero-frame .top-hero-frame__bg,
.top-hero-frame .top-hero-frame__base,
.top-hero-frame .top-hero-frame__town,
.top-hero-frame .top-hero-frame__left,
.top-hero-frame .top-hero-frame__right,
.top-hero-frame .top-hero-frame__YM {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.top-hero-frame .top-hero-frame__bg {
  z-index: 1;
  background-image: url(../img/common/header/header_1440_bg.png);
}
.top-hero-frame .top-hero-frame__base {
  z-index: 11;
  background-image: url(../img/common/header/header_1440_base.png);
}
.top-hero-frame .top-hero-frame__town {
  z-index: 12;
  background-image: url(../img/common/header/header_1440_town.png);
}
.top-hero-frame .top-hero-frame__left {
  z-index: 13;
  background-image: url(../img/common/header/header_1440_left.png);
}
.top-hero-frame .top-hero-frame__right {
  z-index: 14;
  background-image: url(../img/common/header/header_1440_right.png);
}
.top-hero-frame .top-hero-frame__YM {
  z-index: 15;
  background-image: url(../img/common/header/header_1440_YM.png);
}
.top-hero-frame.disp-animate .top-hero-frame__bg {
  bottom: -10%;
  opacity: 0;
  transition: opacity 0.3s ease 0s, bottom 0.5s cubic-bezier(0.3, 0.3, 0.7, 1.5) 0s;
}
.top-hero-frame.disp-animate .top-hero-frame__town {
  bottom: -10%;
  opacity: 0;
  transition: opacity 0.3s ease 0.2s, bottom 0.5s cubic-bezier(0.3, 0.3, 0.7, 1.7) 0.2s;
}
.top-hero-frame.disp-animate .top-hero-frame__left {
  left: -1%;
  opacity: 0;
  transition: opacity 0.3s ease 0.4s, left 0.5s ease 0.4s;
}
.top-hero-frame.disp-animate .top-hero-frame__right {
  left: 1%;
  opacity: 0;
  transition: opacity 0.3s ease 0.5s, left 0.5s ease 0.5s;
}
.top-hero-frame.disp-animate .top-hero-frame__YM {
  bottom: -10%;
  opacity: 0;
  transition: opacity 0.3s ease 0.7s, bottom 0.5s cubic-bezier(0.2, 0.8, 0.5, 3) 0.7s;
}
.top-hero-frame.disp-animate.disp-animate--display .top-hero-frame__bg,
.top-hero-frame.disp-animate.disp-animate--display .top-hero-frame__town,
.top-hero-frame.disp-animate.disp-animate--display .top-hero-frame__left,
.top-hero-frame.disp-animate.disp-animate--display .top-hero-frame__right,
.top-hero-frame.disp-animate.disp-animate--display .top-hero-frame__YM {
  left: 0;
  bottom: 0;
  opacity: 1;
  transform: none;
}

@media all and (min-height: 1080px) {
  .top-hero-canvas {
    height: 980px;
    min-height: 980px;
  }

  .top-hero-slider-item-frame {
    height: 940px;
    min-height: 940px;
  }
}
@media all and (max-width: 1439px) {
  .top-hero-slider-item-catch {
    font-size: 2.875rem;
  }

  .top-hero-catch {
    justify-content: center;
  }
  .top-hero-catch h1 {
    padding: 0 0 2em 0;
    font-size: 2.875rem;
    line-height: 1.6;
    text-shadow: 0 0 16px #000;
  }

  .top-hero-frame .top-hero-frame__bg {
    background-image: url(../img/common/header/header_1080_bg.png);
  }
  .top-hero-frame .top-hero-frame__town {
    background-image: url(../img/common/header/header_1080_town.png);
  }
  .top-hero-frame .top-hero-frame__left {
    background-image: url(../img/common/header/header_1080_left.png);
  }
  .top-hero-frame .top-hero-frame__right {
    background-image: url(../img/common/header/header_1080_right.png);
  }
  .top-hero-frame .top-hero-frame__YM {
    background-image: url(../img/common/header/header_1080_YM.png);
  }
}
@media all and (max-width: 1279px) {
  .top-hero-slider-item-catch {
    font-size: 2.625rem;
  }

  .top-hero-catch {
    justify-content: center;
  }
  .top-hero-catch h1 {
    padding: 0 0 2em 0;
    font-size: 2.625rem;
    line-height: 1.6;
    text-shadow: 0 0 16px #000;
  }
}
@media all and (max-width: 1079px) {
  .top-hero-canvas {
    height: 500px;
    min-height: calc(100vh - 70px);
    min-height: calc(100svh - 70px);
  }

  .top-hero-slider-item-frame {
    height: 500px;
    min-height: calc(100vh - 110px);
    min-height: calc(100svh - 110px);
  }

  .top-hero-slider-item-catch {
    font-size: 2.375rem;
  }

  .top-hero-catch {
    justify-content: center;
  }
  .top-hero-catch h1 {
    padding: 0 0 2em 0;
    font-size: 2.375rem;
    line-height: 1.6;
    text-shadow: 0 0 16px #000;
  }

  .top-hero-frame {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    max-height: 240px;
    padding: 22.2222% 0 0;
  }
}
@media all and (max-width: 1079px) and (min-height: 768px) {
  .top-hero-canvas {
    height: 668px;
    min-height: 668px;
  }

  .top-hero-slider-item-frame {
    height: 628px;
    min-height: 628px;
  }
}
@media all and (max-width: 767px) {
  .top-hero-canvas {
    height: 420px;
    min-height: calc(100vh - 350px);
    min-height: calc(100svh - 350px);
  }

  .top-hero-slider-item-frame {
    height: 420px;
    min-height: calc(100vh - 350px);
    min-height: calc(100svh - 350px);
  }

  .top-hero-slider.top-hero-slider--PC {
    z-index: 2;
    opacity: 0;
  }
  .top-hero-slider.top-hero-slider--MB {
    z-index: 3;
    opacity: 1;
  }

  .top-hero-slider-item-catch {
    font-size: 2rem;
  }

  .top-hero-catch {
    justify-content: center;
  }
  .top-hero-catch h1 {
    padding: 0 0 2em 0;
    font-size: 2rem;
    line-height: 1.6;
    text-shadow: 0 0 16px #000;
  }
}
@media all and (max-width: 579px) {
  .top-hero-canvas {
    height: 360px;
    min-height: calc(100vh - 350px);
    min-height: calc(100svh - 350px);
  }

  .top-hero-slider-item-frame {
    height: 360px;
    min-height: calc(100vh - 350px);
    min-height: calc(100svh - 350px);
  }

  .top-hero-slider-item-catch {
    font-size: 1.75rem;
  }

  .top-hero-catch {
    justify-content: center;
  }
  .top-hero-catch h1 {
    padding: 2em 0 0 0;
    font-size: 1.75rem;
    line-height: 1.6;
    text-shadow: 0 0 8px #000;
  }

  .top-hero-frame {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    max-height: 240px;
    padding: 34% 0 0;
  }
  .top-hero-frame .top-hero-frame__bg {
    background-image: url(../img/common/header/header_720_bg.png);
  }
  .top-hero-frame .top-hero-frame__town {
    background-image: url(../img/common/header/header_720_town.png);
  }
  .top-hero-frame .top-hero-frame__left {
    background-image: url(../img/common/header/header_720_left.png);
  }
  .top-hero-frame .top-hero-frame__right {
    background-image: url(../img/common/header/header_720_right.png);
  }
  .top-hero-frame .top-hero-frame__YM {
    background-image: url(../img/common/header/header_720_YM.png);
  }
}
/*
================================================================
 トップ SNS
================================================================
*/
.section-panel.section-panel--top-sns {
  padding: 0 0;
  background-color: #fff5d7;
  overflow: hidden;
}

.top-sns-heading {
  text-align: center;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-size: 2.125rem;
  line-height: 1.8;
}

.top-sns-bnr {
  position: relative;
  z-index: 11;
  padding: 30px 0 0;
}
.top-sns-bnr a {
  position: relative;
  z-index: 11;
  display: block;
  box-sizing: border-box;
  margin: 0 auto;
  width: 460px;
  padding: 18px 48px 18px 18px;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  color: #000;
  box-shadow: 0 5px #c1272d;
}
.top-sns-bnr a::after {
  content: "";
  position: absolute;
  right: 28px;
  top: calc(50% - 10px);
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/arrow/arrow_black_right.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

.top-sns-YM {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100px;
}
.top-sns-YM::before {
  content: "";
  position: absolute;
  left: 5%;
  bottom: 0;
  display: block;
  width: 210px;
  height: 180px;
  background-image: url(../img/common/YM/YM_follow.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.top-sns-YM.disp-animate::before {
  bottom: -30%;
  opacity: 0;
  transition: opacity 0.3s ease 0s, bottom 0.5s ease-in 0s;
}
.top-sns-YM.disp-animate.disp-animate--display::before {
  bottom: 0;
  opacity: 1;
}

@media all and (max-width: 1079px) {
  .top-sns-YM {
    height: 200px;
  }
  .top-sns-YM::before {
    left: 50%;
    width: 210px;
    height: 180px;
  }
}
@media all and (max-width: 767px) {
  .section-panel.section-panel--top-sns {
    padding: 0 0 0;
  }

  .top-sns-heading {
    font-size: 1.5rem;
    line-height: 1.8;
  }

  .top-sns-bnr {
    padding: 20px 0 0;
  }
  .top-sns-bnr a {
    width: auto;
    padding: 18px 38px 18px 18px;
    border-radius: 30px;
    box-shadow: 0 5px #c1272d;
  }
  .top-sns-bnr a::after {
    right: 18px;
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
  }
  .top-sns-bnr a img {
    max-width: 100%;
    height: auto;
  }

  .top-sns-YM {
    height: 160px;
  }
  .top-sns-YM::before {
    left: calc(50% - 84px);
    width: 168px;
    height: 144px;
  }
}
/*
================================================================
 トップ 事業紹介
================================================================
*/
@media all and (min-width: 768px) {
  .section-panel.section-panel--top-business .container {
    width: 100%;
  }
  .section-panel.section-panel--top-business .half-container {
    max-width: 560px;
  }
}
@media all and (max-width: 767px) {
  .section-panel.section-panel--top-business .half-container {
    width: 100%;
    max-width: 100%;
  }
}
.section-panel.section-panel--top-business {
  padding: 150px 0 30px;
  overflow: hidden;
}
.section-panel.section-panel--top-business::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 70px;
  right: 0;
  display: block;
  width: 818px;
  max-width: calc(50% + 100px);
  height: 112px;
  background-image: url(../img/common/wd/wd_business.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}

.top-business-layout {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.top-business-content {
  width: calc(50% - 40px);
  padding-top: 70px;
}
.top-business-content .half-container {
  margin-right: auto;
}

.top-business-heading {
  color: #007d9b;
  text-align: left;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-size: 2.125rem;
  line-height: 1.8;
}

.top-business-txt {
  text-align: justify;
  font-size: 1.125rem;
  line-height: 2;
}
.top-business-txt p {
  margin-top: 1em;
}

.top-business-link {
  position: relative;
  z-index: 2;
  margin-top: 60px;
}

.top-business-YM {
  position: relative;
  z-index: 1;
  height: 130px;
}
.top-business-YM::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 210px;
  height: 170px;
  background-image: url(../img/common/YM/YM_cheer.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.top-business-YM.disp-animate::after {
  bottom: -30%;
  opacity: 0;
  transition: opacity 0.3s ease 0s, bottom 0.5s cubic-bezier(0.2, 3, 0.8, 0.5) 0s;
}
.top-business-YM.disp-animate.disp-animate--display::after {
  bottom: 0;
  opacity: 1;
}

.top-business-img {
  position: relative;
  box-sizing: border-box;
  width: calc(50% - 40px);
  height: 450px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 10px #007d9b;
}
.top-business-img::before {
  content: "";
  position: absolute;
  top: -110px;
  right: 100px;
  display: block;
  width: 170px;
  height: 110px;
  background-image: url(../img/common/accent/panel_ico_01.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

@media all and (max-width: 1279px) {
  .top-business-YM {
    height: 180px;
  }
  .top-business-YM::after {
    width: 210px;
    height: 170px;
  }
}
@media all and (max-width: 767px) {
  .section-panel.section-panel--top-business {
    padding: 70px 0 30px;
  }
  .section-panel.section-panel--top-business::before {
    top: 50px;
    right: 0;
    width: 818px;
    max-width: calc(50% + 100px);
    height: 112px;
  }

  .top-business-layout {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .top-business-content {
    width: 100%;
    padding-top: 0;
  }
  .top-business-content .half-container {
    margin-right: auto;
  }

  .top-business-heading {
    font-size: 1.5rem;
    line-height: 1.8;
  }

  .top-business-txt {
    font-size: 0.875rem;
    line-height: 2;
  }
  .top-business-txt p {
    margin-top: 1em;
  }

  .top-business-link {
    margin-top: 30px;
  }

  .top-business-YM {
    height: 130px;
  }
  .top-business-YM::after {
    right: 0;
    bottom: 0;
    width: 168px;
    height: 136px;
  }
  .top-business-YM.disp-animate::after {
    bottom: -30%;
    opacity: 0;
    transition: opacity 0.3s ease 0s, bottom 0.5s cubic-bezier(0.2, 3, 0.8, 0.5) 0s;
  }
  .top-business-YM.disp-animate.disp-animate--display::after {
    bottom: 0;
    opacity: 1;
  }

  .top-business-img {
    width: 80%;
    height: 250px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 10px #007d9b;
  }
  .top-business-img::before {
    top: -89px;
    right: calc(100% - 140px);
    width: 136px;
    height: 88px;
  }
}
/*
================================================================
 トップ 人について
================================================================
*/
@media all and (min-width: 768px) {
  .section-panel.section-panel--top-people .container {
    width: 100%;
  }
  .section-panel.section-panel--top-people .half-container {
    max-width: 560px;
  }
}
@media all and (max-width: 767px) {
  .section-panel.section-panel--top-people .half-container {
    width: 100%;
    max-width: 100%;
  }
}
.section-panel.section-panel--top-people {
  padding: 150px 0 50px;
  overflow: hidden;
}
.section-panel.section-panel--top-people::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 70px;
  left: 0;
  display: block;
  width: 630px;
  max-width: calc(50% + 100px);
  height: 112px;
  background-image: url(../img/common/wd/wd_people.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}

.top-people-layout {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.top-people-content {
  width: calc(50% - 40px);
  padding-top: 70px;
}
.top-people-content .half-container {
  margin-left: auto;
}

.top-people-heading {
  color: #007d9b;
  text-align: left;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-size: 2.125rem;
  line-height: 1.8;
}

.top-people-txt {
  text-align: justify;
  font-size: 1.125rem;
  line-height: 2;
}
.top-people-txt p {
  margin-top: 1em;
}

.top-people-link {
  position: relative;
  z-index: 2;
  margin-top: 60px;
}

.top-people-YM {
  position: relative;
  z-index: 1;
  height: 220px;
}
.top-people-YM::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 210px;
  height: 210px;
  background-image: url(../img/common/YM/YM_blossoms.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.top-people-YM.disp-animate::after {
  bottom: -30%;
  opacity: 0;
  transition: opacity 0.3s ease 0s, bottom 0.5s cubic-bezier(0.2, 3, 0.8, 0.5) 0s;
}
.top-people-YM.disp-animate.disp-animate--display::after {
  bottom: 0;
  opacity: 1;
}

.top-people-img {
  position: relative;
  box-sizing: border-box;
  width: calc(50% - 40px);
  height: 450px;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 10px #007d9b;
}
.top-people-img::before {
  content: "";
  position: absolute;
  top: -110px;
  left: 60px;
  display: block;
  width: 410px;
  height: 110px;
  background-image: url(../img/common/accent/panel_ico_02.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

@media all and (max-width: 1079px) {
  .top-people-img::before {
    content: "";
    position: absolute;
    top: -110px;
    left: 60px;
    display: block;
    width: 230px;
    height: 110px;
    background-image: url(../img/common/accent/panel_ico_02_sm.png);
  }
}
@media all and (max-width: 767px) {
  .section-panel.section-panel--top-people {
    padding: 70px 0 50px;
  }
  .section-panel.section-panel--top-people::before {
    top: 50px;
    left: 0;
    width: 630px;
    max-width: calc(50% + 100px);
    height: 112px;
  }

  .top-people-layout {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .top-people-content {
    width: 100%;
    padding-top: 0;
  }

  .top-people-heading {
    font-size: 1.5rem;
    line-height: 1.8;
  }

  .top-people-txt {
    font-size: 0.875rem;
    line-height: 2;
  }
  .top-people-txt p {
    margin-top: 1em;
  }

  .top-people-link {
    margin-top: 30px;
    text-align: right;
  }

  .top-people-YM {
    height: 110px;
  }
  .top-people-YM::after {
    right: calc(100% - 170px);
    bottom: 0;
    width: 168px;
    height: 168px;
  }
  .top-people-YM.disp-animate::after {
    bottom: -30%;
    opacity: 0;
    transition: opacity 0.3s ease 0s, bottom 0.5s cubic-bezier(0.2, 3, 0.8, 0.5) 0s;
  }
  .top-people-YM.disp-animate.disp-animate--display::after {
    bottom: 0;
    opacity: 1;
  }

  .top-people-img {
    width: 80%;
    height: 250px;
    border-top: 2px solid #000;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    box-shadow: 0 10px #007d9b;
  }
  .top-people-img::before {
    top: -88px;
    left: calc(100% - 190px);
    width: 184px;
    height: 88px;
    background-image: url(../img/common/accent/panel_ico_02_sm.png);
  }
}
/*
================================================================
 トップ 働く環境
================================================================
*/
.section-panel.section-panel--top-environment {
  padding: 70px 0 30px;
  overflow: hidden;
  background-color: #007d9b;
  color: #fff;
}
.section-panel.section-panel--top-environment::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 112px;
  background-image: url(../img/common/wd/wd_environment.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}
.section-panel.section-panel--top-environment .container.container--environment {
  max-width: 1300px;
}

.top-environment-heading {
  position: relative;
  text-align: center;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-size: 2.125rem;
  line-height: 1.8;
}
.top-environment-heading::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 216px;
  height: 128px;
  background-image: url(../img/common/YM/YM_fly_to_left.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.top-environment-heading.disp-animate::after {
  right: -10%;
  top: -20%;
  opacity: 0;
  transition: opacity 0.3s ease 0s, right 0.3s ease 0s, top 0.5s cubic-bezier(0.2, 3, 0.8, 0.5) 0s;
}
.top-environment-heading.disp-animate.disp-animate--display::after {
  right: 0;
  top: 0;
  opacity: 1;
}

.top-environment-txt {
  text-align: center;
  font-size: 1.125rem;
  line-height: 2;
}
.top-environment-txt p {
  margin-top: 1em;
}

.top-environment-img {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  margin-top: 40px;
  width: 100%;
  height: 500px;
  border: 2px solid #000;
  border-radius: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.top-environment-img_01 {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: calc(50% + 100px);
  height: 100%;
}
.top-environment-img_01::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.top-environment-img_02 {
  position: absolute;
  z-index: 1;
  right: -100px;
  top: 0;
  width: calc(50% + 100px);
  height: 100%;
  transform: skewX(-20deg);
  overflow: hidden;
}
.top-environment-img_02::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: -100px;
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  transform: skewX(20deg);
}

.top-environment-link {
  position: relative;
  z-index: 3;
  margin-top: -30px;
  text-align: center;
}

.top-environment-YM {
  position: relative;
  z-index: 2;
  height: 70px;
}
.top-environment-YM::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 150px;
  height: 170px;
  background-image: url(../img/common/YM/YM_surprise.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.top-environment-YM.disp-animate::after {
  bottom: -30%;
  opacity: 0;
  transition: opacity 0.3s ease 0s, bottom 0.5s cubic-bezier(0.2, 3, 0.8, 0.5) 0s;
}
.top-environment-YM.disp-animate.disp-animate--display::after {
  bottom: 0;
  opacity: 1;
}

@media all and (max-width: 1279px) {
  .top-environment-YM {
    height: 70px;
  }
  .top-environment-YM::after {
    left: 15%;
    width: 150px;
    height: 170px;
  }
}
@media all and (max-width: 1079px) {
  .top-environment-heading {
    font-size: 2.125rem;
  }
  .top-environment-heading::after {
    margin-top: -50px;
    width: 216px;
    height: 128px;
  }

  .top-environment-img {
    margin-top: 40px;
    height: 400px;
    border-radius: 30px;
  }

  .top-environment-img_01 {
    width: calc(50% + 80px);
  }

  .top-environment-img_02 {
    right: -80px;
    width: calc(50% + 80px);
  }
  .top-environment-img_02::before {
    left: -80px;
  }

  .top-environment-YM {
    height: 70px;
  }
  .top-environment-YM::after {
    left: 8%;
    width: 150px;
    height: 170px;
  }
}
@media all and (max-width: 767px) {
  .section-panel.section-panel--top-environment {
    padding: 50px 0 30px;
  }
  .section-panel.section-panel--top-environment::before {
    top: 70px;
    left: 0;
    width: 100%;
    height: 112px;
  }

  .top-environment-heading {
    padding: 30px 0 0;
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .top-environment-heading::after {
    right: 0;
    top: 0;
    margin-top: -50px;
    width: 162px;
    height: 96px;
  }

  .top-environment-txt {
    font-size: 0.875rem;
    line-height: 2;
  }
  .top-environment-txt p {
    margin-top: 1em;
  }

  .top-environment-img {
    margin-top: 40px;
    height: 300px;
    border-radius: 30px;
  }

  .top-environment-img_01 {
    width: calc(50% + 60px);
  }

  .top-environment-img_02 {
    right: -60px;
    width: calc(50% + 60px);
  }
  .top-environment-img_02::before {
    left: -60px;
  }

  .top-environment-YM {
    height: 40px;
  }
  .top-environment-YM::after {
    left: 12%;
    width: 90px;
    height: 102px;
  }
}
@media all and (max-width: 579px) {
  .top-environment-img {
    margin-top: 30px;
    height: 250px;
    border-radius: 30px;
  }

  .top-environment-img_01 {
    width: calc(50% + 50px);
  }

  .top-environment-img_02 {
    right: -50px;
    width: calc(50% + 50px);
  }
  .top-environment-img_02::before {
    left: -50px;
  }

  .top-environment-link {
    margin-top: 30px;
    text-align: right;
  }

  .top-environment-YM {
    height: 30px;
  }
  .top-environment-YM::after {
    left: 0;
    width: 90px;
    height: 102px;
  }
}
/*
================================================================
 事業紹介
================================================================
*/
/*
================================================================
 事業紹介 部門
================================================================
*/
@media all and (min-width: 1080px) {
  .section-panel.section-panel--page-business-people .container {
    width: 100%;
  }
  .section-panel.section-panel--page-business-people .half-container {
    max-width: 560px;
  }
}
@media all and (max-width: 1079px) {
  .section-panel.section-panel--page-business-people .half-container {
    width: 100%;
    max-width: 100%;
  }
}
.section-panel.section-panel--page-business-people {
  padding: 20px 0 80px;
  overflow: hidden;
}

.page-business-people-layout {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.page-business-people-layout.page-business-people-layout--left {
  flex-direction: row;
}

.page-business-people-content {
  width: calc(50% - 70px);
  padding-top: 50px;
}
.page-business-people-layout--right .page-business-people-content .half-container {
  margin-right: auto;
}
.page-business-people-layout--left .page-business-people-content .half-container {
  margin-left: auto;
}

.page-business-people-txt {
  text-align: justify;
  font-size: 1.125rem;
  line-height: 2;
}
.page-business-people-txt p {
  margin-top: 1em;
}

.page-business-people-link {
  position: relative;
  z-index: 2;
  margin-top: 60px;
}

.page-business-people-img {
  position: relative;
  box-sizing: border-box;
  width: calc(50% - 10px);
  height: 450px;
  border: 2px solid #000;
  border-radius: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 10px #007d9b;
}
.page-business-people-layout--right .page-business-people-img {
  border-left: 0 none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.page-business-people-layout--left .page-business-people-img {
  border-right: 0 none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

@media all and (max-width: 1079px) {
  .page-business-people-layout {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .page-business-people-layout.page-business-people-layout--left {
    flex-direction: row-reverse;
  }

  .page-business-people-content {
    width: 100%;
    padding-top: 0;
    padding-bottom: 30px;
  }

  .page-business-people-link {
    margin-top: 30px;
    text-align: right;
  }

  .page-business-people-img {
    width: 80%;
    height: 350px;
    border: 2px solid #000;
    border-radius: 30px;
    box-shadow: 0 10px #007d9b;
  }
}
@media all and (max-width: 767px) {
  .section-panel.section-panel--page-business-people {
    padding: 20px 0 40px;
  }

  .page-business-people-txt {
    font-size: 0.875rem;
    line-height: 2;
  }
  .page-business-people-txt p {
    margin-top: 1em;
  }

  .page-business-people-img {
    width: 80%;
    height: 250px;
    border: 2px solid #000;
    border-radius: 30px;
    box-shadow: 0 10px #007d9b;
  }
}
/*
================================================================
 人について
================================================================
*/
ul.page-people-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  margin: 0 auto;
  padding: 20px 0 30px;
  width: 800px;
  max-width: 100%;
}
ul.page-people-nav > li {
  width: 23.5%;
  margin: 0 0 4% 2%;
  list-style-type: none;
}
ul.page-people-nav > li:nth-child(4n+1) {
  margin-left: 0;
}
ul.page-people-nav > li > a, ul.page-people-nav > li > .as-link {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  padding: 8px 30px 10px;
  border: 0 none;
  outline: 0 none;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  text-decoration: none !important;
  font-size: 1.125rem;
  line-height: 40px;
  text-align: center;
  background-color: #007d9b !important;
  background-image: url(../img/common/arrow/arrow_white_right.png);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  color: #fff !important;
  border: 1px solid #007d9b !important;
  border-radius: 30px;
  transform: none;
}

ul.page-people-nav-next {
  padding: 0 0 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  list-style-type: none;
}
ul.page-people-nav-next > li {
  width: 100px;
  list-style-type: none;
}
ul.page-people-nav-next > li > a, ul.page-people-nav-next > li > .as-link {
  display: block;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #007d9b;
  text-decoration: none;
}
ul.page-people-nav-next > li.menu-item-prev > a, ul.page-people-nav-next > li.menu-item-prev > .as-link {
  text-align: left;
}
ul.page-people-nav-next > li.menu-item-prev > a::before, ul.page-people-nav-next > li.menu-item-prev > .as-link::before {
  content: "";
  position: relative;
  bottom: calc(0.3em - 13px);
  display: inline-block;
  margin-right: 0.5em;
  width: 18px;
  height: 26px;
  vertical-align: baseline;
  background-image: url(../img/common/arrow/arrow_article_left.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}
ul.page-people-nav-next > li.menu-item-next > a, ul.page-people-nav-next > li.menu-item-next > .as-link {
  text-align: right;
}
ul.page-people-nav-next > li.menu-item-next > a::after, ul.page-people-nav-next > li.menu-item-next > .as-link::after {
  content: "";
  position: relative;
  bottom: calc(0.3em - 13px);
  display: inline-block;
  margin-left: 0.5em;
  width: 18px;
  height: 26px;
  vertical-align: baseline;
  background-image: url(../img/common/arrow/arrow_article_right.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

@media all and (max-width: 1079px) {
  ul.page-people-nav {
    padding: 20px 0 30px;
  }
  ul.page-people-nav > li {
    width: 23.5%;
    margin: 0 0 4% 2%;
  }
  ul.page-people-nav > li:nth-child(4n+1) {
    margin-left: 0;
  }
  ul.page-people-nav > li > a, ul.page-people-nav > li > .as-link {
    padding: 8px 25px 10px;
    font-size: 0.875rem;
    line-height: 40px;
    background-size: 14px 14px;
    background-position: right 5px top 50%;
    border-radius: 30px;
  }
}
@media all and (max-width: 767px) {
  ul.page-people-nav {
    padding: 20px 0 30px;
  }
  ul.page-people-nav > li {
    width: 48%;
    margin: 0 0 4% 4%;
  }
  ul.page-people-nav > li:nth-child(2n+1) {
    margin-left: 0;
  }
  ul.page-people-nav > li > a, ul.page-people-nav > li > .as-link {
    padding: 8px 25px 10px;
    font-size: 0.875rem;
    line-height: 40px;
    background-size: 14px 14px;
    background-position: right 5px top 50%;
    border-radius: 30px;
  }

  ul.page-people-nav-next {
    padding: 0 0 30px;
  }
  ul.page-people-nav-next > li {
    width: 70px;
  }
  ul.page-people-nav-next > li > a, ul.page-people-nav-next > li > .as-link {
    font-size: 1rem;
    line-height: 1.5;
  }
  ul.page-people-nav-next > li.menu-item-prev > a::before, ul.page-people-nav-next > li.menu-item-prev > .as-link::before {
    bottom: calc(0.3em - 13px);
    width: 18px;
    height: 26px;
  }
  ul.page-people-nav-next > li.menu-item-next > a::after, ul.page-people-nav-next > li.menu-item-next > .as-link::after {
    bottom: calc(0.3em - 13px);
    width: 18px;
    height: 26px;
  }
}
@media all and (max-width: 579px) {
  ul.page-people-nav {
    padding: 20px 0 30px;
  }
  ul.page-people-nav > li {
    width: 48%;
    margin: 0 0 4% 4%;
  }
  ul.page-people-nav > li:nth-child(2n+1) {
    margin-left: 0;
  }
  ul.page-people-nav > li > a, ul.page-people-nav > li > .as-link {
    padding: 8px 20px 10px;
    font-size: 0.75rem;
    line-height: 30px;
    background-size: 14px 14px;
    background-position: right 5px top 50%;
    border-radius: 25px;
  }
}
/*
================================================================
 人について コンテンツ
================================================================
*/
.section-panel.section-panel--page-people-content {
  padding: 20px 0 80px;
  overflow: hidden;
}

.page-people-content-header {
  position: relative;
  z-index: 1;
}
.page-people-content-header::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  display: block;
  width: calc(100% - 80px);
  height: calc(100% - 100px);
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  background-color: #e1f5f8;
}
.page-people-content-header .container {
  position: relative;
  z-index: 11;
  max-width: 1100px;
}

.page-people-content-heading {
  padding: 30px 0 50px;
}

.page-people-content-img {
  box-sizing: border-box;
  margin: 0 auto 0;
  width: 1000px;
  max-width: 100%;
  border: 2px solid #000;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px #007d9b;
}
.page-people-content-img img {
  display: block;
  width: 100%;
  height: auto;
}

.page-people-content-personal {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  margin: -140px 0 0 auto;
  width: 400px;
  padding: 40px 40px;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 25px;
}
.page-people-content-personal::after {
  content: "";
  position: absolute;
  right: 5px;
  top: -100px;
  width: 140px;
  height: 170px;
  background-image: url(../img/common/YM/YM_signature.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
.page-people-content-personal .this__role {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  line-height: 1.5;
}
.page-people-content-personal .this__name {
  display: block;
  padding: 0.3em 0 0;
  text-align: left;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #007d9b;
}
.page-people-content-personal .this__name > em {
  display: block;
  font-size: 2.25rem;
}
.page-people-content-personal .this__name > span {
  display: block;
}
.page-people-content-personal .this__career {
  display: block;
  text-align: right;
  font-size: 1.3125rem;
  line-height: 1.5;
}
.page-people-content-personal.disp-animate::after {
  top: 0;
  opacity: 0;
  transition: opacity 0.3s ease 0s, top 0.5s cubic-bezier(0.2, 3, 0.8, 0.5) 0s;
}
.page-people-content-personal.disp-animate.disp-animate--display::after {
  top: -100px;
  opacity: 1;
}

.section-panel.section-panel--page-people-description {
  padding: 80px 0 0;
}

.page-people-description-heading {
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  text-align: center;
  font-size: 1.75rem;
  line-height: 1.6;
  color: #007d9b;
}

.page-people-description-content {
  text-align: justify;
  font-size: 1.125rem;
  line-height: 2;
}
.page-people-description-content p {
  margin-top: 2em;
}

.section-panel.section-panel--page-people-schedule {
  padding: 80px 0 0;
}
.section-panel.section-panel--page-people-schedule .section-panel-body {
  padding: 120px 0 0;
}
.section-panel.section-panel--page-people-schedule .section-panel-body::before {
  position: absolute;
  z-index: 1;
  content: "";
  right: -1%;
  top: 3px;
  display: block;
  width: calc(100% - 300px);
  height: 120px;
  background-image: url(../img/common/wd/wd_1day-schedule.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 100% auto;
}
.section-panel.section-panel--page-people-schedule .section-panel-body::after {
  position: absolute;
  z-index: 2;
  content: "";
  right: 0;
  top: 120px;
  display: block;
  width: calc(100% - 80px);
  height: calc(100% - 120px);
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  background-color: #e1f5f8;
}

.page-people-schedule-layout {
  position: relative;
  z-index: 11;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  padding: 50px 0 50px 100px;
}
.page-people-schedule-layout::after {
  content: "";
  position: absolute;
  left: 50px;
  top: -135px;
  width: 150px;
  height: 170px;
  background-image: url(../img/common/YM/YM_surprise.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
.page-people-schedule-layout.disp-animate::after {
  top: -50px;
  opacity: 0;
  transition: opacity 0.3s ease 0s, top 0.5s cubic-bezier(0.2, 3, 0.8, 0.5) 0s;
}
.page-people-schedule-layout.disp-animate.disp-animate--display::after {
  top: -135px;
  opacity: 1;
}

.page-people-schedule-heading {
  width: 100%;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  text-align: left;
  font-size: 1.75rem;
  line-height: 1.6;
  color: #007d9b;
}

.page-people-schedule-content {
  width: 60%;
}

dl.page-people-schedule-table {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  margin: 0;
  padding: 30px 0 30px;
}
dl.page-people-schedule-table > dt {
  box-sizing: border-box;
  padding: 0 0 0.05em;
  width: 4em;
  background-color: #007d9b;
  color: #fff;
  border-radius: 0.64em;
  text-align: center;
  font-size: 1.75rem;
  line-height: 1.25;
}
dl.page-people-schedule-table > dd {
  box-sizing: border-box;
  margin: 0;
  padding: 0.3em 0 0 2em;
  width: 100%;
  box-sizing: border-box;
  font-size: 1.25rem;
  line-height: 1.6;
}
dl.page-people-schedule-table > dd + dt {
  margin-top: 1em;
}

.page-people-schedule-images {
  width: 37.5%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.page-people-schedule-images figure {
  display: block;
  box-sizing: border-box;
  margin: 15px 0;
  width: 100%;
  border: 2px solid #000;
  border-radius: 30px;
  overflow: hidden;
}
.page-people-schedule-images figure img {
  display: block;
  width: 100%;
  height: auto;
}

.section-panel.section-panel--page-people-message {
  padding: 80px 0 0;
}

.page-people-message-heading {
  padding: 50px 0;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  text-align: center;
  font-size: 1.75rem;
  line-height: 1.6;
  color: #007d9b;
}

.page-people-message-img {
  display: block;
  box-sizing: border-box;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}
.page-people-message-img img {
  display: block;
  width: 100%;
  height: auto;
}

@media all and (max-width: 1439px) {
  .page-people-content-header::before {
    width: calc(100% - 30px);
    height: calc(100% - 100px);
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
  }

  .page-people-content-heading {
    padding: 30px 0 50px;
  }

  .page-people-content-img {
    width: 1000px;
    max-width: calc(100% - 100px);
    border-radius: 30px;
    box-shadow: 0 10px #007d9b;
  }

  .page-people-content-personal {
    margin: -140px 0 0 auto;
    width: 400px;
    padding: 40px 40px;
    border-radius: 25px;
  }
  .page-people-content-personal::after {
    right: 5px;
    top: -100px;
    width: 140px;
    height: 170px;
  }
  .page-people-content-personal.disp-animate.disp-animate--display::after {
    top: -100px;
    opacity: 1;
  }
}
@media all and (max-width: 1279px) {
  .section-panel.section-panel--page-people-schedule {
    padding: 80px 0 0;
  }
  .section-panel.section-panel--page-people-schedule .section-panel-body {
    padding: 120px 0 0;
  }
  .section-panel.section-panel--page-people-schedule .section-panel-body::before {
    right: -1%;
    top: 3px;
    width: calc(100% - 220px);
    height: 120px;
  }
  .section-panel.section-panel--page-people-schedule .section-panel-body::after {
    top: 120px;
    width: calc(100% - 30px);
    height: calc(100% - 120px);
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
  }

  .page-people-schedule-layout {
    padding: 50px 0 50px 50px;
  }
  .page-people-schedule-layout::after {
    left: 0;
    top: -135px;
    width: 150px;
    height: 170px;
  }
  .page-people-schedule-layout.disp-animate.disp-animate--display::after {
    top: -135px;
    opacity: 1;
  }

  .page-people-schedule-content {
    width: 60%;
  }

  dl.page-people-schedule-table {
    padding: 30px 0 30px;
  }
  dl.page-people-schedule-table > dt {
    font-size: 1.75rem;
  }
  dl.page-people-schedule-table > dd {
    padding: 0.3em 0 0 2em;
    font-size: 1.25rem;
    line-height: 1.6;
  }
  dl.page-people-schedule-table > dd + dt {
    margin-top: 1em;
  }

  .page-people-schedule-images {
    width: 37.5%;
  }
  .page-people-schedule-images figure {
    width: 100%;
    margin: 15px 0;
    border-radius: 30px;
  }
}
@media all and (max-width: 1079px) {
  .page-people-content-header::before {
    width: calc(100% - 30px);
    height: calc(100% - 80px);
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
  }

  .page-people-content-heading {
    padding: 30px 0 50px;
  }

  .page-people-content-img {
    width: 1000px;
    max-width: calc(100% - 70px);
    border-radius: 30px;
    box-shadow: 0 10px #007d9b;
  }

  .page-people-content-personal {
    margin: -100px 0 0 auto;
    width: 320px;
    padding: 32px 32px;
    border-radius: 20px;
  }
  .page-people-content-personal::after {
    right: 5px;
    top: -80px;
    width: 112px;
    height: 136px;
  }
  .page-people-content-personal .this__role {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  .page-people-content-personal .this__name {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .page-people-content-personal .this__name > em {
    font-size: 1.75rem;
  }
  .page-people-content-personal .this__career {
    font-size: 1rem;
    line-height: 1.5;
  }
  .page-people-content-personal.disp-animate.disp-animate--display::after {
    top: -80px;
    opacity: 1;
  }

  .section-panel.section-panel--page-people-schedule {
    padding: 80px 0 0;
  }
  .section-panel.section-panel--page-people-schedule .section-panel-body {
    padding: 120px 0 0;
  }
  .section-panel.section-panel--page-people-schedule .section-panel-body::before {
    right: -1%;
    top: 3px;
    width: calc(100% - 180px);
    height: 120px;
  }
  .section-panel.section-panel--page-people-schedule .section-panel-body::after {
    top: 120px;
    width: calc(100% - 30px);
    height: calc(100% - 120px);
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
  }

  .page-people-schedule-layout {
    padding: 50px 0 50px 0;
  }
  .page-people-schedule-layout::after {
    left: 0;
    top: -108px;
    width: 120px;
    height: 136px;
  }
  .page-people-schedule-layout.disp-animate::after {
    top: -50px;
  }
  .page-people-schedule-layout.disp-animate.disp-animate--display::after {
    top: -108px;
    opacity: 1;
  }

  .page-people-schedule-content {
    width: 50%;
  }

  dl.page-people-schedule-table {
    padding: 30px 0 30px;
  }
  dl.page-people-schedule-table > dt {
    font-size: 1.25rem;
  }
  dl.page-people-schedule-table > dd {
    padding: 0.3em 0 0 2em;
    font-size: 1rem;
    line-height: 1.6;
  }
  dl.page-people-schedule-table > dd + dt {
    margin-top: 1em;
  }

  .page-people-schedule-images {
    width: 45%;
  }
  .page-people-schedule-images figure {
    width: 100%;
    margin: 15px 0;
    border-radius: 30px;
  }
}
@media all and (max-width: 767px) {
  .section-panel.section-panel--page-people-content {
    padding: 20px 0 50px;
  }

  .page-people-content-header::before {
    width: calc(100% - 15px);
    height: calc(100% - 100px);
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
  }

  .page-people-content-heading {
    padding: 30px 0 50px;
  }

  .page-people-content-img {
    width: 1000px;
    max-width: calc(100% - 50px);
    border-radius: 30px;
    box-shadow: 0 10px #007d9b;
  }

  .page-people-content-personal {
    margin: -60px 0 0 auto;
    width: 240px;
    padding: 20px 20px;
    border-radius: 20px;
  }
  .page-people-content-personal::after {
    right: 5px;
    top: -60px;
    width: 90px;
    height: 102px;
  }
  .page-people-content-personal .this__role {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  .page-people-content-personal .this__name {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .page-people-content-personal .this__name > em {
    font-size: 1.375rem;
  }
  .page-people-content-personal .this__career {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .page-people-content-personal.disp-animate.disp-animate--display::after {
    top: -60px;
    opacity: 1;
  }

  .section-panel.section-panel--page-people-description {
    padding: 50px 0 0;
  }

  .page-people-description-heading {
    font-size: 1.25rem;
    line-height: 1.6;
  }

  .page-people-description-content {
    font-size: 0.875rem;
  }

  .section-panel.section-panel--page-people-schedule {
    padding: 50px 0 0;
  }
  .section-panel.section-panel--page-people-schedule .section-panel-body {
    padding: 65px 0 0;
  }
  .section-panel.section-panel--page-people-schedule .section-panel-body::before {
    right: -1%;
    top: 3px;
    width: calc(100% - 100px);
    height: 65px;
  }
  .section-panel.section-panel--page-people-schedule .section-panel-body::after {
    top: 65px;
    width: calc(100% - 15px);
    height: calc(100% - 65px);
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
  }

  .page-people-schedule-layout {
    padding: 50px 0 50px 0;
  }
  .page-people-schedule-layout::after {
    left: 0;
    top: -70px;
    width: 90px;
    height: 102px;
  }
  .page-people-schedule-layout.disp-animate::after {
    top: -50px;
  }
  .page-people-schedule-layout.disp-animate.disp-animate--display::after {
    top: -70px;
  }

  .page-people-schedule-heading {
    width: 100%;
    font-size: 1.25rem;
    line-height: 1.6;
  }

  .page-people-schedule-content {
    width: 100%;
  }

  dl.page-people-schedule-table {
    padding: 30px 0 30px;
  }
  dl.page-people-schedule-table > dt {
    font-size: 1.125rem;
  }
  dl.page-people-schedule-table > dd {
    padding: 0.3em 0 0 2em;
    font-size: 0.875rem;
    line-height: 1.6;
  }
  dl.page-people-schedule-table > dd + dt {
    margin-top: 1em;
  }

  .page-people-schedule-images {
    width: 100%;
  }
  .page-people-schedule-images figure {
    width: 48%;
    margin: 10px 0;
    border-radius: 30px;
  }

  .section-panel.section-panel--page-people-message {
    padding: 50px 0 0;
  }

  .page-people-message-heading {
    padding: 20px 0;
    font-size: 1.25rem;
    line-height: 1.6;
  }
}
@media all and (max-width: 579px) {
  .page-people-content-header::before {
    width: calc(100% - 10px);
    height: calc(100% - 60px);
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
  }

  .page-people-content-heading {
    padding: 30px 0 50px;
  }

  .page-people-content-img {
    margin-left: 0;
    max-width: calc(100% - 20px);
    border-radius: 30px;
    box-shadow: 0 10px #007d9b;
  }

  .page-people-content-personal {
    margin: -50px 10px 0 auto;
    width: 200px;
    padding: 10px 20px;
    border-radius: 20px;
  }
  .page-people-content-personal::after {
    right: -10px;
    top: -50px;
    width: 75px;
    height: 85px;
  }
  .page-people-content-personal .this__role {
    font-size: 0.6875rem;
    line-height: 1.5;
  }
  .page-people-content-personal .this__name {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  .page-people-content-personal .this__name > em {
    font-size: 1.125rem;
  }
  .page-people-content-personal .this__career {
    font-size: 0.6875rem;
    line-height: 1.5;
  }
  .page-people-content-personal.disp-animate.disp-animate--display::after {
    top: -50px;
  }

  .section-panel.section-panel--page-people-schedule {
    padding: 50px 0 0;
  }
  .section-panel.section-panel--page-people-schedule .section-panel-body {
    padding: 65px 0 0;
  }
  .section-panel.section-panel--page-people-schedule .section-panel-body::before {
    right: -1%;
    top: 3px;
    width: calc(100% - 100px);
    max-width: 210px;
    height: 65px;
    background-image: url(../img/common/wd/wd_1day-schedule_2l.png);
  }
  .section-panel.section-panel--page-people-schedule .section-panel-body::after {
    top: 65px;
    width: calc(100% - 10px);
    height: calc(100% - 65px);
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
  }

  .page-people-schedule-layout {
    padding: 50px 0 50px 10px;
  }
  .page-people-schedule-layout::after {
    left: 0;
    top: -70px;
    width: 90px;
    height: 102px;
  }
  .page-people-schedule-layout.disp-animate::after {
    top: -50px;
  }
  .page-people-schedule-layout.disp-animate.disp-animate--display::after {
    top: -70px;
  }

  .page-people-schedule-content {
    width: 100%;
  }

  dl.page-people-schedule-table {
    padding: 30px 0 30px;
  }
  dl.page-people-schedule-table > dt {
    font-size: 1.125rem;
  }
  dl.page-people-schedule-table > dd {
    padding: 0.3em 0 0 2em;
    font-size: 0.875rem;
    line-height: 1.6;
  }
  dl.page-people-schedule-table > dd + dt {
    margin-top: 1em;
  }

  .page-people-schedule-images {
    width: 100%;
  }
  .page-people-schedule-images figure {
    width: 100%;
    margin: 10px 0;
    border-radius: 30px;
  }
}
/*
================================================================
 働く環境
================================================================
*/
.page-environment-img {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 40px 0 60px;
}
.page-environment-img figure {
  display: block;
  width: 33.3333%;
}
.page-environment-img figure img {
  display: block;
  width: 100%;
  height: auto;
}

.page-environment-discussion-img {
  padding: 60px 0 80px;
}
.page-environment-discussion-img figure {
  display: block;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}
.page-environment-discussion-img figure img {
  display: block;
  width: 100%;
  height: auto;
}

@media all and (max-width: 767px) {
  .page-environment-img {
    padding: 20px 0 40px;
  }

  .page-environment-discussion-img {
    padding: 40px 0 50px;
  }
  .page-environment-discussion-img figure {
    border-radius: 30px;
  }
}
/*
================================================================
 働く環境 プロフィール
================================================================
*/
.section-panel.section-panel--page-environment-profile {
  padding: 20px 0 80px;
  overflow: hidden;
}

.page-environment-profile-heading {
  text-align: center;
  color: #007d9b;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-size: 2.625rem;
  line-height: 1.8;
}

ul.page-environment-profile-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  margin: 20px auto 0;
  width: 1100px;
  max-width: 100%;
}
ul.page-environment-profile-list > li {
  width: 21.8%;
  margin: 0 0 4% 4.26%;
  list-style-type: none;
  text-align: center;
}
ul.page-environment-profile-list > li:nth-child(4n+1) {
  margin-left: 0;
}
ul.page-environment-profile-list > li .this__img {
  display: block;
  box-sizing: border-box;
  width: 100%;
  border-width: 5px;
  border-style: solid;
  border-radius: 50%;
  overflow: hidden;
}
ul.page-environment-profile-list > li .this__img img {
  display: block;
  width: 100%;
  height: auto;
}
ul.page-environment-profile-list > li .this__prof {
  display: block;
  width: 100%;
  margin-top: 20px;
}
ul.page-environment-profile-list > li .this__prof .this__role {
  display: block;
  font-size: 1rem;
  line-height: 1.5;
  color: #000;
}
ul.page-environment-profile-list > li .this__prof .this__name {
  display: block;
  font-size: 1.375rem;
  line-height: 1.5;
}
ul.page-environment-profile-list > li.item--TA {
  color: #007d9b;
}
ul.page-environment-profile-list > li.item--YS {
  color: #d161a0;
}
ul.page-environment-profile-list > li.item--YO {
  color: #e65225;
}
ul.page-environment-profile-list > li.item--SS {
  color: #4ca036;
}

@media all and (max-width: 1079px) {
  .page-environment-profile-heading {
    font-size: 2rem;
    line-height: 1.8;
  }

  ul.page-environment-profile-list {
    margin-top: 20px;
    width: 1100px;
    max-width: 100%;
  }
  ul.page-environment-profile-list > li {
    width: 22.75%;
    margin: 0 0 4% 3%;
  }
  ul.page-environment-profile-list > li:nth-child(4n+1) {
    margin-left: 0;
  }
  ul.page-environment-profile-list > li .this__img {
    border-width: 5px;
  }
  ul.page-environment-profile-list > li .this__prof {
    margin-top: 20px;
  }
  ul.page-environment-profile-list > li .this__prof .this__role {
    font-size: 0.6875rem;
    line-height: 1.5;
  }
  ul.page-environment-profile-list > li .this__prof .this__name {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media all and (max-width: 767px) {
  .section-panel.section-panel--page-environment-profile {
    padding: 20px 0 50px;
  }

  .page-environment-profile-heading {
    font-size: 1.75rem;
    line-height: 1.8;
  }

  ul.page-environment-profile-list {
    margin-top: 20px;
    width: 550px;
  }
  ul.page-environment-profile-list > li {
    width: 48%;
    margin: 0 0 4% 4%;
  }
  ul.page-environment-profile-list > li:nth-child(2n+1) {
    margin-left: 0;
  }
  ul.page-environment-profile-list > li .this__img {
    border-width: 5px;
  }
  ul.page-environment-profile-list > li .this__prof {
    margin-top: 20px;
  }
  ul.page-environment-profile-list > li .this__prof .this__role {
    font-size: 0.6875rem;
    line-height: 1.5;
  }
  ul.page-environment-profile-list > li .this__prof .this__name {
    font-size: 1rem;
    line-height: 1.5;
  }
}
/*
================================================================
 働く環境 ディスカッション
================================================================
*/
.section-panel.section-panel--page-environment-discussion {
  padding: 20px 0 80px;
  overflow: hidden;
}

.page-environment-discussion-heading {
  padding-top: 20px;
}
.page-environment-discussion-heading .content-heading-pencil {
  color: #007d9b;
  padding-top: 0;
  padding-bottom: 20px;
  font-size: 1.75rem;
  line-height: 1.5;
}
.page-environment-discussion-heading .content-heading-pencil .this__title {
  padding-right: 0;
}
.page-environment-discussion-heading .content-heading-pencil .this__title span {
  display: inline-block;
}

.page-environment-discussion-theme {
  width: 1100px;
  max-width: 100%;
  margin: 40px auto 0;
}
.page-environment-discussion-theme > p {
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-size: 1.125rem;
  line-height: 1.8;
  padding: 1em 0;
  text-align: justify;
}
.page-environment-discussion-theme > .this__voice {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  font-size: 1rem;
  line-height: 2;
  padding-top: 2em;
}
.page-environment-discussion-theme > .this__voice > div {
  width: 3.125em;
  padding-bottom: 2em;
}
.page-environment-discussion-theme > .this__voice > div.item--TA {
  color: #007d9b;
}
.page-environment-discussion-theme > .this__voice > div.item--YS {
  color: #d161a0;
}
.page-environment-discussion-theme > .this__voice > div.item--YO {
  color: #e65225;
}
.page-environment-discussion-theme > .this__voice > div.item--SS {
  color: #4ca036;
}
.page-environment-discussion-theme > .this__voice > p {
  width: calc(100% - 3.125em);
  padding-bottom: 2em;
  text-align: justify;
}

@media all and (max-width: 1279px) {
  .page-environment-discussion-heading.content-heading-pencil-center {
    padding-left: 0;
    padding-right: 0;
  }
  .page-environment-discussion-heading.content-heading-pencil-center .content-heading-pencil {
    left: 0;
  }
}
@media all and (max-width: 767px) {
  .section-panel.section-panel--page-environment-discussion {
    padding: 20px 0 40px;
  }

  .page-environment-discussion-heading {
    padding-top: 12px;
  }
  .page-environment-discussion-heading .content-heading-pencil {
    padding-bottom: 12px;
    font-size: 1.125rem;
    line-height: 1.5;
  }
  .page-environment-discussion-heading .content-heading-pencil .this__title {
    padding-right: 0;
  }

  .page-environment-discussion-theme {
    width: 1100px;
    margin-top: 40px;
  }
  .page-environment-discussion-theme > p {
    font-size: 1rem;
  }
  .page-environment-discussion-theme > .this__voice {
    font-size: 0.875rem;
  }
}
/*
================================================================
 働く環境 ディスカッション メッセージ
================================================================
*/
.page-environment-voice {
  position: relative;
  padding: 0 0 170px;
  text-align: center;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-size: 1.125rem;
  line-height: 2;
  background-image: url(../img/common/YM/bubble_for_YM.png);
  background-repeat: no-repeat;
  background-position: left 50% bottom 100px;
  background-size: 420px 60px;
}

.page-environment-voice-YM {
  position: relative;
  z-index: 1;
  height: 100px;
}
.page-environment-voice-YM::after {
  content: "";
  position: absolute;
  left: calc(50% - 70px);
  bottom: 0;
  width: 140px;
  height: 170px;
  background-image: url(../img/common/YM/YM_up.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.page-environment-voice-YM.disp-animate::after {
  bottom: -50%;
  opacity: 0;
  transition: opacity 0.3s ease 0s, bottom 0.5s cubic-bezier(0.2, 3, 0.8, 0.5) 0s;
}
.page-environment-voice-YM.disp-animate.disp-animate--display::after {
  bottom: 0;
  opacity: 1;
}

@media all and (max-width: 767px) {
  .page-environment-voice {
    padding: 0 0 102px;
    font-size: 0.875rem;
    line-height: 2;
    background-position: left 50% bottom 60px;
    background-size: 252px 36px;
  }

  .page-environment-voice-YM {
    height: 60px;
  }
  .page-environment-voice-YM::after {
    left: calc(50% - 42px);
    width: 84px;
    height: 102px;
  }
}
/*
================================================================
 採用情報 外部リンク
================================================================
*/
.section-panel.section-panel--page-information-guideline {
  padding: 0 0;
  overflow: hidden;
}

.page-information-guideline-heading {
  text-align: center;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  font-size: 1.25rem;
  line-height: 1.8;
  padding: 20px 0 0;
}

.page-information-guideline-type {
  display: block;
  margin: 1.5em 0 0.5em;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #007d9b;
  text-decoration: none;
  text-align: center;
}

.page-information-guideline-bnr {
  text-align: center;
}

.page-information-guideline-bnr-btn {
  display: inline-block;
  box-sizing: border-box;
  max-width: 100%;
  padding: 17px 40px 19px;
  border: 0 none;
  outline: 0 none;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  text-decoration: none !important;
  font-size: 1.875rem;
  line-height: 50px;
  text-align: center;
  background-color: #fff !important;
  background-image: url(../img/common/arrow/arrow_black_right.png);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  color: #000 !important;
  border: 2px solid #000 !important;
  border-radius: 20px;
  box-shadow: 0 5px #007d9b;
  transform: none;
}
.page-information-guideline-bnr-btn img {
  display: block;
  max-width: 100%;
  height: auto;
}
.page-information-guideline-bnr-btn.item--Fresher {
  box-shadow: 0 5px #007d9b;
}
.page-information-guideline-bnr-btn.item--Carrier {
  box-shadow: 0 5px #c1272d;
}

ul.page-information-guideline-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  margin: 0 auto;
  padding: 70px 0 0;
  width: 750px;
  max-width: 100%;
}
ul.page-information-guideline-list > li {
  width: 46.6666%;
  margin: 0 0 30px 6.6666%;
  list-style-type: none;
}
ul.page-information-guideline-list > li:nth-child(2n+1) {
  margin-left: 0;
}
ul.page-information-guideline-list > li > a, ul.page-information-guideline-list > li > .as-link {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  padding: 17px 60px 19px;
  border: 0 none;
  outline: 0 none;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  text-decoration: none !important;
  font-size: 1.875rem;
  line-height: 50px;
  text-align: center;
  background-color: #fff5d7 !important;
  background-image: url(../img/common/arrow/arrow_black_right.png);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: right 40px top 50%;
  color: #000 !important;
  border: 2px solid #000 !important;
  border-radius: 45px;
  box-shadow: 0 5px #007d9b;
  transform: none;
}
ul.page-information-guideline-list > li.item--Fresher > a, ul.page-information-guideline-list > li.item--Fresher > .as-link {
  box-shadow: 0 5px #007d9b;
}
ul.page-information-guideline-list > li.item--Carrier > a, ul.page-information-guideline-list > li.item--Carrier > .as-link {
  box-shadow: 0 5px #c1272d;
}

.page-information-guideline-YM {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 170px;
}
.page-information-guideline-bnr + .page-information-guideline-YM {
  margin-top: 25px;
}
.page-information-guideline-YM::before {
  content: "";
  position: absolute;
  right: calc(50% - 70px);
  bottom: 0;
  display: block;
  width: 350px;
  height: 170px;
  background-image: url(../img/common/YM/YM_entry.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.page-information-guideline-YM.disp-animate::before {
  bottom: -20%;
  opacity: 0;
  transition: opacity 0.3s ease 0s, bottom 0.5s ease-in 0s;
}
.page-information-guideline-YM.disp-animate.disp-animate--display::before {
  bottom: 0;
  opacity: 1;
}

@media all and (max-width: 1079px) {
  .page-information-guideline-YM {
    height: 136px;
  }
  .page-information-guideline-YM::before {
    right: calc(50% - 56px);
    width: 280px;
    height: 136px;
  }
}
@media all and (max-width: 767px) {
  .section-panel.section-panel--page-information-guideline {
    padding: 0 0 0;
  }

  .page-information-guideline-heading {
    font-size: 1rem;
    line-height: 1.8;
    padding: 20px 0 0;
  }

  .page-information-guideline-type {
    margin: 1.5em 0 0.5em;
    font-size: 1.375rem;
    line-height: 1.5;
  }

  .page-information-guideline-bnr-btn {
    padding: 17px 40px 19px;
    font-size: 1.25rem;
    line-height: 30px;
    background-size: 16px 16px;
    background-position: right 15px top 50%;
    border-radius: 20px;
  }

  ul.page-information-guideline-list {
    display: block;
    padding: 40px 0 0;
  }
  ul.page-information-guideline-list > li {
    width: 280px;
    max-width: 100%;
    margin: 0 auto 30px;
    list-style-type: none;
  }
  ul.page-information-guideline-list > li:nth-child(2n+1) {
    margin-left: auto;
  }
  ul.page-information-guideline-list > li > a, ul.page-information-guideline-list > li > .as-link {
    padding: 17px 40px 19px;
    font-size: 1.25rem;
    line-height: 30px;
    background-size: 16px 16px;
    background-position: right 30px top 50%;
    border-radius: 35px;
  }

  .page-information-guideline-YM {
    height: 136px;
  }
  .page-information-guideline-bnr + .page-information-guideline-YM {
    margin-top: 20px;
  }
  .page-information-guideline-YM::before {
    right: calc(50% - 56px);
    width: 280px;
    height: 136px;
  }
}
@media all and (max-width: 579px) {
  .page-information-guideline-YM {
    height: 136px;
  }
  .page-information-guideline-YM::before {
    right: calc(50% - 140px);
    width: 280px;
    height: 136px;
  }
}
/*
================================================================
 採用情報 SNS
================================================================
*/
.section-panel.section-panel--page-information-sns {
  padding: 80px 0 120px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.section-panel.section-panel--page-information-sns::before {
  position: absolute;
  content: "";
  right: 0;
  top: 40px;
  display: block;
  width: calc(100% - 80px);
  height: calc(100% - 100px);
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  background-color: #e1f5f8;
}

.page-information-sns-heading {
  text-align: center;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-size: 2.125rem;
  line-height: 1.8;
}

.page-information-sns-bnr {
  position: relative;
  z-index: 11;
  padding: 30px 0 0;
}
.page-information-sns-bnr a {
  position: relative;
  z-index: 11;
  display: block;
  box-sizing: border-box;
  margin: 0 auto;
  width: 460px;
  padding: 18px 48px 18px 18px;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  color: #000;
  box-shadow: 0 5px #c1272d;
}
.page-information-sns-bnr a::after {
  content: "";
  position: absolute;
  right: 28px;
  top: calc(50% - 10px);
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/arrow/arrow_black_right.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

@media all and (max-width: 1079px) {
  .section-panel.section-panel--page-information-sns::before {
    width: calc(100% - 30px);
    height: calc(100% - 100px);
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
  }
}
@media all and (max-width: 767px) {
  .section-panel.section-panel--page-information-sns {
    padding: 60px 0 80px;
  }
  .section-panel.section-panel--page-information-sns::before {
    top: 30px;
    display: block;
    width: calc(100% - 15px);
    height: calc(100% - 60px);
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
  }

  .page-information-sns-heading {
    font-size: 1.5rem;
    line-height: 1.8;
  }

  .page-information-sns-bnr {
    padding: 20px 0 0;
  }
  .page-information-sns-bnr a {
    width: auto;
    padding: 18px 38px 18px 18px;
    border-radius: 30px;
    box-shadow: 0 5px #c1272d;
  }
  .page-information-sns-bnr a::after {
    right: 18px;
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
  }
  .page-information-sns-bnr a img {
    max-width: 100%;
    height: auto;
  }
}
@media all and (max-width: 579px) {
  .section-panel.section-panel--page-information-sns {
    padding: 60px 0 80px;
  }
  .section-panel.section-panel--page-information-sns::before {
    top: 30px;
    display: block;
    width: calc(100% - 10px);
    height: calc(100% - 60px);
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
  }
}
/*
================================================================
 エラーページ
================================================================
*/
/*
================================================================
 採用情報 外部リンク
================================================================
*/
.section-panel.section-panel--page-error-msg {
  padding: 0 0 50px;
  overflow: hidden;
}

.page-error-msg-content {
  text-align: center;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  font-size: 1.25rem;
  line-height: 2.4;
  padding: 20px 0 0;
}

ul.page-error-msg-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  margin: 0 auto;
  padding: 70px 0 0;
  width: 750px;
  max-width: 100%;
}
ul.page-error-msg-list > li {
  width: 46.6666%;
  margin: 0 0 30px 6.6666%;
  list-style-type: none;
}
ul.page-error-msg-list > li:nth-child(2n+1) {
  margin-left: 0;
}
ul.page-error-msg-list > li > a, ul.page-error-msg-list > li > .as-link {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  padding: 17px 60px 19px;
  border: 0 none;
  outline: 0 none;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  text-decoration: none !important;
  font-size: 1.875rem;
  line-height: 50px;
  text-align: center;
  background-color: #fff5d7 !important;
  background-image: url(../img/common/arrow/arrow_black_right.png);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: right 40px top 50%;
  color: #000 !important;
  border: 2px solid #000 !important;
  border-radius: 45px;
  box-shadow: 0 5px #007d9b;
  transform: none;
}

@media all and (max-width: 767px) {
  .section-panel.section-panel--page-error-msg {
    padding: 0 0 30px;
  }

  .page-error-msg-content {
    font-size: 0.875rem;
    line-height: 2;
    padding: 20px 0 0;
  }

  ul.page-error-msg-list {
    display: block;
    padding: 40px 0 0;
  }
  ul.page-error-msg-list > li {
    width: 280px;
    max-width: 100%;
    margin: 0 auto 30px;
    list-style-type: none;
  }
  ul.page-error-msg-list > li:nth-child(2n+1) {
    margin-left: auto;
  }
  ul.page-error-msg-list > li > a, ul.page-error-msg-list > li > .as-link {
    padding: 17px 40px 19px;
    font-size: 1.25rem;
    line-height: 30px;
    background-size: 16px 16px;
    background-position: right 30px top 50%;
    border-radius: 35px;
  }
}
