@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

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

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

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

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

img, picture {
  max-width: 100%;
  display: block;
}

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

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

:root {
  --col-key: #00a0e9;
  --col-key2: #43a0fe;
  --col-pale: #e3f0fb;
  --col-black: #111;
  --col-text: #111;
  --col-tap-highlight-color: rgba(0,160,233,.2);
  --col-iryou: #009fb0;
  --col-iryou2: #b89c59;
}

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

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

 */
/**
	webp背景画像を指定する
 */
*, *:before, *:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /*    @include mixins.down(320) {
        font-size: calc(100 * 16 / 320 * 0.625vw);
      }
      @include mixins.mq-sp {
        font-size: calc(100 * 16 / 375 * 0.625vw);
      }
      @include mixins.mq-pc {
        font-size: calc(100 * 16 / 1280 * 0.625vw);
      }
      @include mixins.up(1280) {
        font-size: 62.5%;
      }*/
}

body {
  font-size: 1.6rem;
  color: var(--col-text);
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /*overscroll-behavior: none;*/
  -webkit-tap-highlight-color: var(--col-tap-highlight-color);
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
}
@media (min-width: 769px) {
  body {
    font-size: 1.8rem;
  }
}

body.is-fixed {
  position: fixed;
  height: 100%;
  overflow: hidden;
}

main {
  display: block;
}

a {
  color: var(--col_black);
  text-decoration: none;
  outline: none;
}

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

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

p, h1, h2, h3, h4, h5, h6, small, em, li, dt, dd, th, td {
  line-height: 2;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  font-weight: 700;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

img {
  vertical-align: bottom;
}

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

sup {
  font-size: 0.4em;
  vertical-align: top;
}

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

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

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

.svg-assets {
  display: none;
}

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

#コンテンツヘッダ

*/
/* --------------------------------------------------------------------
  #ヘッダ
 */
.header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .header {
    height: 75px;
  }
}
@media print, screen and (min-width: 769px) {
  .header {
    position: absolute;
    height: 140px;
  }
}

.header-inner {
  height: 100%;
}

.header__ci {
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  width: 45px;
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 769px) {
  .header__ci {
    width: 86px;
  }
}

.header.is-gray {
  background-color: #efefef;
}

.header-nav__ci {
  margin-left: auto;
  margin-right: auto;
}
.header-nav__ci > a {
  display: block;
  height: 75px;
  width: 65px;
  -webkit-mask: url(../img/logo.svg) no-repeat center center/contain;
          mask: url(../img/logo.svg) no-repeat center center/contain;
  background-color: #fff;
}
.header-nav__ci img {
  display: none;
}
@media print, screen and (min-width: 769px) {
  .header-nav__ci {
    display: none;
  }
}

/**
  SP時の固定ヘッダ要素
 */
/**
  メニュートリガーボタン
 */
.header__trigger {
  position: fixed;
  z-index: 10020;
  cursor: pointer;
  right: 0;
  top: 0;
  width: 70px;
  height: 75px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding-right: 20px;
}
.header__trigger .line1,
.header__trigger .line2,
.header__trigger .line3 {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--col-key);
  transform-origin: 50% 50%;
  transition-duration: 0.2s;
}
.header__trigger .line1 {
  transform: translate3d(0, -4px, 0);
}
.header__trigger .line2 {
  display: none;
}
.header__trigger .line3 {
  transform-origin: 100% 0;
  transform: translate3d(0, 4px, 0) scaleX(0.7);
}
.header__trigger.is-active .line1,
.header__trigger.is-active .line2,
.header__trigger.is-active .line3 {
  transition-duration: 0.4s;
  background-color: #fff;
  transform-origin: 50% 50%;
}
.header__trigger.is-active .line1 {
  transform: translate3d(0, 1px, 0) rotate(45deg);
}
.header__trigger.is-active .line2 {
  opacity: 0;
}
.header__trigger.is-active .line3 {
  transform: translate3d(0, -1px, 0) rotate(-45deg);
}
@media print, screen and (min-width: 769px) {
  .header__trigger {
    display: none;
  }
}

/**
  メニュー本体（SP時メニューのボディ）
 */
@media only screen and (max-width: 768px) {
  .header-menu {
    display: none;
    position: fixed;
    z-index: 10010;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
  }
  .header-menu.is-active {
    display: block;
  }
  .header-menu.is-active .header-menu-inner {
    opacity: 1;
  }
  .header-menu.is-beforeEnter {
    display: block;
    opacity: 0;
  }
  .header-menu.is-enter {
    display: block;
    transition: opacity 0.6s, visibility 0s;
    opacity: 1;
  }
  .header-menu.is-fadeOut {
    display: block;
    transition: opacity 0.6s, visibility 0.6s;
    opacity: 0;
  }
}

@media only screen and (max-width: 768px) {
  .header-menu-inner {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: absolute;
    z-index: 10000;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--col-key);
    overscroll-behavior: contain;
  }
}

@media only screen and (max-width: 768px) {
  .header-menu-content {
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
  }
}
@media print, screen and (min-width: 769px) {
  .header-menu-content {
    padding-right: 280px;
    height: 125px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column-reverse;
  }
}

/**
  gnav
 */
.header__gnav > li {
  font-size: 1.6rem;
}
.header__gnav > li > a {
  display: block;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .header__gnav > li:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media (min-width: 769px) {
  .header__gnav {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 2.5rem;
  }
  .header__gnav > li {
    font-size: 1.7rem;
    transition: 0.3s opacity;
  }
  .header__gnav > li:hover {
    opacity: 0.7;
  }
  .header__gnav > li a {
    color: var(--col-text);
  }
}

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

  #フッタ

 */
.footer {
  position: relative;
  background-color: var(--col-key);
  border-top: 2px solid var(--col-black);
  color: #fff;
}
@media print, screen and (min-width: 769px) {
  .footer {
    min-height: 360px;
    display: flex;
    align-items: center;
  }
}

.footer-inner {
  padding: 60px 0 40px;
}
@media print, screen and (min-width: 769px) {
  .footer-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.footer__pagetop {
  position: absolute;
  right: 20px;
  top: 20px;
}
@media print, screen and (min-width: 769px) {
  .footer__pagetop {
    width: 25px;
    right: 40px;
    top: 40px;
    transition-duration: 0.3s;
  }
  .footer__pagetop:hover {
    transform: translate3d(0, -7px, 0);
  }
}

.footer__pagetop {
  position: absolute;
  width: 30px;
}
.footer-container1 {
  position: relative;
  padding: 0 0 0 100px;
}
.footer-container1 address {
  line-height: 1.75;
  font-size: 1.1rem;
}
@media print, screen and (min-width: 769px) {
  .footer-container1 {
    width: calc(100% - 310px);
    padding-left: 160px;
    padding-top: 20px;
  }
  .footer-container1 address {
    font-style: normal;
    font-size: 1.3rem;
  }
}

.footer__ci {
  position: absolute;
  width: 80px;
  height: 72px;
  left: 0;
  top: 0;
  -webkit-mask: url(../img/logo.svg) no-repeat center center/contain;
          mask: url(../img/logo.svg) no-repeat center center/contain;
  background-color: #fff;
  font-size: 0;
}
@media print, screen and (min-width: 769px) {
  .footer__ci {
    width: 123px;
    height: 130px;
  }
}

.footer__map {
  margin-top: 10px;
  width: 120px;
}
.footer__map.btn-b .btn-inner {
  font-weight: 700;
  font-size: 1rem;
}
@media print, screen and (min-width: 769px) {
  .footer__map {
    width: 120px;
  }
  .footer__map.btn-b .btn-inner {
    font-size: 1.2rem;
  }
}

.footer__cyclo {
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 30px;
  height: 90px;
}
.footer__cyclo > p {
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
  margin-bottom: 10px;
}
.footer__cyclo figure {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer__cyclo figure img {
  width: 50px;
}
.footer__cyclo figure figcaption {
  font-size: 1.6rem;
}
@media print, screen and (min-width: 769px) {
  .footer__cyclo {
    width: 310px;
    height: 130px;
    margin-top: 0;
  }
  .footer__cyclo > p {
    font-size: 1.7rem;
  }
  .footer__cyclo figure img {
    width: 80px;
  }
  .footer__cyclo figure figcaption {
    font-size: 2.1rem;
  }
}

.footer__copyright {
  width: 100%;
  font-weight: 400;
  text-align: center;
  font-size: 1.1rem;
  margin-top: 15px;
}
@media print, screen and (min-width: 769px) {
  .footer__copyright {
    text-align: right;
    font-size: 1.4rem;
    margin-top: 20px;
  }
}

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

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

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

/* --------------------------------------------------------------------
  #ボタン A - タイポ＋横棒線

 */
/* --------------------------------------------------------------------
  #ボタン B - 右矢印

 */
.btn-b {
  display: block;
}
.btn-b .btn-inner {
  position: relative;
  display: block;
  padding-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.5;
  padding-right: 25px;
}
.btn-b .btn-inner::before {
  border: 1px solid #ff0000;
  content: "";
  display: block;
  position: absolute;
  width: 22px;
  height: 4px;
  -webkit-mask: url(../img/ic_arrow.svg) no-repeat right center/contain;
          mask: url(../img/ic_arrow.svg) no-repeat right center/contain;
  background-color: var(--col-black);
  top: calc(50% - 6px);
  right: 0;
}
.btn-b .btn-inner::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--col-black);
  bottom: 0;
  left: 0;
  transform-origin: 0 0;
  transition: transform 0.3s;
}
@media print, screen and (min-width: 769px) {
  .btn-b .btn-inner {
    padding-bottom: 12px;
    font-size: 1.4rem;
  }
  .btn-b .btn-inner::before {
    width: 32px;
    height: 5px;
    top: calc(50% - 9px);
  }
  .btn-b:hover .btn-inner::after {
    transform: scale3d(0, 1, 1);
    transform-origin: 100% 0;
  }
}

.btn-b.--white .btn-inner {
  color: #fff;
}
.btn-b.--white .btn-inner::before {
  background-color: #fff;
}
.btn-b.--white .btn-inner::after {
  background-color: #fff;
}

.button-contact {
  position: relative;
  border-radius: 999px;
  background-color: var(--col-key);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  line-height: 1.75;
  height: 120px;
  padding-top: 24px;
  font-size: 1.7rem;
  font-weight: 700;
}
.button-contact > small {
  font-size: 0.78em;
  display: block;
  line-height: 1;
  margin-top: 3px;
}
.button-contact::before {
  content: "";
  display: block;
  position: absolute;
  width: 32px;
  height: 29px;
  -webkit-mask: url(../img/ic_mail.svg) no-repeat center center/contain;
          mask: url(../img/ic_mail.svg) no-repeat center center/contain;
  background-color: #fff;
  top: 17px;
}
@media print, screen and (min-width: 769px) {
  .button-contact {
    font-size: 3.2rem;
    line-height: 1;
    height: 208px;
    padding-top: 0;
    padding-left: 120px;
    transition: 0.3s opacity;
  }
  .button-contact:hover {
    opacity: 0.7;
  }
  .button-contact > small {
    margin-top: 15px;
  }
  .button-contact::before {
    top: auto;
    width: 70px;
    height: 62px;
    left: calc(50% - 240px);
  }
}

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

  #見出しモジュール

 */
/* --------------------------------------------------------------------
  # ページ見出し
 */
.heading-page {
  line-height: 1;
  font-size: 2.4rem;
}
.heading-page > small {
  line-height: 1;
  font-size: 1.8rem;
  margin-bottom: 12px;
  font-family: century-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  display: flex;
  align-items: center;
}
.heading-page > small::before {
  content: "";
  display: block;
  position: absolute;
  position: relative;
  width: 15px;
  height: 2px;
  margin-right: 0.3em;
  background-color: var(--col-black);
}
@media print, screen and (min-width: 769px) {
  .heading-page {
    font-size: 2.8rem;
  }
  .heading-page::before {
    width: 20px;
  }
  .heading-page > small {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}

/* --------------------------------------------------------------------
  # セクション見出し
 */
.heading-sec {
  line-height: 1;
  font-size: 2.8rem;
}
.heading-sec > small {
  line-height: 1;
  display: block;
  color: var(--col-key);
  font-family: century-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 769px) {
  .heading-sec {
    font-size: 3.6rem;
    margin-bottom: 40px;
  }
  .heading-sec > small {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
}

.heading-block {
  color: var(--col-key);
  font-size: 1.6rem;
  margin-bottom: 25px;
}
@media print, screen and (min-width: 769px) {
  .heading-block {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

.catchcopy {
  font-size: 2rem;
  line-height: 1.75;
  margin-bottom: 25px;
}
@media print, screen and (min-width: 769px) {
  .catchcopy {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
}

/*
@forward "accordion";
@forward "anchor";
@forward "breadcrumbs";


@forward "dropdown";

@forward "form";


@forward "pagination";
@forward "snippet";
@forward "tab";
@forward "table";*/
/**
  汎用ページ
 */
/****
  数値をvw値へ変換する
 */
/***
  数値（px）をbase-vwから算出したvw へ変換
  元の数値と比べて小さい方を返す
  つまり、画面サイズがbase-vwよりひろければ指定数値
  狭ければvw変換値を使用する
 */
/**
  上記二つのSP版
 */
.page-top {
  position: relative;
}

.page-common {
  position: relative;
  background-color: #fff;
  padding-top: min(51.2820512821vw, 200px);
}
@media print, screen and (min-width: 769px) {
  .page-common {
    padding-top: min(20.3125vw, 260px);
  }
}

.page-about {
  background-color: #fffbd6;
}

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

.l-width-content {
  margin-left: 20px;
  margin-right: 20px;
}
@media print, screen and (min-width: 769px) {
  .l-width-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 980px;
  }
}

.l-width-top {
  margin-left: 20px;
  margin-right: 20px;
}
@media print, screen and (min-width: 769px) {
  .l-width-top {
    margin-left: auto;
    margin-right: auto;
    min-width: 769px;
    width: 90%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1180px) {
  .l-width-top {
    max-width: 1000px;
  }
}

@media (min-width: 769px) and (max-width: 1180px) {
  .l-width-services {
    max-width: 1000px;
  }
}

/* --------------------------------------------------------------------
  #ページ全体のwrapper
 */
.l-page-wrapper {
  position: relative;
  overflow-x: hidden;
}
.l-page-wrapper img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------------
  #メインエリアwrapper
 */
.l-main {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .l-main {
    padding-top: 75px;
    min-height: 60vh;
  }
}
@media print, screen and (min-width: 769px) {
  .l-main {
    padding-top: 140px;
    min-height: 600px;
  }
}

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

.l-main--top {
  background-color: #ebebeb;
}
@media only screen and (max-width: 768px) {
  .l-main--top {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 82px;
    padding-bottom: 40px;
  }
}
@media print, screen and (min-width: 769px) {
  .l-main--top {
    padding-top: 125px;
    padding-bottom: 80px;
  }
}

/**
  基本セク章
 */
/* ==========================================================================

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

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

.u-free {
  width: auto;
}

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

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

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

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

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

.u-block {
  display: block;
}

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

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

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

.u-pc-only {
  display: none;
}

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

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

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

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

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

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

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

/*@function slick-image-url($url) {
    @if function-exists(image-url) {
        @return image-url($url);
    }
    @else {
        @return url($slick-loader-path + $url);
    }
}*/
/*
@function slick-font-url($url) {
    @if function-exists(font-url) {
        @return font-url($url);
    }
    @else {
        @return url($slick-font-path + $url);
    }
}
*/
.slick-slide {
  outline: none;
}

/* Slider */
/* Icons */
/*@if $slick-font-family == "slick" {
    @font-face {
        font-family: "slick";
        src: slick-font-url("slick.eot");
        src: slick-font-url("slick.eot?#iefix") format("embedded-opentype"), slick-font-url("slick.woff") format("woff"), slick-font-url("slick.ttf") format("truetype"), slick-font-url("slick.svg#slick") format("svg");
        font-weight: normal;
        font-style: normal;
    }
}*/
/* Arrows */
.slick-prev,
.slick-next {
  background: #ccc;
  border: none;
  font-size: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: url(../img/ic_arrow_a2.svg) no-repeat center center/1.2rem auto rgba(255, 255, 255, 0.72);
}
@media print, screen and (min-width: 769px) {
  .slick-prev,
  .slick-next {
    width: 4.2rem;
    height: 4.2rem;
    background-size: 2.6rem auto;
  }
}

.slick-prev {
  transform: translateY(-50%) scaleX(-1);
}

/* Dots */
.mv__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: var(--col-key);
  height: 11rem;
  background-color: var(--col-pale);
}
@media print, screen and (min-width: 769px) {
  .mv__copy {
    height: 25rem;
    font-size: 3.6rem;
  }
}

.mv-slide__item {
  display: block;
}
@media only screen and (max-width: 768px) {
  .mv-slide__item {
    height: 60vw;
  }
  .mv-slide__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.top-about {
  padding: 40px 0;
  position: relative;
}
@media print, screen and (min-width: 769px) {
  .top-about {
    padding: 60px 0;
    min-height: 62rem;
  }
}

.top-about__heading {
  margin-bottom: 25px;
}
@media print, screen and (min-width: 769px) {
  .top-about__heading {
    margin-bottom: 40px;
  }
}

.top-about__text > p {
  font-size: 1.3rem;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media print, screen and (min-width: 769px) {
  .top-about__text > p {
    font-size: 1.4rem;
  }
}

.top-about__button {
  margin-top: 25px;
  width: 50%;
}
@media print, screen and (min-width: 769px) {
  .top-about__button {
    width: 155px;
    margin-top: 40px;
  }
}

.top-about__pict {
  position: relative;
  margin-top: 60px;
}
.top-about__pict img {
  position: relative;
  display: block;
}
.top-about__pict .pict1 {
  width: 75%;
  margin: 0 0 0 auto;
  z-index: 3;
}
.top-about__pict .pict2 {
  width: 60%;
  margin: -20px auto 0 0;
}
@media print, screen and (min-width: 769px) {
  .top-about__pict {
    position: absolute;
    right: 20px;
    margin: 0;
    top: 0;
    width: 50%;
    max-width: 580px;
  }
  .top-about__pict .pict1 {
    width: vw-clamp(446);
    max-width: 446px;
  }
  .top-about__pict .pict2 {
    width: vw-clamp(320);
    margin-top: -40px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .top-about__pict .pict2 {
    width: vw-clamp(320);
    margin: 20px 0 0 auto;
  }
}

.top-dept {
  background-color: #f1f1f1;
  padding: 60px 0;
}
@media print, screen and (min-width: 769px) {
  .top-dept {
    padding: 100px 0 120px;
  }
}

.top-dept__heading {
  margin-bottom: 40px;
}
@media print, screen and (min-width: 769px) {
  .top-dept__heading {
    margin-bottom: 60px;
  }
}

@media print, screen and (min-width: 769px) {
  .top-dept-list {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8%;
    row-gap: 6rem;
  }
}

.top-dept-list__item {
  background-color: #fff;
}
.top-dept-list__item > a {
  display: block;
}
.top-dept-list__item p {
  line-height: 1.6;
  padding: 20px 15px;
}
.top-dept-list__item p > span {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: 12px;
}
.top-dept-list__item p > span::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  transform-origin: 0 0;
  background-color: var(--col-black);
  transition: transform 0.3s;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .top-dept-list__item:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media print, screen and (min-width: 769px) {
  .top-dept-list__item {
    width: 28%;
  }
  .top-dept-list__item p {
    padding: 0 2rem 2.5rem;
    display: flex;
    align-items: center;
  }
  .top-dept-list__item p > span {
    min-height: 100px;
    font-size: 1.6rem;
  }
  .top-dept-list__item > a:hover p > span::after {
    transform-origin: 100% 0;
    transform: scale3d(0, 1, 1);
  }
}

.top-dept__contact {
  margin-top: 60px;
}
@media print, screen and (min-width: 769px) {
  .top-dept__contact {
    margin-top: 120px;
  }
}

.services-nav {
  background-color: #f1f1f1;
  padding: 40px 0;
}

.services-nav__heading {
  font-weight: bold;
  margin-bottom: 15px;
  color: #009fb0;
  font-size: 1.6rem;
}
@media print, screen and (min-width: 769px) {
  .services-nav__heading {
    margin-bottom: 25px;
    font-size: 1.8rem;
  }
}

.services-nav__list {
  display: flex;
  flex-wrap: wrap;
}
.services-nav__list > li {
  position: relative;
}
.services-nav__list > li ul {
  position: absolute;
  right: 0;
  top: -3px;
  display: flex;
  gap: 1px;
  height: 100%;
  align-items: center;
}
.services-nav__list > li.is-current .btn-inner::after {
  background-color: var(--mycol);
}
.services-nav__list > li.is-current .btn-inner::after {
  background-color: var(--mycol);
}
@media only screen and (max-width: 768px) {
  .services-nav__list {
    justify-content: space-between;
  }
  .services-nav__list > li {
    width: 46%;
    margin-bottom: 30px;
  }
  .services-nav__list > li .btn-inner {
    font-size: 1.1rem;
  }
  .services-nav__list > li ul {
    flex-direction: column;
    justify-content: center;
    bottom: 0;
  }
  .services-nav__list > li ul > li {
    width: 20px;
  }
}
@media print, screen and (min-width: 769px) {
  .services-nav__list > li {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 45px;
  }
  .services-nav__list > li .btn-inner {
    padding-right: 35px;
  }
  .services-nav__list > li ul li {
    width: 40px;
  }
  .services-nav__list > li:nth-child(3n) {
    margin-right: 0;
  }
}

.services-nav__list.--index {
  margin-right: 0;
}
.services-nav__list.--index > li {
  width: 47.5%;
  margin-right: 0;
  margin-bottom: 0;
}
.services-nav__list.--index > li .btn-inner {
  padding-top: 0;
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  min-height: 50px;
}
@media print, screen and (min-width: 769px) {
  .services-nav__list.--index {
    gap: 5%;
  }
  .services-nav__list.--index > li {
    margin-bottom: 10px;
  }
  .services-nav__list.--index > li .btn-inner {
    min-height: 70px;
  }
}

/****************
  スプラッシュ
 */
.l-mb0 {
  margin-bottom: 0 !important;
}

/****************
  コンテンツ
 */
@media (min-width: 960px) and (max-width: 1280px) {
  .services-wrap {
    margin: 0 60px;
  }
}

.services-content {
  position: relative;
  margin-top: 40px;
}
@media print, screen and (min-width: 769px) {
  .services-content {
    margin-top: 80px;
    padding-right: 52%;
    /*margin-bottom: 100px;*/
  }
}
@media (min-width: 1280px) {
  .services-content {
    min-height: 1250px;
  }
}

.services-content--others {
  position: relative;
  padding-bottom: 40px;
}
@media print, screen and (min-width: 769px) {
  .services-content--others {
    padding-bottom: 80px;
  }
}

.services-content .services-text {
  color: var(--mycol);
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1.5em;
  line-height: 1.75;
}
.services-content .services-text:last-of-type {
  margin-bottom: 0;
}

.services__head {
  margin-bottom: 14px;
}
@media print, screen and (min-width: 769px) {
  .services__head {
    margin-bottom: 16px;
  }
}

.services__head--index {
  margin-bottom: 30px;
}
@media print, screen and (min-width: 769px) {
  .services__head--index {
    margin-bottom: 45px;
    width: 70%;
  }
  .services__head--index p {
    margin: 80px 0 40px;
  }
}

.services__head .head-title {
  position: relative;
  padding-left: 22px;
  margin-bottom: 18px;
  line-height: 1.3;
}
.services__head .head-title > span {
  display: block;
}
.services__head .head-title::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 15px;
  height: 2px;
  background-color: #000;
}
.services__head .head-title .title-jp {
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.services__head .head-title .title-en {
  font-family: century-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.8rem;
}
@media print, screen and (min-width: 769px) {
  .services__head .head-title {
    margin-bottom: 25px;
    padding-left: 30px;
  }
  .services__head .head-title::before {
    width: 20px;
    bottom: 15px;
  }
  .services__head .head-title .title-jp {
    margin-bottom: 8px;
    font-size: 1.2rem;
  }
  .services__head .head-title .title-en {
    font-size: 2.4rem;
  }
}

.services__head .head-category {
  display: flex;
}
.services__head .head-category > li {
  border: 2px solid var(--mycol);
  border-radius: 20px;
  height: 25px;
  display: inline-block;
  padding: 5px 10px;
  line-height: 1;
  align-items: center;
  margin-right: 0.7em;
  font-size: 1.2rem;
  color: var(--mycol2);
  background-color: #fff;
  font-weight: bold;
}
@media print, screen and (min-width: 769px) {
  .services__head .head-category > li {
    height: 33px;
    padding: 6px 15px;
    font-size: 1.4rem;
  }
}
.services__head .head-category > li:last-child {
  margin-right: 0;
}

.services__heading {
  position: relative;
  z-index: 3;
  line-height: 1.5;
  margin-bottom: 30px;
}
.services__heading small {
  font-size: 0.45em;
}
.services__heading .heading-en {
  color: var(--mycol);
  font-family: century-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.8rem;
  display: block;
}
.services__heading .heading-jp {
  font-size: 2.5rem;
  font-weight: bold;
}
@media print, screen and (min-width: 769px) {
  .services__heading {
    margin-bottom: 30px;
  }
  .services__heading .heading-en {
    font-size: 2.4rem;
  }
  .services__heading .heading-jp {
    font-size: 3.4rem;
  }
}

.services__heading .heading-en--iryou {
  color: var(--col-iryou);
}

.services__catch {
  line-height: 1.75;
  color: var(--mycol);
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 769px) {
  .services__catch {
    font-size: 1.8rem;
    margin-bottom: 45px;
  }
}

.services__lead {
  margin-bottom: 30px;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media print, screen and (min-width: 769px) {
  .services__lead {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 768px) {
  .services__pict01 {
    margin-bottom: 32px;
  }
}
@media print, screen and (min-width: 769px) {
  .services__pict01 {
    position: absolute;
    top: 0;
    width: 52%;
    left: 54%;
  }
}

@media only screen and (max-width: 768px) {
  .services__pict02 {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 44px;
    margin-top: 44px;
  }
}
@media print, screen and (min-width: 769px) {
  .services__pict02 {
    position: absolute;
    left: 54%;
    top: 38vw;
    width: 36%;
  }
}
@media (min-width: 1280px) {
  .services__pict02 {
    top: 500px;
  }
}

/**
  pict02 イレギュラーレイアウト
 */
.services__pict02.--eu {
  width: 100%;
}
@media print, screen and (min-width: 769px) {
  .services__pict02.--eu {
    width: 50%;
  }
}

@media print, screen and (min-width: 769px) {
  .services__pict03 {
    position: absolute;
    width: 52%;
    left: 54%;
    top: 65.6vw;
  }
}
@media (min-width: 1280px) {
  .services__pict03 {
    top: 865px;
  }
}

.services-block {
  position: relative;
  margin-bottom: 30px;
}
.services-block::before, .services-block::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 19px;
  background-repeat: no-repeat;
  background-size: contain;
}
.services-block::before {
  top: 0;
  left: 0;
  background-image: url(../img/frame_tl_other.svg);
}
.services-block::after {
  top: 0;
  right: 0;
  background-image: url(../img/frame_tr_other.svg);
}
.services-block .block-inner {
  padding: 20px;
}
.services-block .block-inner::before, .services-block .block-inner::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 19px;
  background-repeat: no-repeat;
  background-size: contain;
}
.services-block .block-inner::before {
  bottom: 0;
  left: 0;
  background-image: url(../img/frame_bl_other.svg);
}
.services-block .block-inner::after {
  bottom: 0;
  right: 0;
  background-image: url(../img/frame_br_other.svg);
}
@media print, screen and (min-width: 769px) {
  .services-block {
    margin-bottom: 40px;
  }
  .services-block::before, .services-block::after {
    width: 25px;
    height: 24px;
  }
  .services-block .block-inner {
    padding: 32px;
  }
  .services-block .block-inner::before, .services-block .block-inner::after {
    width: 25px;
    height: 24px;
  }
}

.services-block--iryou::before {
  background-image: url(../img/frame_tl_iryou.svg);
}
.services-block--iryou::after {
  background-image: url(../img/frame_tr_iryou.svg);
}
.services-block--iryou .block-inner::before {
  background-image: url(../img/frame_bl_iryou.svg);
}
.services-block--iryou .block-inner::after {
  background-image: url(../img/frame_br_iryou.svg);
}

.services-block--syuurou::before {
  background-image: url(../img/frame_tl_syuurou.svg);
}
.services-block--syuurou::after {
  background-image: url(../img/frame_tr_syuurou.svg);
}
.services-block--syuurou .block-inner::before {
  background-image: url(../img/frame_bl_syuurou.svg);
}
.services-block--syuurou .block-inner::after {
  background-image: url(../img/frame_br_syuurou.svg);
}

.services-block--insyoku::before {
  background-image: url(../img/frame_tl_insyoku.svg);
}
.services-block--insyoku::after {
  background-image: url(../img/frame_tr_insyoku.svg);
}
.services-block--insyoku .block-inner::before {
  background-image: url(../img/frame_bl_insyoku.svg);
}
.services-block--insyoku .block-inner::after {
  background-image: url(../img/frame_br_insyoku.svg);
}

.services-block__heading {
  color: var(--mycol2);
  margin-bottom: 15px;
}
.services-block__heading .heading-en {
  font-family: century-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.8rem;
  margin-right: 15px;
}
.services-block__heading .heading-jp {
  font-weight: bold;
  font-size: 1.05rem;
}
@media print, screen and (min-width: 769px) {
  .services-block__heading {
    margin-bottom: 20px;
  }
  .services-block__heading .heading-en {
    font-size: 2.4rem;
  }
  .services-block__heading .heading-jp {
    font-size: 1.4rem;
  }
}

.services__list > li {
  padding-left: 0.5em;
  text-indent: -0.5em;
}

/****************
  スタッフ紹介
 */
.service-staff {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media print, screen and (min-width: 769px) {
  .service-staff {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.service-staff__balloon {
  border: 2px solid #000;
  border: 2px solid var(--mycol);
  margin-bottom: 50px;
  font-size: 1.05rem;
  font-weight: bold;
  text-align: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.75;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  z-index: 2;
}
.service-staff__balloon::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  transform: rotate(-45deg);
  height: 2px;
  transform-origin: 50% 50%;
  background-color: var(--mycol);
}
@media only screen and (max-width: 768px) {
  .service-staff__balloon::after {
    width: 70vw;
    transform: rotate(-45deg) translateX(10vw);
  }
}
@media print, screen and (min-width: 769px) {
  .service-staff__balloon {
    font-size: 1.4rem;
    width: 150px;
    height: 150px;
    margin-bottom: 60px;
  }
  .service-staff__balloon::after {
    width: 100%;
    max-width: 1400px;
  }
}
@media (min-width: 769px) and (max-width: 1180px) {
  .service-staff__balloon::after {
    width: 160%;
    transform: rotate(-60deg);
  }
}

.service-staff__heading {
  font-family: century-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: var(--mycol);
  font-size: 1.35rem;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 769px) {
  .service-staff__heading {
    transform-origin: 0 100%;
    left: 12px;
    font-size: 1.8rem;
    transform: rotate(90deg);
    position: absolute;
    z-index: 30;
  }
}

.service-staff-main {
  position: relative;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 769px) {
  .service-staff-main {
    margin-bottom: 40px;
  }
}

.service-staff-main-content {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .service-staff-main-content {
    margin-top: -12vw;
  }
}
@media print, screen and (min-width: 769px) {
  .service-staff-main-content {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 12%;
  }
}

.service-staff-main__name {
  margin-bottom: 25px;
}
.service-staff-main__name .name-en {
  font-family: century-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3.6rem;
  letter-spacing: 0.12em;
  display: inline-block;
  line-height: 1.2;
  background-color: #fff;
  margin-bottom: 10px;
}
.service-staff-main__name .name-jp {
  display: inline-block;
  line-height: 0.8;
  font-size: 1.05rem;
  background-color: #fff;
  font-weight: bold;
}
@media print, screen and (min-width: 769px) {
  .service-staff-main__name {
    margin-bottom: 35px;
  }
  .service-staff-main__name .name-en {
    margin-bottom: 10px;
    font-size: 4.9rem;
    line-height: 0.7;
  }
  .service-staff-main__name .name-jp {
    font-size: 1.4rem;
  }
}

.service-staff-main__info {
  position: relative;
}
.service-staff-main__info .info-role {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0.2em 0;
  background-color: #fff;
}
.service-staff-main__info .info-role::before {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #000;
  left: -16px;
  top: 0;
}
.service-staff-main__info .info-text {
  display: inline;
  background-color: #fff;
  line-height: 2;
  font-weight: bold;
  font-size: 1.2rem;
}
@media only screen and (max-width: 768px) {
  .service-staff-main__info .info-role {
    padding-left: 12px;
    margin-bottom: 7px;
  }
  .service-staff-main__info .info-role::before {
    left: 0;
  }
}
@media print, screen and (min-width: 769px) {
  .service-staff-main__info {
    padding-left: 16px;
  }
  .service-staff-main__info .info-role {
    margin-bottom: 16px;
    font-size: 1.6rem;
  }
  .service-staff-main__info .info-text {
    font-size: 1.4rem;
  }
}

/****************
  下コンテナ
 */
.service-staff-container {
  margin-bottom: 30px;
}
@media print, screen and (min-width: 769px) {
  .service-staff-container {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    max-width: 980px;
    display: flex;
    justify-content: space-between;
  }
}

/****************
  タイムスケジュール
 */
@media only screen and (max-width: 768px) {
  .service-staff-ts {
    margin-bottom: 60px;
  }
}
@media print, screen and (min-width: 769px) {
  .service-staff-ts {
    width: 45%;
    max-width: 470px;
  }
}

.service-staff-ts__heading {
  font-family: century-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 769px) {
  .service-staff-ts__heading {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
}

.service-staff-ts-list {
  position: relative;
  padding-top: 20px;
}
.service-staff-ts-list::after {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #000;
  left: calc(50% - 1px);
  z-index: 0;
  top: 0;
}

.service-staff-ts-list__item {
  position: relative;
  z-index: 2;
  width: 50%;
  margin-left: 50%;
  padding-left: 13%;
}
.service-staff-ts-list__item .item-heading {
  font-weight: bold;
  margin-bottom: 6px;
  line-height: 1.3;
  font-size: 1.2rem;
}
.service-staff-ts-list__item .item-heading > span {
  font-family: century-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  display: inline-block;
  margin-right: 0.4em;
}
.service-staff-ts-list__item .item-text {
  line-height: 1.75;
  font-weight: 400;
  font-size: 1.2rem;
}
.service-staff-ts-list__item::before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--mycol);
  border-radius: 50%;
  top: 2px;
  left: -5px;
}
.service-staff-ts-list__item::after {
  content: "";
  display: block;
  position: absolute;
  width: 20%;
  height: 2px;
  background-color: var(--mycol);
  top: 6px;
  left: 0;
}
.service-staff-ts-list__item:nth-child(2n) {
  margin-left: auto;
  margin-right: 50%;
  padding-left: 3%;
  padding-right: 10%;
}
@media only screen and (max-width: 768px) {
  .service-staff-ts-list__item:nth-child(2n) {
    padding-left: 0;
  }
}
.service-staff-ts-list__item:nth-child(2n)::before {
  left: auto;
  right: -5px;
}
.service-staff-ts-list__item:nth-child(2n)::after {
  left: auto;
  right: 0;
}
.service-staff-ts-list__item:nth-child(2n):last-of-type {
  background-color: #fff;
  width: calc(50% + 1px);
}
.service-staff-ts-list__item:nth-child(2n):last-of-type::before, .service-staff-ts-list__item:nth-child(2n):last-of-type::after {
  transform: translateX(-1px) translateY(-2px);
}
.service-staff-ts-list__item:nth-child(2n):last-of-type * {
  transform: translateY(-2px);
}
.service-staff-ts-list__item:nth-child(2n+1):last-of-type {
  background-color: #fff;
  width: calc(50% - 1px);
  transform: translateX(-1px);
}
.service-staff-ts-list__item:nth-child(2n+1):last-of-type::before, .service-staff-ts-list__item:nth-child(2n+1):last-of-type::after {
  transform: translateX(1px) translateY(-2px);
}
.service-staff-ts-list__item:nth-child(2n+1):last-of-type * {
  transform: translateY(2px);
}
@media print, screen and (min-width: 769px) {
  .service-staff-ts-list__item {
    font-size: 1.4rem;
  }
  .service-staff-ts-list__item .item-heading {
    margin-bottom: 10px;
  }
  .service-staff-ts-list__item .item-text {
    font-size: 1.4rem;
  }
  .service-staff-ts-list__item::before {
    width: 12px;
    height: 12px;
    left: -6px;
  }
  .service-staff-ts-list__item::after {
    top: 7px;
  }
  .service-staff-ts-list__item:nth-child(2n)::before {
    right: -6px;
  }
}

/****************
  エピソード
 */
@media only screen and (max-width: 768px) {
  .service-staff-ep {
    margin-bottom: 40px;
  }
}
@media print, screen and (min-width: 769px) {
  .service-staff-ep {
    width: 45%;
    margin-top: -15vw;
    max-width: 470px;
    top: 2px;
    left: -6px;
  }
}
@media (min-width: 1280px) {
  .service-staff-ep {
    margin-top: -210px;
  }
}

.service-staff-ep__item {
  position: relative;
  border: 2px solid #000;
  border-top: none;
  border-radius: 0 0 6px 6px;
  padding: 5px 20px 15px;
  width: 88%;
  margin-left: 12%;
  margin-bottom: 30px;
  background-color: #fff;
}
.service-staff-ep__item::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  width: calc(100% + 3px);
  height: 10px;
  left: -1px;
  top: -10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  border-radius: 0 6px 0 0;
}
.service-staff-ep__item .item-word {
  margin-bottom: 10px;
}
.service-staff-ep__item .item-text {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-ideograph;
}
.service-staff-ep__item .item-heading {
  margin-bottom: 0;
  white-space: nowrap;
}
.service-staff-ep__item .item-heading > span:first-child {
  font-family: century-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.4rem;
  display: inline-block;
  margin-right: 0.4em;
}
.service-staff-ep__item .item-heading > span:nth-child(2) {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .service-staff-ep__item .item-word {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
  .service-staff-ep__item:nth-child(2n) {
    margin-left: 0;
  }
}
@media print, screen and (min-width: 769px) {
  .service-staff-ep__item {
    width: 72%;
    margin-left: 17%;
    border: 4px solid #000;
    border-top: none;
    padding: 5px 30px 15px;
    margin-bottom: 42px;
  }
  .service-staff-ep__item .item-text {
    font-size: 1.4rem;
  }
  .service-staff-ep__item .item-heading {
    margin-bottom: 0;
  }
  .service-staff-ep__item .item-heading > span:first-child {
    font-size: 1.8rem;
  }
  .service-staff-ep__item .item-heading > span:nth-child(2) {
    font-size: 1.4rem;
  }
  .service-staff-ep__item:nth-child(2n) {
    margin-left: 4%;
  }
  .service-staff-ep__item::before {
    width: calc(100% + 6px);
    height: 12px;
    left: -2px;
    top: -12px;
    border-top: 4px solid #000;
    border-right: 4px solid #000;
    border-radius: 0 6px 0 0;
  }
}

.service-staff__face .face-text {
  position: relative;
  font-size: 1.2rem;
  font-weight: bold;
  border: 2px solid #000;
  padding: 12px 30px;
  border-radius: 40px;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .service-staff__face {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  .service-staff__face .face-pict {
    width: 113px;
  }
  .service-staff__face .face-text {
    font-size: 1.2rem;
    padding: 8px 20px;
    margin-bottom: 25px;
    border: 1px solid #000;
  }
  .service-staff__face .face-text::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -5px;
    left: calc(50% - 4px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    border-color: #000000 transparent transparent transparent;
  }
  .service-staff__face .face-text::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 3;
    bottom: -4px;
    left: calc(50% - 4px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    border-color: #fff transparent transparent transparent;
  }
}
@media print, screen and (min-width: 769px) {
  .service-staff__face {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .service-staff__face .face-pict {
    width: 150px;
    height: 150px;
    margin-right: 20px;
  }
  .service-staff__face .face-text {
    font-size: 1.6rem;
  }
  .service-staff__face .face-text::before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 8px 0;
    border-color: transparent #000 transparent transparent;
    top: calc(50% - 9px);
    left: -8px;
  }
  .service-staff__face .face-text::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 8px 0;
    border-color: transparent #fff transparent transparent;
    left: -5px;
    top: calc(50% - 9px);
  }
}

/*******************
  その他事業
 */
@media print, screen and (min-width: 769px) {
  .services-other-list {
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    width: 980px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.services-other-list__item {
  border-bottom: 2px solid #999;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.services-other-list__item .item-shoulder {
  font-size: 1.1rem;
  font-weight: bold;
  color: #999;
  margin-bottom: 5px;
}
.services-other-list__item .item-heading {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.services-other-list__item .item-content p {
  font-size: 1.1rem;
  line-height: 1.75;
}
@media print, screen and (min-width: 769px) {
  .services-other-list__item {
    width: 47%;
    padding-bottom: 40px;
    margin-bottom: 60px;
  }
  .services-other-list__item .item-shoulder {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
  .services-other-list__item .item-heading {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  .services-other-list__item .item-content p {
    font-size: 1.4rem;
  }
}

.about-container {
  position: relative;
  background-color: #fff;
  margin-bottom: 20px;
  margin-top: 40px;
}
@media print, screen and (min-width: 769px) {
  .about-container {
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    margin-bottom: 80px;
    max-width: 980px;
  }
}

.about-container-inner {
  padding: 35px 20px;
}
@media print, screen and (min-width: 769px) {
  .about-container-inner {
    padding: 40px 80px 80px;
  }
}

.about-container::before, .about-container::after,
.about-container-inner::before,
.about-container-inner::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 19px;
  background-position: left top;
  background-size: contain;
  background-repeat: no-repeat;
}
@media print, screen and (min-width: 769px) {
  .about-container::before, .about-container::after,
  .about-container-inner::before,
  .about-container-inner::after {
    content: "";
    display: block;
    position: absolute;
    width: 25px;
    height: 24px;
  }
}

.about-container::before {
  background-image: url(../img/frame_tl_black.svg);
  top: 0;
  left: 0;
}

.about-container::after {
  background-image: url(../img/frame_tr_black.svg);
  top: 0;
  right: 0;
}

.about-container-inner::before {
  background-image: url(../img/frame_bl_black.svg);
  bottom: 0;
  left: 0;
}

.about-container-inner::after {
  background-image: url(../img/frame_br_black.svg);
  bottom: 0;
  right: 0;
}

.about__text > p:not(:last-child) {
  margin-bottom: 20px;
}
@media print, screen and (min-width: 769px) {
  .about__text > p:not(:last-child) {
    margin-bottom: 30px;
  }
}

.about-philosophy-head {
  background-color: #e3f0fb;
  padding: 40px 0;
}
@media print, screen and (min-width: 769px) {
  .about-philosophy-head {
    padding: 0 20px;
  }
}

@media print, screen and (min-width: 769px) {
  .about-philosophy-head-container {
    display: flex;
    justify-content: space-between;
    padding: 60px 20px 60px 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 980px;
  }
}

.about-philosophy__heading {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 2.3rem;
}
.about-philosophy__heading::after {
  content: "";
  display: block;
  position: absolute;
  position: relative;
  width: 80px;
  height: 1px;
  background-color: var(--col-black);
  margin-left: 10px;
}
@media print, screen and (min-width: 769px) {
  .about-philosophy__heading {
    font-size: 2.7rem;
  }
}

@media only screen and (max-width: 768px) {
  .about-philosophy-head__copy {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media print, screen and (min-width: 769px) {
  .about-philosophy-head__copy {
    width: 522px;
  }
}
@media (min-width: 769px) and (max-width: 1000px) {
  .about-philosophy-head__copy {
    width: 450px;
  }
}

.about-philosophy-body {
  background-color: #d1e7f8;
  padding: 40px 0;
}
@media print, screen and (min-width: 769px) {
  .about-philosophy-body {
    padding: 40px 0;
  }
}

.about-philosophy__text > p {
  line-height: 2;
}
@media print, screen and (min-width: 769px) {
  .about-philosophy__text {
    padding: 40px 0 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 980px;
  }
  .about-philosophy__text > p {
    font-size: 2rem;
  }
  .about-philosophy__text > p:not(:last-child) {
    margin-bottom: 30px;
  }
}

.about-outline {
  background-color: #dddede;
  padding: 40px 25px;
}
@media print, screen and (min-width: 769px) {
  .about-outline {
    padding: 60px 0;
  }
}

@media print, screen and (min-width: 769px) {
  .about-outline-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 980px;
  }
}

.about-container.--outline {
  margin: 20px 0 0;
}
@media print, screen and (min-width: 769px) {
  .about-container.--outline .about-container-inner {
    padding: 60px 80px;
  }
}

@media only screen and (max-width: 768px) {
  .about-outline__list > dt, .about-outline__list > dd {
    line-height: 1.75;
    font-size: 1.4rem;
  }
  .about-outline__list > dd {
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 769px) {
  .about-outline__list {
    display: flex;
    flex-wrap: wrap;
  }
  .about-outline__list > dt, .about-outline__list > dd {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .about-outline__list > dt {
    width: 170px;
  }
  .about-outline__list > dd {
    width: calc(100% - 170px);
  }
}
