/*!
Theme Name: Hayashida
Theme URI: https://www.hayashida-hoon.com/
Author: Hayashida
Author URI: https://www.hayashida-hoon.com/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: hayashida
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Hayashida is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/* Custom properties
-------------------- */
:root {
  --textColor: #222;
  --contentWidth: 90%;
  --contentWidth-small: 832px;
  --contentWidth-large: 1280px;
  --gutters-s: 24px;
  --gutters-m: 48px;
  --gutters-l: 64px;
  --gutters-xl: 80px;
  --gutters-lg-s: 2.3vw;
  --gutters-lg-m: 4.6vw;
  --gutters-lg-l: 6.9vw;
  --gutters-lg-xl: 11.4vw;
  --gutters-xxlg-s: 32px;
  --gutters-xxlg-m: 64px;
  --gutters-xxlg-l: 96px;
  --gutters-xxlg-xl: 160px;
}

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

body {
  margin: 0;
  -webkit-text-size-adjust: 100%;
  line-height: 1;
  text-align: left;
}

h1, h2, h3, h4, h5, h6, p, dl, dd, ol, ul, li {
  margin: 0;
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1rem;
}

ol, ul {
  list-style: none;
  padding: 0;
}

button,
input[type=button] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* Set
-------------------- */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #FFF;
  color: var(--textColor);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  text-autospace: normal;
}

a {
  color: #0033CC;
  -webkit-tap-highlight-color: transparent;
}
@media print, (min-width: 992px) {
  a {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  a:hover {
    opacity: 0.6;
  }
}

@media print, (min-width: 992px) {
  a[href^="tel:"] {
    color: var(--textColor);
    pointer-events: none;
    text-decoration: none;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* header
-------------------- */
.header {
  position: relative;
  height: 60px;
  background: #EEE;
}
@media print, (min-width: 576px) {
  .header {
    height: 96px;
  }
}

.headerLogo {
  position: absolute;
  z-index: 91;
  top: 0;
  left: 3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(87% - 60px);
  max-width: 260px;
  height: 64px;
}
.headerLogo img {
  width: 100%;
}
@media print, (min-width: 576px) {
  .headerLogo {
    max-width: 384px;
    height: 96px;
  }
}
@media print, (min-width: 992px) {
  .headerLogo {
    width: calc(18% + 145px);
    max-width: 384px;
  }
  .headerLogo a:hover {
    opacity: 1;
  }
}
@media print, (min-width: 1200px) {
  .headerLogo {
    left: 2%;
  }
}

.headerMenu__btn {
  position: fixed;
  z-index: 103;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
}
.headerMenu__btn button {
  overflow: hidden;
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border: none;
  background: #95dbc5;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  outline: none;
}
.headerMenu__btn span {
  display: inline-block;
  position: absolute;
  left: 19px;
  width: 22px;
  height: 2px;
  background-color: #000;
  border-radius: 1px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.headerMenu__btn span:nth-of-type(1) {
  top: 22px;
}
.headerMenu__btn span:nth-of-type(2) {
  top: 29px;
}
.headerMenu__btn span:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #222;
  border-radius: 1px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.headerMenu__btn span:nth-of-type(3) {
  bottom: 22px;
}
.toggled .headerMenu__btn span:nth-of-type(1) {
  -webkit-transform: translateY(8px) scale(0);
          transform: translateY(8px) scale(0);
}
.toggled .headerMenu__btn span:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.toggled .headerMenu__btn span:nth-of-type(2)::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.toggled .headerMenu__btn span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) scale(0);
          transform: translateY(-8px) scale(0);
}
.headerMenu__container {
  position: fixed;
  z-index: 102;
  top: 0;
  right: calc(-100% - 10px);
  width: 100%;
  height: 100%;
  background: #EEE;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.headerMenu__container ul {
  border-top: 1px solid #222;
}
.headerMenu__container li {
  border-bottom: 1px solid #222;
  font-weight: bold;
}
.headerMenu__container a {
  position: relative;
  display: block;
  padding: 1.5em 0;
  color: var(--textColor);
  text-decoration: none;
}
.headerMenu__container .menu-item-has-children {
  position: relative;
}
.headerMenu__container .menu-item-has-children::after {
  content: "+";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 60px;
  height: 4em;
  line-height: 4;
  text-align: center;
}
.headerMenu__container .menu-item-has-children.focus::after {
  content: "-";
}
.headerMenu__container .menu-item-has-children ul {
  overflow: hidden;
  height: 0;
  border: none;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.headerMenu__container .menu-item-has-children.focus ul {
  height: auto;
  padding-bottom: 15px;
  opacity: 1;
}
.headerMenu__container .menu-item-has-children li {
  border: none;
  font-weight: normal;
  font-size: 0.875rem;
}
.headerMenu__container .menu-item-has-children li a {
  padding: 1em 0 1em 2em;
}
.toggled .headerMenu__container {
  right: 0;
}
.headerMenu__scroll {
  overflow-y: auto;
  height: 100%;
}
.headerMenu__scroll > div {
  padding: 100px 8% 50px;
}
@media print, (min-width: 576px) {
  .headerMenu__btn {
    width: 96px;
    height: 96px;
  }
  .headerMenu__btn span {
    left: 32px;
    width: 32px;
  }
  .headerMenu__btn span:nth-of-type(1) {
    top: 37px;
  }
  .headerMenu__btn span:nth-of-type(2) {
    top: 47px;
  }
  .headerMenu__btn span:nth-of-type(3) {
    bottom: 37px;
  }
  .headerMenu__container li {
    font-size: 1.25rem;
  }
  .headerMenu__container .menu-item-has-children li {
    font-size: 1rem;
  }
  .headerMenu__scroll > div {
    padding: 150px 96px 50px;
  }
}
@media print, (min-width: 992px) {
  .headerMenu__btn button {
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .headerMenu__btn:hover button {
    background-color: #bfe9dc;
  }
  .headerMenu__container {
    padding: 96px 0 0 45%;
  }
  .headerMenu__container::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: url(images/menu-bg.webp) no-repeat 50% 50%/cover;
  }
  .headerMenu__container .menu {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto auto auto 1fr;
    grid-template-areas: "menu1 menu1" "menu2 menu4" "menu3 menu5" "menu3 menu6";
    border: none;
  }
  .headerMenu__container .menu > li:nth-child(1) {
    grid-area: menu1;
    margin-bottom: 40px;
  }
  .headerMenu__container .menu > li:nth-child(2) {
    grid-area: menu2;
    margin-bottom: 40px;
  }
  .headerMenu__container .menu > li:nth-child(3) {
    grid-area: menu3;
    margin-bottom: 40px;
  }
  .headerMenu__container .menu > li:nth-child(4) {
    grid-area: menu4;
  }
  .headerMenu__container .menu > li:nth-child(5) {
    grid-area: menu5;
    margin-bottom: 20px;
  }
  .headerMenu__container .menu > li:nth-child(6) {
    grid-area: menu6;
  }
  .headerMenu__container li {
    border: none;
  }
  .headerMenu__container a {
    display: inline-block;
    position: relative;
    padding: 0.5em 0;
  }
  .headerMenu__container a::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #95dbc5;
    -webkit-transition: scale 0.3s ease;
    transition: scale 0.3s ease;
    -webkit-transform-origin: right top;
            transform-origin: right top;
    scale: 0 1;
  }
  .headerMenu__container a:hover {
    opacity: 1;
  }
  .headerMenu__container a:hover::after {
    scale: 1 1;
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  .headerMenu__container .menu-item-has-children::after {
    display: none;
  }
  .headerMenu__container .menu-item-has-children ul {
    height: auto;
    padding: 0.5em 0 0;
    opacity: 1;
    -webkit-transition: none;
    transition: none;
  }
  .headerMenu__container .menu-item-has-children li {
    margin: 1em 0 0 1.5em;
  }
  .headerMenu__container .menu-item-has-children li a {
    padding: 0.5em 0;
  }
  .headerMenu__scroll > div {
    padding: 0 0 50px;
  }
}
@media print, (min-width: 1200px) {
  .headerMenu__container {
    padding-left: 48%;
  }
  .headerMenu__container li {
    font-size: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .headerMenu__container {
    padding-left: 50%;
  }
}

.headerPcMenu {
  display: none;
}
@media print, (min-width: 1200px) {
  .headerPcMenu {
    display: block;
    position: absolute;
    top: 0;
    right: 96px;
  }
  .headerPcMenu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .headerPcMenu li {
    margin-right: 1.5em;
    padding-top: 24px;
  }
  .headerPcMenu a {
    display: block;
    position: relative;
    height: 48px;
    color: var(--textColor);
    text-decoration: none;
    line-height: 48px;
  }
  .headerPcMenu a::after {
    content: "";
    display: block;
    position: absolute;
    bottom: calc(50% - 1em);
    left: 0;
    width: 100%;
    height: 2px;
    background: #95dbc5;
    -webkit-transition: scale 0.3s ease;
    transition: scale 0.3s ease;
    -webkit-transform-origin: right top;
            transform-origin: right top;
    scale: 0 1;
  }
  .headerPcMenu a:hover {
    opacity: 1;
  }
  .headerPcMenu a:hover::after {
    scale: 1 1;
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  .headerPcMenu li:last-child a {
    padding: 0 2em;
    border-radius: 24px;
    background: #222;
    color: #FFF;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .headerPcMenu li:last-child a::after {
    display: none;
  }
  .headerPcMenu li:last-child a:hover {
    color: #000;
    background-color: #95dbc5;
  }
}
@media print, (min-width: 1400px) {
  .headerPcMenu {
    right: 105px;
    font-size: 1.125rem;
  }
  .headerPcMenu li {
    margin-right: 2em;
  }
  .headerPcMenu li:last-child a {
    padding: 0 2.5em;
  }
}

/* footer
-------------------- */
.footer {
  padding: 40px 0 100px;
  background: #f6f6f6;
}

@media print, (min-width: 992px) {
  .footerContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footerInfo {
  font-size: 0.875rem;
  line-height: 1.66;
}
.footerInfo__name img {
  width: 220px;
}
.footerInfo__address dt {
  margin-top: 20px;
  font-weight: bold;
}
.footerInfo__address dd {
  margin-top: 5px;
  font-size: 0.75rem;
}
.footerInfo__address a {
  color: var(--textColor);
}
.footerInfo__tel {
  text-decoration: none;
}
@media print, (min-width: 576px) {
  .footerInfo {
    font-size: 1rem;
  }
  .footerInfo__name img {
    width: 300px;
  }
  .footerInfo__address dd {
    font-size: 0.875rem;
  }
}
@media print, (min-width: 992px) {
  .footerInfo {
    width: 47.5%;
    padding-top: 20px;
  }
  .footerInfo__address dt {
    margin-top: 30px;
  }
}

.footerMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0 0;
  font-size: 0.875rem;
  line-height: 1.66;
}
.footerMenu > div {
  width: 47.37%;
}
.footerMenu ul ul {
  padding: 0 0 0 1em;
}
.footerMenu li {
  margin-top: 10px;
}
.footerMenu a {
  color: var(--textColor);
  text-decoration: none;
}
@media print, (min-width: 576px) {
  .footerMenu {
    font-size: 1rem;
  }
  .footerMenu ul ul {
    padding-left: 1.5em;
    font-size: 0.875rem;
  }
  .footerMenu li {
    margin-top: 20px;
  }
  .footerMenu ul ul li {
    margin-top: 15px;
  }
}
@media print, (min-width: 992px) {
  .footerMenu {
    width: 47.5%;
    padding-top: 0;
  }
  .footerMenu li {
    margin-top: 24px;
  }
  .footerMenu ul ul li {
    margin-top: 18px;
  }
}

.footerBottom {
  margin: 40px 0 0;
  font-size: 0.75rem;
  line-height: 1.3;
}
.footerBottom__link li {
  display: inline-block;
}
.footerBottom__link li:not(:first-child) {
  margin-left: 2em;
}
.footerBottom__link a {
  display: inline-block;
  color: var(--textColor);
  text-decoration: none;
}
.footerBottom__copyright {
  margin-top: 20px;
}
@media print, (min-width: 576px) {
  .footerBottom {
    margin: 50px 0 0;
    font-size: 0.875rem;
  }
}
@media print, (min-width: 992px) {
  .footerBottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footerBottom__link {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
  .footerBottom__copyright {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    margin-top: 0;
    text-align: right;
  }
}

/* Layout 2column
-------------------- */
.layout2column {
  margin-top: var(--gutters-xl);
  margin-bottom: var(--gutters-xl);
}
.layout2column__main {
  margin-bottom: var(--gutters-xl);
}
@media print, (min-width: 992px) {
  .layout2column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: var(--contentWidth);
    max-width: var(--contentWidth-large);
    margin: var(--gutters-lg-xl) auto;
  }
  .layout2column__main {
    width: 73.75%;
    margin-bottom: 0;
  }
  .layout2column__side {
    position: relative;
    width: 21.25%;
  }
  .layout2column .container {
    width: 100%;
  }
}
@media print, (min-width: 1400px) {
  .layout2column {
    margin: var(--gutters-xxlg-xl) auto;
  }
}

/* side
-------------------- */
.snavi {
  margin: 0 5%;
}
aside:not(:last-child) .snavi {
  margin-bottom: 30px;
}
.snavi a {
  text-decoration: none;
}
.snavi__title a {
  display: block;
  position: relative;
  padding: 20px 30px 20px 15px;
  background: #222;
  color: #FFF;
  font-size: 1.125rem;
  line-height: 1.3;
}
.snavi__list {
  padding: 5px 10px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.snavi__list li:not(:first-child) {
  border-top: 1px solid #999999;
  line-height: 1.3;
}
.snavi__list a {
  display: block;
  position: relative;
  padding: 16px 20px 16px 0;
  color: var(--textColor);
}
.snavi__list a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--textColor);
  border-right: 1px solid var(--textColor);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  vertical-align: middle;
  position: absolute;
  top: calc(50% - 3px);
  right: 5px;
}
.snavi__sub {
  border-top: none !important;
  border-bottom: 1px solid #FFF;
  background: #EEE;
}
.snavi__sub a {
  padding: 14px 30px 14px 16px;
}
.snavi__sub a::after {
  right: 15px;
}
@media print, (min-width: 992px) {
  .snavi {
    margin: 0;
  }
  .snavi__sub a {
    padding: 14px 5px 14px 30px;
  }
  .snavi__sub a::after {
    left: 12px;
  }
}

/* topimg
-------------------- */
.topimg__img {
  position: relative;
  width: 100%;
  padding-top: calc(50% + 60px);
  background: #EEE;
}
.topimg__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.topimg__txt {
  position: relative;
  z-index: 2;
  margin: calc(-60px - 7%) 15% 0 0;
  padding: 5% 5% 0 5%;
  background: #FFF;
}
.topimg__title {
  margin-bottom: -0.15em;
  font-size: 1.75rem;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.3;
}
@media print, (min-width: 576px) {
  .topimg__img {
    padding-top: calc(50% + 96px);
  }
  .topimg__title {
    padding-top: 0.25em;
    font-size: 2.25rem;
  }
}
@media print, (min-width: 992px) {
  .topimg__txt {
    min-height: auto;
    margin: -165px 30% 0 0;
    padding: 64px 32px 0 5%;
  }
  .topimg__img {
    overflow: hidden;
    height: 416px;
    padding: 0;
  }
  .topimg__img img {
    width: 100%;
    height: calc(100% - 96px);
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media print, (min-width: 1200px) {
  .topimg__title {
    font-size: 3rem;
  }
}
@media print, (min-width: 1400px) {
  .topimg__txt {
    margin: -165px 50% 0 0;
    padding: 64px 32px 0 calc(50% - 640px);
  }
}

/* breadcrumb
-------------------- */
.breadcrumb {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 10px;
  padding: 0.5em;
  background: #95dbc5;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: left;
}
.breadcrumb li {
  display: inline;
}
.breadcrumb li:not(:first-child)::before {
  content: "/";
  display: inline-block;
  margin: 0 0.5em;
  vertical-align: middle;
}
.breadcrumb a {
  color: var(--textColor);
  text-decoration: none;
}
@media print, (min-width: 576px) {
  .breadcrumb {
    font-size: 0.875rem;
    padding: 0.5em 0.75em;
  }
}

/* bottomContact
-------------------- */
.bottomContact {
  padding: 60px 0;
  background: url(images/bottomcontact-bg.webp) no-repeat 50% 50%/cover;
}
.bottomContact_recruit {
  background-image: url(images/bottomrecruit-bg.webp);
}
.bottomContact__container {
  width: 90%;
  max-width: var(--contentWidth-small);
  margin: 0 auto;
  padding: 5%;
  background: #FFF;
}
.bottomContact__txt {
  font-size: 0.875rem;
  line-height: 1.66;
  text-align: center;
}
.bottomContact__tel {
  margin-top: 10px;
}
.bottomContact__tel a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  background: #f6f6f6;
  color: var(--textColor);
  text-decoration: none;
}
.bottomContact__telnum {
  display: inline-block;
  padding-bottom: 5px;
  font-size: 1.5rem;
}
.bottomContact__telicon {
  width: 24px;
  height: 24px;
  margin: 0 5px 3px 0;
  vertical-align: middle;
}
.bottomContact__telnote {
  display: inline-block;
  font-size: 0.75rem;
}
.bottomContact__mail {
  margin-top: 10px;
  font-size: 1.25rem;
}
.bottomContact__mail a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 80px;
  background: #95dbc5;
  border: 2px solid #95dbc5;
  color: var(--textColor);
  text-decoration: none;
}
.bottomContact__mail a::after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  right: 15px;
  width: 16px;
  height: 16px;
  background: url(images/i-arrow_thin.svg) no-repeat 0 0/100% 100%;
}
@media print, (min-width: 576px) {
  .bottomContact {
    padding: 80px 0;
  }
  .bottomContact__txt {
    font-size: 1rem;
  }
  .bottomContact__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 20px;
  }
  .bottomContact__list li {
    width: 49%;
  }
}
@media print, (min-width: 992px) {
  .bottomContact {
    padding: calc(5.6vw + 80px) 0;
  }
  .bottomContact__txt br {
    display: none;
  }
  .bottomContact__tel a {
    height: 96px;
  }
  .bottomContact__telnum {
    padding-bottom: 10px;
    font-size: 1.875rem;
  }
  .bottomContact__telnote {
    font-size: 0.875rem;
  }
  .bottomContact__mail {
    font-size: 1.5rem;
  }
  .bottomContact__mail a {
    height: 96px;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .bottomContact__mail a:hover {
    opacity: 1;
    background-color: #FFF;
  }
  .bottomContact__mail a::after {
    top: calc(50% - 12px);
    right: 20px;
    width: 24px;
    height: 24px;
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
  }
  .bottomContact__mail a:hover::after {
    right: 10px;
  }
}
@media print, (min-width: 1200px) {
  .bottomContact__container {
    padding: 64px;
  }
}
@media print, (min-width: 1400px) {
  .bottomContact {
    padding: 160px 0;
  }
}

/* Container
-------------------- */
.container {
  width: var(--contentWidth);
  margin-left: auto;
  margin-right: auto;
}
@media print, (min-width: 992px) {
  .container {
    max-width: var(--contentWidth-large);
  }
}

.container-small {
  width: var(--contentWidth);
  margin-left: auto;
  margin-right: auto;
}
@media print, (min-width: 992px) {
  .container-small {
    max-width: var(--contentWidth-small);
  }
}

/* Content
-------------------- */
/* content */
.content {
  font-size: 0.875rem;
}
.content p {
  line-height: 2;
}
.content p:first-child {
  margin-top: -0.4em;
}
.content p:last-child {
  margin-bottom: -0.4em;
}
.content p:not(:first-child) {
  margin-top: 1em;
}
@media print, (min-width: 576px) {
  .content {
    font-size: 1rem;
  }
}

/* grid size
-------------------- */
.rowsize {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: -24px;
}
.rowsize_reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.rowsize .column {
  width: 100%;
  margin-bottom: 24px;
}
.rowsize_mb8 {
  margin-bottom: -8px;
}
.rowsize_mb8 .column {
  margin-bottom: 8px;
}
@media print, (min-width: 576px) {
  .rowsize {
    margin-bottom: -30px;
  }
  .rowsize .column {
    margin-bottom: 30px;
  }
  .rowsize .column_md-1-2 {
    width: 47.5%;
  }
  .rowsize_mb8 {
    margin-bottom: -8px;
  }
  .rowsize_mb8 .column {
    margin-bottom: 8px;
  }
}
@media print, (min-width: 992px) {
  .rowsize {
    margin-bottom: -5%;
  }
  .rowsize:has(.column_lg-1-3) {
    margin-bottom: -3.125%;
  }
  .rowsize .column {
    margin-bottom: 5%;
  }
  .rowsize .column_lg-1-2 {
    width: 47.5%;
  }
  .rowsize .column_lg-1-3 {
    width: 31.25%;
    margin-bottom: 3.125%;
  }
  .rowsize .column_lg-1-3:nth-child(3n+2):last-child {
    margin-right: 34.375%;
  }
  .rowsize .column_lg-2-3 {
    width: 65.625%;
    margin-bottom: 3.125%;
  }
  .rowsize .column_lg-5-12 {
    width: 38.75%;
  }
  .rowsize .column_lg-7-12 {
    width: 56.25%;
  }
  .rowsize_mb8, .rowsize_mb8:has(.column_lg-1-3) {
    margin-bottom: -8px;
  }
  .rowsize_mb8 .column, .rowsize_mb8:has(.column_lg-1-3) .column {
    margin-bottom: 8px;
  }
}
@media print, (min-width: 1400px) {
  .rowsize {
    margin-bottom: -64px;
  }
  .rowsize:has(.column_lg-1-3) {
    margin-bottom: -40px;
  }
  .rowsize .column {
    margin-bottom: 64px;
  }
  .rowsize .column_lg-1-3 {
    margin-bottom: 40px;
  }
  .rowsize_mb8 {
    margin-bottom: -8px;
  }
  .rowsize_mb8 .column {
    margin-bottom: 8px;
  }
}

/* Title
-------------------- */
.title1 {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.3;
  text-align: center;
}
.title1__txt1 {
  margin-bottom: 1em;
  font-size: 0.875rem;
}
.title1__txt2 {
  font-size: 7vw;
  font-family: "Jost", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
  font-weight: 500;
}
@media print, (min-width: 576px) {
  .title1__txt1 {
    font-size: 1rem;
  }
  .title1__txt2 {
    font-size: 2.5rem;
  }
}
@media print, (min-width: 992px) {
  .title1__txt1 {
    margin-bottom: 1.5em;
  }
}

.title2 {
  font-size: 1.375rem;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.5;
  text-align: center;
}
.title2 span {
  position: relative;
  display: inline-block;
  padding: 0 1em;
}
.title2 span::before, .title2 span::after {
  content: "";
  position: absolute;
  top: 0;
  width: 6px;
  height: 100%;
  border-top: 2px solid #95dbc5;
  border-bottom: 2px solid #95dbc5;
}
.title2 span::before {
  left: 0;
  border-left: 2px solid #95dbc5;
}
.title2 span::after {
  right: 0;
  border-right: 2px solid #95dbc5;
}
@media print, (min-width: 576px) {
  .title2 {
    font-size: 1.75rem;
  }
  .title2 span {
    padding: 4px 1.5em;
  }
  .title2 span::before, .title2 span::after {
    width: 8px;
    border-top: 3px solid #95dbc5;
    border-bottom: 3px solid #95dbc5;
  }
  .title2 span::before {
    border-left: 3px solid #95dbc5;
  }
  .title2 span::after {
    border-right: 3px solid #95dbc5;
  }
}
@media print, (min-width: 1200px) {
  .title2 {
    font-size: 2rem;
  }
}

.title3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 24px;
  padding: 10px;
  background: #95dbc5;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.title3__num {
  position: relative;
  width: 40px;
  margin: 2px 10px 0 -5px;
  font-family: "Jost", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  text-align: center;
}
.title3__num::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.15em;
  right: 0;
  width: 1px;
  height: 0.7em;
  background: #222;
}
.title3__txt {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(100% - 50px);
          flex: 1 1 calc(100% - 50px);
}
.title3__main {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}
.title3__sub {
  display: inline-block;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
}
@media print, (min-width: 576px) {
  .title3 {
    margin-bottom: 32px;
    padding: 16px;
  }
  .title3__num {
    width: 64px;
    margin: 0 20px 0 -5px;
    font-size: 2.25rem;
  }
  .title3__txt {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(100% - 84px);
            flex: 1 1 calc(100% - 84px);
  }
  .title3__main {
    font-size: 1.625rem;
  }
  .title3__sub {
    font-size: 1.125rem;
  }
}
@media print, (min-width: 1200px) {
  .title3 {
    margin-bottom: 48px;
    padding: 24px;
  }
  .title3__num {
    width: 80px;
    margin: 0 24px 0 -5px;
    font-size: 3rem;
  }
  .title3__num::after {
    width: 2px;
  }
  .title3__txt {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(100% - 104px);
            flex: 1 1 calc(100% - 104px);
  }
  .title3__main {
    font-size: 2rem;
  }
  .title3__sub {
    font-size: 1.25rem;
  }
}

.title4 {
  position: relative;
  margin-top: -0.2em;
  margin-bottom: 0.75em;
  padding-left: 30px;
  font-size: 1.125rem;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.5;
}
.title4::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(0.75em - 2px);
  left: 0;
  width: 16px;
  height: 3px;
  background: #95dbc5;
}
@media print, (min-width: 576px) {
  .title4 {
    font-size: 1.25rem;
    padding-left: 40px;
  }
  .title4::before {
    width: 24px;
    height: 4px;
  }
}
@media print, (min-width: 1200px) {
  .title4 {
    font-size: 1.5rem;
  }
}

.title5 {
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #222;
  font-size: 1.125rem;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.5;
}
@media print, (min-width: 576px) {
  .title5 {
    font-size: 1.25rem;
  }
}

.title6 {
  padding-bottom: 0.5em;
  border-bottom: 1px dotted #222;
  font-size: 1rem;
  font-weight: bold;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.5;
}
@media print, (min-width: 576px) {
  .title6 {
    font-size: 1.125rem;
  }
}

/* catch1
-------------------- */
.catch1,
.content p.catch1 {
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.5;
}
.catch1:first-child,
.content p.catch1:first-child {
  margin-top: -0.2em;
}
@media print, (min-width: 576px) {
  .catch1,
  .content p.catch1 {
    font-size: 2rem;
  }
}
@media print, (min-width: 1200px) {
  .catch1,
  .content p.catch1 {
    font-size: 2.5rem;
  }
}

/* Link
-------------------- */
/* link-txt */
.link-txt1 {
  display: inline-block;
  position: relative;
  padding: 8px 48px 8px 0;
  color: var(--textColor);
  font-size: 1.25rem;
  text-decoration: none;
  line-height: 32px;
}
.link-txt1::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  right: 0;
  width: 32px;
  height: 32px;
  background: #95dbc5 url(images/i-arrow.svg) no-repeat 50% 50%/12px 12px;
  border-radius: 20px;
}
.link-img1 + .link-txt1 {
  margin-top: 8px;
}
@media print, (min-width: 576px) {
  .link-txt1 {
    padding-right: 60px;
    line-height: 40px;
    font-size: 1.625rem;
  }
  .link-txt1::before {
    width: 40px;
    height: 40px;
  }
  .link-img1 + .link-txt1 {
    margin-top: 12px;
  }
}
@media print, (min-width: 992px) {
  .link-txt1 {
    font-size: 1.5rem;
  }
  .link-txt1_large {
    font-size: 1.625rem;
  }
}
@media print, (min-width: 1200px) {
  .link-txt1_large {
    font-size: 2rem;
  }
  .link-img1 + .link-txt1 {
    margin-top: 16px;
  }
}

/* link-url */
.link-url1 {
  position: relative;
  display: inline-block;
  padding-left: 25px;
}
.link-url1::before, .link-url1::after {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 10px;
  background: #FFF;
  border: 1px solid #222;
}
.link-url1::before {
  top: calc(50% - 8px);
  left: 0;
}
.link-url1::after {
  top: calc(50% - 4px);
  left: 4px;
}

/* link-img */
.link-img1 {
  overflow: hidden;
  display: block;
}
.link-img1 img {
  width: 100%;
}
@media print, (min-width: 992px) {
  .link-img1:hover, a:hover .link-img1 {
    opacity: 1;
  }
  .link-img1 img {
    -webkit-transition: scale 0.3s ease;
    transition: scale 0.3s ease;
  }
  .link-img1 img:hover {
    scale: 1.06;
  }
}

/* link-tel */
.link-tel1 {
  display: inline-block;
  padding: 5px 0 10px;
  font-size: 1.75rem;
  color: var(--textColor);
  text-decoration: none;
}
.link-tel1 svg {
  fill: #95dbc5;
  width: 28px;
  height: 28px;
  margin-right: 6px;
  margin-bottom: 3px;
  vertical-align: middle;
}
@media print, (min-width: 576px) {
  .link-tel1 {
    font-size: 2.5rem;
  }
  .link-tel1 svg {
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }
}

/* image
-------------------- */
.img-full {
  width: 100%;
}

.img-fullmax {
  max-width: 100%;
}

.img-caption {
  display: block;
  margin-top: 12px;
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
}
@media print, (min-width: 576px) {
  .img-caption {
    font-size: 1rem;
  }
}

/* img-cut */
.img-float-left,
.img-float-left img,
.img-float-right,
.img-float-right img {
  width: 100%;
}

.img-float-left2,
.img-float-right2 {
  text-align: center;
}
.img-float-left2 img,
.img-float-right2 img {
  width: 65%;
}

.img-float-left,
.img-float-right,
.img-float-left2,
.img-float-right2 {
  margin-top: 5px;
  margin-bottom: 0.5em;
}

@media print, (min-width: 992px) {
  .img-float-left {
    float: left;
    width: 38.75%;
    margin-right: 5%;
    margin-bottom: 1em;
  }
  .img-float-left2 {
    float: left;
    width: 30%;
    margin-right: 5%;
    margin-bottom: 1em;
  }
  .img-float-right {
    float: right;
    width: 38.75%;
    margin-left: 5%;
    margin-bottom: 1em;
  }
  .img-float-right2 {
    float: right;
    width: 30%;
    margin-left: 5%;
    margin-bottom: 1em;
  }
}
/* List
-------------------- */
/* list */
.list1 {
  list-style-type: disc;
  margin-left: 25px;
  line-height: 1.5;
}
.list1:not(:first-child) {
  margin-top: 16px;
}
.list1 li {
  position: relative;
}
.list1 li:not(:last-child) {
  margin-bottom: 8px;
}
.list1 ul {
  list-style-type: circle;
  margin: 12px 0 15px 20px;
}
.list1 ul ul {
  list-style-type: disc;
}

ol.list1 {
  list-style-type: decimal;
}

/* dl-list */
.dl-list1 {
  border-top: 1px solid #CCC;
  border-left: 1px solid #CCC;
  border-right: 1px solid #CCC;
  background: #FFF;
  font-size: 0.875rem;
  line-height: 1.5;
}
.dl-list1 > dt {
  padding: 10px;
  background: #eee;
  font-weight: bold;
}
.dl-list1 > dd {
  padding: 10px 10px 20px;
  border-bottom: 1px solid #CCC;
}
@media print, (min-width: 576px) {
  .dl-list1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1rem;
  }
  .dl-list1 > dt {
    width: 11em;
    padding: 16px;
    border-bottom: 1px solid #CCC;
    border-right: 1px solid #CCC;
  }
  .dl-list1 > dd {
    width: calc(100% - 11em);
    padding: 16px;
  }
}
@media print, (min-width: 992px) {
  .dl-list1 > dt {
    width: 27%;
    padding: 24px 16px;
  }
  .dl-list1 > dd {
    width: 73%;
    padding: 24px 16px;
  }
}

.dl-list2 {
  border-top: 1px solid #222;
  font-size: 0.875rem;
  line-height: 1.5;
}
.dl-list2 > dt {
  padding: 1.25em 0 0;
}
.dl-list2 > dt span {
  display: block;
  width: 120px;
  padding: 0.25em 0;
  background: #95dbc5;
  border-radius: 1em;
  text-align: center;
}
.dl-list2_red dt span {
  background: #f76b82;
  color: #FFF;
}
.dl-list2_blue dt span {
  background: #5390d6;
  color: #FFF;
}
.dl-list2 > dd {
  padding: 0.75em 0 1.25em;
  border-bottom: 1px solid #222;
}
.dl-list2_nobordertop {
  border-top: none;
}
.dl-list2_nobordertop dt:first-child {
  padding-top: 0.25em;
}
.dl-list2_noborderbottom dd:last-child {
  padding-bottom: 0.25em;
  border-bottom: none;
}
@media print, (min-width: 576px) {
  .dl-list2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1rem;
    line-height: 2;
  }
  .dl-list2 > dt {
    width: 144px;
    padding: 1.25em 0;
    border-bottom: 1px solid #222;
  }
  .dl-list2 > dt span {
    padding: 0;
  }
  .dl-list2 > dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: calc(100% - 144px);
    padding: 1.25em 0;
  }
  .dl-list2_nobordertop dd:first-of-type {
    padding-top: 0.25em;
  }
  .dl-list2_noborderbottom dt:last-of-type {
    padding-bottom: 0.25em;
    border-bottom: none;
  }
}
@media print, (min-width: 992px) {
  .dl-list2_lg-nobordertop {
    border-top: none;
  }
  .dl-list2_lg-nobordertop dt:first-child {
    padding-top: 0.25em;
  }
  .dl-list2_lg-nobordertop dd:first-of-type {
    padding-top: 0.25em;
  }
  .dl-list2_lg-noborderbottom dt:last-of-type {
    padding-bottom: 0.25em;
    border-bottom: none;
  }
  .dl-list2_lg-noborderbottom dd:last-child {
    padding-bottom: 0.25em;
    border-bottom: none;
  }
}

.dl-list3 > dt {
  margin-top: 4px;
  padding: 16px;
  background: #95dbc5;
  line-height: 1.875;
}
.dl-list3 > dd {
  padding: 16px;
  background: #f6f6f6;
  font-size: 0.875rem;
  line-height: 2;
}
.dl-list3 dt:nth-child(1) {
  margin-top: 0;
}
@media print, (min-width: 576px) {
  .dl-list3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .dl-list3 > dt {
    width: 28.57%;
    font-size: 1.125rem;
  }
  .dl-list3 > dd {
    width: 71.43%;
    margin-top: 4px;
    font-size: 1rem;
  }
  .dl-list3 > dd:nth-of-type(1) {
    margin-top: 0;
  }
}
@media print, (min-width: 1200px) {
  .dl-list3 > dt {
    padding: 24px 16px;
    font-size: 1.25rem;
    line-height: 1.8;
  }
  .dl-list3 > dd {
    padding: 24px 16px;
  }
}

.dl-list4 {
  padding-top: 4px;
  font-size: 0.875rem;
}
.dl-list4 dt {
  font-weight: bold;
  line-height: 1.5;
}
.dl-list4 dt:not(:first-child) {
  margin-top: 16px;
}
.dl-list4 dt span {
  display: inline-block;
  padding: 0.25em 0.75em;
  background: #95dbc5;
}
.dl-list4 dd {
  margin-top: 8px;
  line-height: 2;
}
@media print, (min-width: 576px) {
  .dl-list4 {
    font-size: 1rem;
  }
}

/* Table
-------------------- */
/* tablenoborder */
.tablenoborder {
  margin: -3px -8px;
}
.tablenoborder th {
  min-width: 9em;
  font-weight: normal;
}
.tablenoborder th,
.tablenoborder td {
  padding: 0 8px;
  border: none;
  background: transparent;
  color: var(--textColor);
  vertical-align: top;
}

/* nav
-------------------- */
.nav1 {
  border-top: 1px solid #222;
  font-size: 0.875rem;
  line-height: 1.3;
}
.nav1 li {
  border-bottom: 1px solid #222;
}
.nav1 a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 30px 10px 0;
  text-decoration: none;
}
.nav1 a::after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right: 5px;
  width: 12px;
  height: 12px;
  background: url(images/i-arrow.svg) no-repeat 0 0/100% 100%;
  rotate: 90deg;
}
.nav1__num {
  display: block;
  width: 2em;
  color: #95dbc5;
  font-size: 2rem;
  font-family: "Jost", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
  font-weight: 500;
}
.nav1__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(100% - 2em);
  padding: 0.25em 0;
  color: var(--textColor);
  font-size: 0.875rem;
  line-height: 1.5;
}
.nav1__txt span {
  display: inline-block;
}
@media print, (min-width: 576px) {
  .nav1 {
    font-size: 1rem;
  }
  .nav1__num {
    font-size: 2.5rem;
  }
  .nav1__txt {
    font-size: 1rem;
  }
}
@media print, (min-width: 992px) {
  .nav1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: none;
    border-left: 1px solid #222;
  }
  .nav1 li {
    width: 25%;
    border-bottom: none;
    border-right: 1px solid #222;
  }
  .nav1 a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    padding: 5px 5px 30px;
  }
  .nav1 a::after {
    top: auto;
    bottom: 10px;
    right: calc(50% - 6px);
    -webkit-transition: bottom 0.3s ease;
    transition: bottom 0.3s ease;
  }
  .nav1 a:hover::after {
    bottom: 5px;
  }
  .nav1__num {
    width: 100%;
    font-size: 3rem;
    text-align: center;
  }
  .nav1__txt {
    display: block;
    text-align: center;
  }
}

/* Button
-------------------- */
.btn1 {
  display: inline-block;
  position: relative;
  width: 70%;
  max-width: 260px;
  padding: 0 1em 0 0.5em;
  border: 2px solid #95dbc5;
  border-radius: 4px;
  background: #95dbc5;
  color: var(--textColor);
  font-size: 0.875rem;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
}
.btn1::after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right: 15px;
  width: 12px;
  height: 12px;
  background: url(images/i-arrow.svg) no-repeat 0 0/12px 12px;
}
.btn1_en {
  font-family: "Jost", sans-serif;
}
.btn1_large {
  width: 90%;
  max-width: auto;
  font-size: 1rem;
}
@media print, (min-width: 576px) {
  .btn1 {
    font-size: 1rem;
  }
  .btn1_large {
    width: 260px;
    font-size: 1.25rem;
  }
}
@media print, (min-width: 992px) {
  .btn1 {
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .btn1::after {
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
  }
  .btn1:hover {
    opacity: 1;
    background-color: #FFF;
  }
  .btn1:hover::after {
    right: 10px;
  }
}

.btn2 {
  display: inline-block;
  position: relative;
  padding: 0 24px 0 0;
  color: var(--textColor);
  font-size: 0.875rem;
  text-decoration: none;
}
.btn2::after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right: 0;
  width: 12px;
  height: 12px;
  background: url(images/i-arrow.svg) no-repeat 0 0/100% 100%;
}
@media print, (min-width: 576px) {
  .btn2 {
    font-size: 1rem;
  }
}

/* form
-------------------- */
/* error */
#form-error-list {
  display: none;
  margin: 20px 0 25px;
  padding: 3%;
  border: 2px solid #CC0000;
  background: #FFF;
  font-size: 0.875rem;
  line-height: 1.5;
}

#form-error-list-item {
  margin-top: 10px;
  color: #CC0000;
}

.form-error-style {
  border: 1px solid #CC0000 !important;
  background: #ffc9c9 !important;
}

.form-error-tip p {
  color: #CC0000;
}

.form-error-tip p::before {
  content: url(images/i-caution.svg);
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 2px 5px 0 0;
  vertical-align: top;
}

/* form-mark */
.form-mark1,
.form-mark2 {
  display: inline-block;
  margin: 0 0 2px;
  padding: 2px 5px;
  border-radius: 2px;
  background: #CC0000;
  color: #FFF;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
}

.form-mark2 {
  background: #666;
  color: #FFF;
}

@media print, (min-width: 992px) {
  .form-mark1,
  .form-mark2 {
    padding: 2px 8px;
    font-size: 0.7rem;
  }
}
/* form-example */
.form-example {
  color: #666;
  font-size: 0.75rem;
}

.form-example_block {
  display: block;
}

/* form-fieldgroup */
.form-fieldgroup {
  margin: 0 -5px 5px;
  padding: 0 5px;
}

/* form1 */
.form1 {
  margin: 0 auto;
  padding: 0 0 50px;
}
.form1 dl {
  margin: 10px 0 20px;
  border-bottom: 1px solid #EEE;
}
.form1 dt {
  padding: 15px 0 0;
  border-top: 1px solid #EEE;
  font-weight: bold;
  line-height: 1.3;
}
.form1 dd {
  margin: 5px 0 0;
  padding: 0 0 10px;
  line-height: 1.5;
}
.form1 input[type=text],
.form1 textarea {
  width: 100%;
  margin: 5px 0;
  padding: 10px 5px;
  font-size: 16px;
  border: 1px solid #CCC;
  border-radius: 3px;
  background: #f6f6f6;
}
.form1 input::-webkit-input-placeholder, .form1 textarea::-webkit-input-placeholder {
  color: #999;
}
.form1 input::-moz-placeholder, .form1 textarea::-moz-placeholder {
  color: #999;
}
.form1 input:-ms-input-placeholder, .form1 textarea:-ms-input-placeholder {
  color: #999;
}
.form1 input::-ms-input-placeholder, .form1 textarea::-ms-input-placeholder {
  color: #999;
}
.form1 input::placeholder,
.form1 textarea::placeholder {
  color: #999;
}
.form1 input:focus::-webkit-input-placeholder, .form1 textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
.form1 input:focus::-moz-placeholder, .form1 textarea:focus::-moz-placeholder {
  color: transparent;
}
.form1 input:focus:-ms-input-placeholder, .form1 textarea:focus:-ms-input-placeholder {
  color: transparent;
}
.form1 input:focus::-ms-input-placeholder, .form1 textarea:focus::-ms-input-placeholder {
  color: transparent;
}
.form1 input:focus::placeholder,
.form1 textarea:focus::placeholder {
  color: transparent;
}
.form1 textarea {
  height: 80px;
}
.form1 select {
  max-width: 100%;
  margin: 5px 0;
  padding: 10px 5px;
  font-size: 16px;
}
.form1 .form-label-full {
  display: inline-block;
  cursor: pointer;
  width: 100%;
  margin: 5px 0;
  padding: 5px 13px 5px 8px;
  border: 1px solid #DDD;
  border-radius: 2px;
  background: #F6F6F6;
}
.form1 input[type=checkbox],
.form1 input[type=radio] {
  margin: 0 6px 2px 2px;
  vertical-align: middle;
}
.form1__btn {
  margin: 20px 0 0;
  text-align: center;
}
.form1__btn-submit {
  position: relative;
  display: inline-block;
  width: 95%;
  max-width: 400px;
  padding: 0 32px 0 16px;
  border: 2px solid #95dbc5;
  border-radius: 4px;
  background: #95dbc5;
  color: var(--textColor);
  font-size: 1.25rem;
  text-align: center;
  line-height: 64px;
}
.form1__btn-submit::after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right: 15px;
  width: 12px;
  height: 12px;
  background: url(images/i-arrow.svg) no-repeat 0 0/12px 12px;
}
@media print, (min-width: 576px) {
  .form1 textarea {
    height: 60px;
  }
  .form1__btn {
    margin-top: 30px;
  }
  .form1__btn-submit {
    font-size: 1.5rem;
    width: 400px;
    padding: 0 40px 0 24px;
    line-height: 80px;
  }
  .form1__btn-submit::after {
    top: calc(50% - 12px);
    right: 20px;
    width: 24px;
    height: 24px;
    background: url(images/i-arrow_thin.svg) no-repeat 0 0/24px 24px;
  }
}
@media print, (min-width: 992px) {
  .form1 dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .form1 dt {
    position: relative;
    width: 250px;
    padding: 25px 75px 25px 0;
    border-top: 1px solid #EEE;
  }
  .form1 dt .form-mark1,
  .form1 dt .form-mark2 {
    position: absolute;
    top: 26px;
    right: 20px;
  }
  .form1 dd {
    width: calc(100% - 250px);
    margin: 0;
    padding: 20px 0;
    border-top: 1px solid #EEE;
  }
  .form1__btn-submit {
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .form1__btn-submit:hover {
    background-color: #FFF;
  }
  .form1__btn-submit::after {
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
  }
  .form1__btn-submit:hover::after {
    right: 10px;
  }
}

/* complete */
.formComplete {
  margin-bottom: 100px;
}
.formComplete__back {
  margin: 40px 0 0;
  text-align: center;
}
@media print, (min-width: 992px) {
  .formComplete {
    margin-bottom: 200px;
  }
}

/* map
-------------------- */
/* map1 */
.map1 iframe {
  width: 100%;
  height: 320px;
}
@media print, (min-width: 576px) {
  .map1 iframe {
    height: 400px;
  }
}

/* Box
-------------------- */
.box1 {
  overflow: hidden;
}
.box1__img {
  margin-right: 10%;
}
.box1__img img {
  width: 100%;
}
.box1_reverse .box1__img {
  margin-right: 0;
  margin-left: 10%;
}
.box1__txt {
  margin: 0 10%;
}
.box1__txt p:not([class]) {
  margin-top: 1em;
  font-size: 0.875rem;
  line-height: 2;
}
.box1__num {
  margin: 0.5em 0;
  color: #95dbc5;
  font-family: "Jost", sans-serif;
  font-size: 2rem;
}
.box1__title {
  font-size: 8.5vw;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.2;
}
.box1__btn {
  margin-top: 2em;
}
@media print, (min-width: 576px) {
  .box1__txt p:not([class]) {
    font-size: 1rem;
  }
  .box1__num {
    font-size: 3rem;
  }
  .box1__title {
    font-size: 3rem;
  }
}
@media print, (min-width: 992px) {
  .box1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .box1__img {
    width: calc(50% - 3.4vw);
    margin: 0;
  }
  .box1__txt {
    width: calc(45% - 3.4vw);
    margin: 0 0 0 6.8vw;
  }
  .box1_reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .box1_reverse .box1__img {
    margin: 0;
  }
  .box1_reverse .box1__txt {
    margin: 0 6.8vw 0 0;
  }
  .box1__num {
    margin-top: 0;
  }
}
@media print, (min-width: 1200px) {
  .box1__num {
    font-size: 4rem;
  }
  .box1__title {
    font-size: 4rem;
  }
  .box1__txt p:not([class]) {
    margin-top: 2em;
  }
  .box1__btn {
    margin-top: 2.5em;
  }
}
@media print, (min-width: 1400px) {
  .box1__img {
    width: calc(50% - 48px);
  }
  .box1__txt {
    width: 592px;
    margin: 0 0 0 96px;
  }
  .box1_reverse .box1__txt {
    margin: 0 96px 0 0;
  }
}

.box2 {
  background: #FFF;
}
.box2 a {
  display: block;
  text-decoration: none;
}
.box2__img img {
  width: 100%;
}
.box2__txt {
  position: relative;
  padding: 32px;
  color: #FFF;
  background: #222;
}
.box2__txt::after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  right: 30px;
  width: 16px;
  height: 16px;
  background: url(images/i-arrow_white.svg) no-repeat 0 0/100% 100%;
}
.box2__txt1 {
  display: block;
  margin-bottom: 1em;
  font-family: "Jost", sans-serif;
  font-size: 0.875rem;
}
.box2__txt2 {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
}
@media print, (min-width: 576px) {
  .box2__txt {
    padding: 48px;
  }
  .box2__txt::after {
    right: 48px;
  }
  .box2__txt1 {
    font-size: 1rem;
  }
  .box2__txt2 {
    font-size: 2rem;
  }
}
@media print, (min-width: 992px) {
  .box2 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .box2__img {
    width: 50%;
  }
  .box2__txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 50%;
    padding: 0 0 0 64px;
  }
  .box2__txt::after {
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
  }
  .box2:hover .box2__txt::after {
    right: 36px;
  }
}

.box3__header {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}
.box3__num {
  margin-top: -0.1em;
  margin-bottom: 20px;
  color: #95dbc5;
  font-size: 3rem;
  font-family: "Jost", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
}
.box3__maintitle {
  display: block;
  margin: -0.2em 0;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.5;
}
.box3__subtitle {
  display: block;
  margin-top: 1em;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.box3__txt {
  margin-top: 2em;
  font-size: 0.875rem;
}
.box3__txt p {
  line-height: 2;
}
.box3__txt p:not(:first-child) {
  margin-top: 1em;
}
@media print, (min-width: 576px) {
  .box3__num {
    margin-bottom: 35px;
    font-size: 5.5rem;
  }
  .box3__maintitle {
    font-size: 2rem;
  }
  .box3__subtitle {
    font-size: 1.125rem;
  }
  .box3__txt {
    font-size: 1rem;
  }
}
@media print, (min-width: 992px) {
  .box3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .box3__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 47.5%;
    text-align: left;
  }
  .box3__num {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 1.5em;
            flex: 0 0 1.5em;
    margin-left: -5px;
    margin-bottom: 20px;
  }
  .box3__title {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .box3__txt {
    margin: 0 0 -0.5em;
    width: 47.5%;
  }
}
@media print, (min-width: 1200px) {
  .box3__num {
    font-size: 8rem;
  }
  .box3__maintitle {
    font-size: 2.5rem;
  }
  .box3__subtitle {
    font-size: 1.25rem;
  }
}

.box4 {
  padding-bottom: 10%;
}
.box4__img {
  position: relative;
}
.box4__img::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: 100%;
  margin-top: 10%;
  background: #EEE;
}
.box4__img img {
  position: relative;
  width: 90%;
}
.box4_right .box4__img {
  text-align: right;
}
.box4_right .box4__img::before {
  left: 0;
  right: auto;
}
.box4_white .box4__img::before {
  width: 10%;
  left: auto;
  right: 0;
}
@media print, (min-width: 992px) {
  .box4 {
    padding-bottom: var(--gutters-lg-l);
  }
  .box4__img::before {
    margin-top: var(--gutters-lg-l);
  }
}
@media print, (min-width: 1400px) {
  .box4 {
    padding-bottom: var(--gutters-xxlg-l);
  }
  .box4__img::before {
    width: calc(50% + 640px);
    margin-top: var(--gutters-xxlg-l);
  }
  .box4__img img {
    width: calc(50% + 640px);
  }
  .box4_white .box4__img::before {
    width: calc(50% - 640px);
  }
}

.box5 {
  border: 1px solid #CCC;
}
.box5__title {
  padding: 16px;
  background: #95dbc5;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}
.box5_red .box5__title {
  background: #f76b82;
  color: #FFF;
}
.box5_blue .box5__title {
  background: #5390d6;
  color: #FFF;
}
.box5__txt {
  padding: 16px;
}
@media print, (min-width: 576px) {
  .box5__title {
    padding: 24px;
    font-size: 1.5rem;
  }
  .box5__txt {
    padding: 24px;
  }
}
@media print, (min-width: 1200px) {
  .box5__title {
    padding: 32px;
  }
  .box5__txt {
    padding: 32px;
  }
}
@media print, (min-width: 1400px) {
  .box5__title {
    padding: 32px 40px;
  }
  .box5__txt {
    padding: 32px 40px;
  }
}

.box6 {
  padding: 24px 16px;
  background: #f6f6f6;
}
.u-bg1 .box6 {
  background: #FFF;
}
.box6 > .title4:first-child {
  margin-top: 0;
}
@media print, (min-width: 576px) {
  .box6 {
    padding: 32px 24px;
  }
  .box6 > .title4:first-child {
    margin-top: -0.2em;
  }
}
@media print, (min-width: 992px) {
  .box6 {
    padding: 3.4vw;
  }
  .box6 .box6.column_lg-1-2 {
    padding: 2.9vw;
  }
  .box6 .box6.column_lg-1-3 {
    padding: 2.3vw;
  }
}
@media print, (min-width: 1400px) {
  .box6 {
    padding: 48px;
  }
  .box6 .box6.column_lg-1-2 {
    padding: 40px;
  }
  .box6 .box6.column_lg-1-3 {
    padding: 32px;
  }
}

.box7 {
  padding: 24px 16px;
  background: #dff4ed;
}
.box7_white {
  background: #FFF;
}
.box7__header {
  padding-bottom: 16px;
  text-align: center;
}
.box7__num {
  position: relative;
  margin: 0 0 1em;
  padding: 0.5em 0;
  font-family: "Jost", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
  font-weight: 500;
}
.box7__num::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: calc(50% - 16px);
  width: 32px;
  height: 1px;
  background: #222;
}
.box7_white .box7__num {
  color: #95dbc5;
}
.box7_white .box7__num::before {
  background: #95dbc5;
}
.box7__num1 {
  display: block;
  margin-bottom: 0.25em;
  font-size: 0.75rem;
}
.box7__num2 {
  display: block;
  font-size: 1.5rem;
}
.box7__title {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.5;
}
.box7__maintitle {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
}
.box7__subtitle {
  display: block;
  font-size: 1rem;
  font-weight: 500;
}
.box7 .dl-list3 dd {
  background: #FFF;
}
@media print, (min-width: 576px) {
  .box7 {
    padding: 32px 24px;
  }
  .box7__header {
    padding-bottom: 24px;
  }
  .box7__num1 {
    font-size: 0.875rem;
  }
  .box7__num2 {
    font-size: 2.25rem;
  }
  .box7__maintitle {
    font-size: 1.625rem;
  }
  .box7__subtitle {
    font-size: 1.125rem;
  }
}
@media print, (max-width: 991.98px) {
  .box7__maintitle br {
    display: none;
  }
}
@media print, (min-width: 992px) {
  .box7 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .box7__header {
    width: 34.72%;
    padding: 0 24px 0 0;
    text-align: left;
  }
  .box7__num {
    display: inline-block;
    padding: 0;
    text-align: center;
  }
  .box7__num::before {
    bottom: 0.375em;
    left: auto;
    right: -16px;
    width: 2px;
    height: 2.5em;
  }
  .box7__subtitle {
    margin-top: 0.5em;
  }
  .box7__txt {
    width: 65.28%;
  }
  .box7_style2 .box7__header {
    position: relative;
    width: 44.44%;
    padding-left: calc(5em + 16px);
  }
  .box7_style2 .box7__num {
    position: absolute;
    top: 0;
    left: 0;
  }
  .box7_style2 .box7__txt {
    width: 55.56%;
  }
}
@media print, (min-width: 1200px) {
  .box7 {
    padding: 40px;
  }
  .box7__header {
    padding: 0 32px 0 0;
  }
  .box7__num::before {
    height: 4em;
  }
  .box7__num1 {
    font-size: 1rem;
  }
  .box7__num2 {
    font-size: 3rem;
  }
  .box7__maintitle {
    font-size: 2rem;
  }
  .box7__subtitle {
    font-size: 1.25rem;
  }
}
@media print, (min-width: 1400px) {
  .box7 {
    padding: 48px;
  }
}

.box8 {
  overflow: hidden;
  position: relative;
}
.box8 a {
  display: block;
  color: var(--textColor);
  text-decoration: none;
}
.box8 .swiper {
  overflow: visible;
  margin-left: 10%;
  margin-right: 5%;
}
.box8 .swiper-slide {
  position: relative;
}
.box8__img {
  overflow: hidden;
  position: relative;
  display: block;
  padding-top: 123.5%;
}
.box8__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.box8__title {
  display: block;
  position: absolute;
  top: 66vw;
  left: -18px;
  color: var(--textColor);
  font-size: 1.125rem;
  font-weight: 500;
  translate: 0 calc(-100% - 5px);
  line-height: 1.3;
  width: 100%;
}
.box8__title span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 100%;
  padding: 0.375em 0.5em 0.25em;
  background: #FFF;
}
.box8__txt {
  overflow: hidden;
  display: block;
  max-height: calc(4em + 10px);
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  padding: 0.75em 0 0;
  font-size: 0.875rem;
  line-height: 2;
}
.box8__en {
  position: absolute;
  top: 0;
  left: -0.25em;
  font-size: 0.875rem;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  rotate: 90deg;
}
.box8__next, .box8__prev {
  display: block;
  position: absolute;
  z-index: 2;
  top: calc(34.6vw - 20px);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.box8__prev {
  left: 2%;
}
.box8__next {
  right: 2%;
}
.box8__prev.swiper-button-disabled, .box8__next.swiper-button-disabled {
  visibility: hidden;
  opacity: 0;
}
.box8__prev::before, .box8__next::before {
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 2px);
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-left: 1px solid #FFF;
  border-top: 1px solid #FFF;
}
.box8__prev::before {
  rotate: -45deg;
}
.box8__next::before {
  left: calc(50% - 3px);
  rotate: 135deg;
}
@media print, (min-width: 576px) {
  .box8__title {
    top: 45vw;
    left: -24px;
    font-size: 1.25rem;
  }
  .box8__en {
    left: -0.625em;
  }
  .box8__next, .box8__prev {
    top: calc(23.63vw - 20px);
  }
}
@media print, (min-width: 992px) {
  .box8 {
    overflow: visible;
    width: var(--contentWidth);
    max-width: var(--contentWidth-large);
    margin-left: auto;
    margin-right: auto;
  }
  .box8 .swiper {
    margin-left: 0;
    margin-right: 0;
  }
  .box8 a {
    opacity: 1;
  }
  .box8__img img {
    -webkit-transition: scale 0.3s ease;
    transition: scale 0.3s ease;
  }
  a:hover .box8__img img {
    scale: 1.06;
  }
  .box8__title {
    top: 23vw;
    left: -20px;
    font-size: 1rem;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .box8__txt {
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  a:hover .box8__title, a:hover .box8__txt {
    color: #7a7a7a;
  }
  .box8__next, .box8__prev {
    display: none;
  }
}
@media print, (min-width: 1400px) {
  .box8__title {
    top: 330px;
    font-size: 1.25rem;
  }
  .box8__title span {
    padding: 5px 12px;
  }
}

.box9__img {
  position: relative;
  z-index: 2;
  width: 90%;
}
.box9__img img {
  width: 100%;
}
.box9__txt {
  margin: -64px 0 0 5%;
  padding: 64px 5%;
  background: #EEE;
}
.box9__txt p:not([class]) {
  margin-top: 1em;
  font-size: 0.875rem;
  line-height: 2;
}
.box9__title {
  padding-top: 32px;
  font-size: 7vw;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.3;
}
.box9__btn {
  margin-top: 2em;
}
@media print, (min-width: 576px) {
  .box9__title {
    font-size: 2.5rem;
  }
  .box9__txt p:not([class]) {
    font-size: 1rem;
  }
}
@media print, (min-width: 992px) {
  .box9 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: var(--gutters-lg-l);
  }
  .box9__img {
    width: 55.625%;
  }
  .box9__txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 55.625%;
    margin: 0 0 0 -11.125%;
    padding: 0 5% 0 15.625%;
    translate: 0 var(--gutters-lg-l);
  }
}
@media print, (min-width: 1400px) {
  .box9 {
    padding-bottom: var(--gutters-xxlg-l);
  }
  .box9__img {
    width: calc(50% + 192px);
  }
  .box9__txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: calc(45% + 192px);
    margin: 0 5% 0 -384px;
    padding: 0 64px 0 448px;
    translate: 0 var(--gutters-xxlg-l);
  }
}

.box10__img {
  position: relative;
  background: #FFF;
}
.box10__img a {
  position: relative;
  z-index: 2;
}
.box10__img::before, .box10__img::after {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  width: 20vw;
  height: 20vw;
  background: #95dbc5;
}
.box10__img::before {
  top: -3vw;
  left: -3vw;
}
.box10__img::after {
  bottom: -3vw;
  right: -3vw;
}
@media print, (min-width: 992px) {
  .box10__img::before, .box10__img::after {
    width: 192px;
    height: 192px;
  }
  .box10__img::before {
    top: -32px;
    left: -32px;
  }
  .box10__img::after {
    bottom: -32px;
    right: -32px;
  }
}

.box10 {
  position: relative;
}
.box10 a {
  display: block;
  color: var(--textColor);
  text-decoration: none;
}
.box10__next, .box10__prev {
  display: block;
  position: absolute;
  z-index: 2;
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.box10__prev {
  left: -3%;
}
.box10__next {
  right: -3%;
}
.box10__prev.swiper-button-disabled, .box10__next.swiper-button-disabled {
  visibility: hidden;
  opacity: 0;
}
.box10__prev::before, .box10__next::before {
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 2px);
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-left: 1px solid #FFF;
  border-top: 1px solid #FFF;
}
.box10__prev::before {
  rotate: -45deg;
}
.box10__next::before {
  left: calc(50% - 3px);
  rotate: 135deg;
}
@media print, (min-width: 992px) {
  .box10__prev {
    left: -30px;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .box10__next {
    right: -30px;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .box10__prev:hover, .box10__next:hover {
    opacity: 0.6;
  }
}
@media print, (min-width: 1400px) {
  .box10__prev {
    left: -55px;
  }
  .box10__next {
    right: -55px;
  }
}

.box11__img {
  margin-bottom: 16px;
}
@media print, (min-width: 992px) {
  .box11 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .box11__title {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
  .box11__img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    margin-bottom: 24px;
  }
  .box11__txt {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }
}

.box12 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.box12__description {
  display: contents;
}
.box12__title {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100%;
}
.box12__txt {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 100%;
}
.box12__img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 100%;
  margin-top: 8px;
}
@media print, (min-width: 576px) {
  .box12__img {
    margin-top: 16px;
  }
}
@media print, (min-width: 992px) {
  .box12 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .box12_reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .box12__description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 47.5%;
  }
  .box12__title {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .box12__txt {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .box12__img {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    width: 47.5%;
  }
}

.box13 {
  background: #F6F6F6;
}
.box13__img img {
  width: 100%;
}
.box13__txt {
  padding: 5% 8% calc(5% + 4px);
  text-align: center;
}
.box13__txt p:not([class]) {
  margin-top: 1em;
  font-size: 0.875rem;
  line-height: 2;
}
.box13__num {
  margin-bottom: 0.5em;
  color: #95dbc5;
  font-family: "Jost", sans-serif;
  font-size: 1.25rem;
}
.box13__title {
  margin-bottom: -0.2em;
  font-size: 1.5rem;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.2;
}
.box13__btn {
  margin-top: 1em;
}
@media print, (min-width: 576px) {
  .box13__txt p:not([class]) {
    font-size: 1rem;
  }
  .box13__num {
    font-size: 1.5rem;
  }
  .box13__title {
    font-size: 2rem;
  }
}
@media print, (min-width: 992px) {
  .box13 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .box13__img {
    position: relative;
    padding-top: 33.33%;
    width: 50%;
  }
  .box13__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .box13__txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 50%;
    padding: 24px 5%;
    text-align: left;
  }
  .box13__txtcontainer {
    width: 100%;
  }
  .box13__num {
    margin-bottom: 1em;
  }
  .box13__title {
    margin-bottom: 0;
  }
  .box13__btn {
    margin-top: 1.5em;
  }
}

.box14__img {
  margin-top: var(--gutters-s);
}
.box14__txt {
  margin-top: var(--gutters-s);
}
@media print, (min-width: 576px) {
  .box14::after {
    content: "";
    display: table;
    clear: both;
  }
  .box14__img {
    float: right;
    width: 47.5%;
    margin-left: 5%;
    margin-bottom: 16px;
  }
}
@media print, (min-width: 992px) {
  .box14 {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 65% 30%;
    grid-template-areas: "box14title box14img" "box14data box14img";
    -webkit-column-gap: 5%;
       -moz-column-gap: 5%;
            column-gap: 5%;
  }
  .box14_reverse {
    grid-template-columns: 30% 65%;
    grid-template-areas: "box14img box14title" "box14img box14data";
  }
  .box14__title {
    grid-area: box14title;
  }
  .box14__img {
    grid-area: box14img;
    float: none;
    width: auto;
    margin: 0;
    margin-bottom: var(--gutters-lg-s);
  }
  .box14__txt {
    grid-area: box14data;
    margin-top: var(--gutters-lg-s);
  }
}
@media print, (min-width: 1400px) {
  .box14__img {
    margin-bottom: var(--gutters-xxlg-s);
  }
  .box14__txt {
    margin-top: var(--gutters-xxlg-s);
  }
}

/* Utilities ------------------------- */
/* clear
-------------------- */
.u-clear::after {
  content: "";
  display: table;
  clear: both;
}

/* overflow hidden
-------------------- */
.u-overflow-hidden {
  overflow: hidden;
}

/* nowrap
-------------------- */
.u-whitespace-nowrap {
  white-space: nowrap;
}

/* margin padding
-------------------- */
.u-mt-s {
  margin-top: var(--gutters-s);
}

.u-mb-s {
  margin-bottom: var(--gutters-s);
}

.u-pt-s {
  padding-top: var(--gutters-s);
}

.u-pb-s {
  padding-bottom: var(--gutters-s);
}

.u-mt-m {
  margin-top: var(--gutters-m);
}

.u-mb-m {
  margin-bottom: var(--gutters-m);
}

.u-pt-m {
  padding-top: var(--gutters-m);
}

.u-pb-m {
  padding-bottom: var(--gutters-m);
}

.u-mt-l {
  margin-top: var(--gutters-l);
}

.u-mb-l {
  margin-bottom: var(--gutters-l);
}

.u-pt-l {
  padding-top: var(--gutters-l);
}

.u-pb-l {
  padding-bottom: var(--gutters-l);
}

.u-mt-xl {
  margin-top: var(--gutters-xl);
}

.u-mb-xl {
  margin-bottom: var(--gutters-xl);
}

.u-pt-xl {
  padding-top: var(--gutters-xl);
}

.u-pb-xl {
  padding-bottom: var(--gutters-xl);
}

@media print, (min-width: 992px) {
  .u-mt-s {
    margin-top: var(--gutters-lg-s);
  }
  .u-mb-s {
    margin-bottom: var(--gutters-lg-s);
  }
  .u-pt-s {
    padding-top: var(--gutters-lg-s);
  }
  .u-pb-s {
    padding-bottom: var(--gutters-lg-s);
  }
  .u-mt-m {
    margin-top: var(--gutters-lg-m);
  }
  .u-mb-m {
    margin-bottom: var(--gutters-lg-m);
  }
  .u-pt-m {
    padding-top: var(--gutters-lg-m);
  }
  .u-pb-m {
    padding-bottom: var(--gutters-lg-m);
  }
  .u-mt-l {
    margin-top: var(--gutters-lg-l);
  }
  .u-mb-l {
    margin-bottom: var(--gutters-lg-l);
  }
  .u-pt-l {
    padding-top: var(--gutters-lg-l);
  }
  .u-pb-l {
    padding-bottom: var(--gutters-lg-l);
  }
  .u-mt-xl {
    margin-top: var(--gutters-lg-xl);
  }
  .u-mb-xl {
    margin-bottom: var(--gutters-lg-xl);
  }
  .u-pt-xl {
    padding-top: var(--gutters-lg-xl);
  }
  .u-pb-xl {
    padding-bottom: var(--gutters-lg-xl);
  }
}
@media print, (min-width: 1400px) {
  .u-mt-s {
    margin-top: var(--gutters-xxlg-s);
  }
  .u-mb-s {
    margin-bottom: var(--gutters-xxlg-s);
  }
  .u-pt-s {
    padding-top: var(--gutters-xxlg-s);
  }
  .u-pb-s {
    padding-bottom: var(--gutters-xxlg-s);
  }
  .u-mt-m {
    margin-top: var(--gutters-xxlg-m);
  }
  .u-mb-m {
    margin-bottom: var(--gutters-xxlg-m);
  }
  .u-pt-m {
    padding-top: var(--gutters-xxlg-m);
  }
  .u-pb-m {
    padding-bottom: var(--gutters-xxlg-m);
  }
  .u-mt-l {
    margin-top: var(--gutters-xxlg-l);
  }
  .u-mb-l {
    margin-bottom: var(--gutters-xxlg-l);
  }
  .u-pt-l {
    padding-top: var(--gutters-xxlg-l);
  }
  .u-pb-l {
    padding-bottom: var(--gutters-xxlg-l);
  }
  .u-mt-xl {
    margin-top: var(--gutters-xxlg-xl);
  }
  .u-mb-xl {
    margin-bottom: var(--gutters-xxlg-xl);
  }
  .u-pt-xl {
    padding-top: var(--gutters-xxlg-xl);
  }
  .u-pb-xl {
    padding-bottom: var(--gutters-xxlg-xl);
  }
}
/* text-align
-------------------- */
.u-text-left {
  text-align: left !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

@media print, (min-width: 576px) {
  .u-text-md-left {
    text-align: left !important;
  }
  .u-text-md-center {
    text-align: center !important;
  }
  .u-text-md-right {
    text-align: right !important;
  }
}
@media print, (min-width: 992px) {
  .u-text-lg-left {
    text-align: left !important;
  }
  .u-text-lg-center {
    text-align: center !important;
  }
  .u-text-lg-right {
    text-align: right !important;
  }
}
/* vertical-align
-------------------- */
.u-vertical-top {
  vertical-align: top !important;
}

.u-vertical-middle {
  vertical-align: middle !important;
}

.u-vertical-bottom {
  vertical-align: bottom !important;
}

@media print, (min-width: 576px) {
  .u-vertical-md-top {
    vertical-align: top !important;
  }
  .u-vertical-md-middle {
    vertical-align: middle !important;
  }
  .u-vertical-md-bottom {
    vertical-align: bottom !important;
  }
}
@media print, (min-width: 992px) {
  .u-vertical-lg-top {
    vertical-align: top !important;
  }
  .u-vertical-lg-middle {
    vertical-align: middle !important;
  }
  .u-vertical-lg-bottom {
    vertical-align: bottom !important;
  }
}
/* background
-------------------- */
.u-bg1 {
  background: #EEE;
}

.u-bg2 {
  background: #dff4ed;
}

/* font
-------------------- */
/* font-size */
.u-font-xxsmall {
  font-size: 0.625em;
}

.u-font-xsmall {
  font-size: 0.75em;
}

.u-font-small {
  font-size: 0.875em;
}

.u-font-medium {
  font-size: 1em;
}

.u-font-large {
  font-size: 1.25em;
}

.u-font-xlarge {
  font-size: 1.5em;
}

@media print, (min-width: 576px) {
  .u-font-md-xsmall {
    font-size: 0.75em;
  }
  .u-font-md-small {
    font-size: 0.875em;
  }
  .u-font-md-medium {
    font-size: 1em;
  }
  .u-font-md-large {
    font-size: 1.25em;
  }
  .u-font-md-xlarge {
    font-size: 1.5em;
  }
}
@media print, (min-width: 992px) {
  .u-font-lg-xsmall {
    font-size: 0.75em;
  }
  .u-font-lg-small {
    font-size: 0.875em;
  }
  .u-font-lg-medium {
    font-size: 1em;
  }
  .u-font-lg-large {
    font-size: 1.25em;
  }
  .u-font-lg-xlarge {
    font-size: 1.5em;
  }
}
/* font-bold */
.u-font-bold {
  font-weight: bold;
}

/* color */
.u-color-red {
  color: #ff0000;
}

/* font-family */
.u-font-en {
  font-family: "Jost", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
}

/* indexPage
-------------------- */
.home .header {
  background: #EEE url(images/index/mv-bg.webp) no-repeat -23px -20px/120vw auto;
}
@media print, (min-width: 576px) {
  .home .header {
    background-position: -40px -40px;
    background-size: 90% auto;
  }
}
@media print, (min-width: 992px) {
  .home .header {
    background-position: -20px -130px;
    background-size: 672px auto;
  }
}

.indexMv {
  overflow: hidden;
  position: relative;
  padding-top: 135%;
  color: #000;
  font-weight: 500;
  background: #EEE url(images/index/mv-bg.webp) no-repeat -23px -80px/120vw auto;
}
.indexMv__catch {
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: 10%;
  width: 97%;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 5.8vw;
}
.indexMv__catch1 {
  display: inline-block;
  padding: 8px 8px 5px;
  background: #FFF;
  -webkit-animation: indexMvtxtmove 0.5s ease-out 0.5s both;
          animation: indexMvtxtmove 0.5s ease-out 0.5s both;
}
.indexMv__catch2 {
  display: inline-block;
  margin-top: 0.2em;
  padding: 8px 8px 5px;
  background: #FFF;
  -webkit-animation: indexMvtxtmove 0.5s ease-out 0.7s both;
          animation: indexMvtxtmove 0.5s ease-out 0.7s both;
}
.indexMv__catch3 {
  display: inline-block;
  margin-top: 0.25em;
  padding: 5px;
  background: #FFF;
  font-family: "Jost", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
  font-size: 1.86em;
  -webkit-animation: indexMvtxtmove 0.8s ease-out 1.2s both;
          animation: indexMvtxtmove 0.8s ease-out 1.2s both;
}
.indexMv__img {
  position: absolute;
  top: 0;
  left: 10%;
  width: 90%;
  height: 100%;
}
.indexMv .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.indexMv .swiper-slide-active img,
.indexMv .swiper-slide-duplicate-active img,
.indexMv .swiper-slide-prev img {
  -webkit-animation: indexMvimgmove 4s ease-out 0s both;
          animation: indexMvimgmove 4s ease-out 0s both;
}
@media print, (min-width: 576px) {
  .indexMv {
    padding-top: 110%;
    background-position: -40px -136px;
    background-size: 90% auto;
  }
  .indexMv__catch1 {
    padding: 8px 12px 5px;
  }
  .indexMv__catch2 {
    padding: 8px 12px 5px;
  }
  .indexMv__catch3 {
    padding: 5px 10px;
  }
  .indexMv__img {
    left: 12%;
    width: 88%;
  }
}
@media print, (min-width: 992px) {
  .indexMv {
    padding-top: 51.33%;
    background-position: -20px -226px;
    background-size: 672px auto;
  }
  .indexMv__catch {
    top: 50%;
    left: 4.1%;
    font-size: 3.7vw;
    translate: 0 -50%;
  }
  .indexMv__img {
    left: 23%;
    width: 77%;
  }
}

@-webkit-keyframes indexMvimgmove {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
}

@keyframes indexMvimgmove {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
}
@-webkit-keyframes indexMvtxtmove {
  0% {
    opacity: 0;
    -webkit-transform: translate(-40px);
            transform: translate(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes indexMvtxtmove {
  0% {
    opacity: 0;
    -webkit-transform: translate(-40px);
            transform: translate(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.indexAbout {
  overflow: hidden;
  position: relative;
}
.indexAbout::before {
  content: "";
  display: block;
  height: 60px;
  background: #EEE;
}
.indexAbout .container {
  position: relative;
  z-index: 2;
}
.indexAbout__title {
  margin: -0.2em 0;
  font-size: 8.5vw;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 500;
  line-height: 1.5;
}
.indexAbout__description {
  margin-top: 22px;
  font-size: 0.875rem;
  line-height: 2.5;
}
.indexAbout__description p:not([class]):not(:first-child) {
  margin-top: 1em;
}
.indexAbout__btn {
  margin-top: 32px;
  text-align: center;
}
.indexAbout__en {
  position: absolute;
  z-index: 1;
  top: calc(5.6vw + 80px + 60px);
  left: -20px;
  width: 800px;
}
.indexAbout__en img {
  width: 100%;
}
@media print, (min-width: 576px) {
  .indexAbout::before {
    height: 96px;
  }
  .indexAbout__title {
    font-size: 3rem;
  }
  .indexAbout__description {
    margin-top: 36px;
    font-size: 1rem;
  }
  .indexAbout__btn {
    margin-top: 36px;
    text-align: left;
  }
  .indexAbout__en {
    top: calc(5.6vw + 80px + 100px);
  }
}
@media print, (min-width: 992px) {
  .indexAbout .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .indexAbout__title {
    width: 52.5%;
  }
  .indexAbout__description {
    width: 47.5%;
    margin-top: 80px;
    line-height: 3;
  }
  .indexAbout__description p:not([class]):not(:first-child) {
    margin-top: 3em;
  }
  .indexAbout__btn {
    margin-top: 48px;
  }
  .indexAbout__en {
    top: calc(10.5vw + 80px + 100px);
    left: -32px;
    width: 92%;
    max-width: 1448px;
  }
}
@media print, (min-width: 1200px) {
  .indexAbout__title {
    width: 61.25%;
    font-size: 4rem;
  }
  .indexAbout__description {
    width: 38.75%;
  }
}
@media print, (min-width: 1400px) {
  .indexAbout__en {
    top: 330px;
  }
}

.indexServices {
  position: relative;
}
.indexServices::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 75%;
  height: 100%;
  background: #dff4ed;
}
@media print, (min-width: 992px) {
  .indexServices::before {
    width: 83.8%;
  }
}
@media print, (min-width: 1400px) {
  .indexServices::before {
    width: calc(50% + 528px);
  }
}

.indexResults {
  overflow: hidden;
}
.indexResults__list {
  position: relative;
}
.indexResults__list a {
  display: block;
  height: 100%;
  padding: 0 0 6%;
  background: #EEE;
  text-decoration: none;
}
.indexResults__list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 6%;
  width: 12px;
  height: 12px;
  margin-bottom: calc(6% + 12px);
  background: url(images/i-arrow.svg) no-repeat 0 0/100% 100%;
}
.indexResults .swiper {
  overflow: visible;
  margin-left: 5%;
  margin-right: 5%;
}
.indexResults .swiper-slide {
  height: 100%;
}
.indexResults__img {
  overflow: hidden;
  position: relative;
  display: block;
  padding-top: 116%;
}
.indexResults__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.indexResults__title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  color: var(--textColor);
  margin: calc(6% - 5px) 6% 0;
  font-weight: bold;
  line-height: 1.66;
}
.indexResults__cat {
  display: inline-block;
  margin: 6px 6% 0;
  padding: 8px;
  background: #222;
  color: #FFF;
  font-size: 0.75rem;
}
.indexResults__next, .indexResults__prev {
  display: block;
  position: absolute;
  z-index: 2;
  top: calc(35.38vw - 20px);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.indexResults__prev {
  left: 2%;
}
.indexResults__next {
  right: 2%;
}
.indexResults__prev.swiper-button-disabled, .indexResults__next.swiper-button-disabled {
  visibility: hidden;
  opacity: 0;
}
.indexResults__prev::before, .indexResults__next::before {
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 2px);
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-left: 1px solid #FFF;
  border-top: 1px solid #FFF;
}
.indexResults__prev::before {
  rotate: -45deg;
}
.indexResults__next::before {
  left: calc(50% - 3px);
  rotate: 135deg;
}
.indexResults__btn {
  text-align: center;
}
@media print, (min-width: 576px) {
  .indexResults__title {
    font-size: 1.25rem;
  }
  .indexResults__cat {
    font-size: 0.875rem;
  }
}
@media print, (min-width: 992px) {
  .indexResults__list {
    width: var(--contentWidth);
    max-width: var(--contentWidth-large);
    margin-left: auto;
    margin-right: auto;
  }
  .indexResults__list a {
    padding: 0 0 6%;
  }
  .indexResults__list a::after {
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
    right: 6%;
  }
  .indexResults__list a:hover::after {
    right: 4%;
  }
  a .indexResults__img {
    overflow: hidden;
  }
  .indexResults__img img {
    scale: 1.005;
    -webkit-transition: scale 0.3s ease;
    transition: scale 0.3s ease;
  }
  a:hover .indexResults__img img {
    scale: 1.06;
  }
  .indexResults__title {
    font-size: 1rem;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .indexResults__cat {
    font-size: 0.75rem;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  a:hover .indexResults__title, a:hover .indexResults__cat {
    opacity: 0.6;
  }
  .indexResults .swiper {
    margin-left: 0;
    margin-right: 0;
  }
  .indexResults .swiper a:hover {
    opacity: 1;
  }
  .indexResults__next, .indexResults__prev {
    display: none;
  }
}
@media print, (min-width: 1200px) {
  .indexResults__title {
    font-size: 1.25rem;
  }
  .indexResults__cat {
    margin-top: 12px;
    font-size: 0.875rem;
  }
}

.indexNews {
  background: #f6f6f6;
}
.indexNews__list {
  margin-top: calc(2.8vw + 40px - 16px);
}
.indexNews__list ul {
  overflow-y: auto;
  max-height: 300px;
  font-size: 0.875rem;
}
.indexNews__list li {
  padding: 16px 0;
  border-bottom: 1px solid #222;
  line-height: 1.5;
}
.indexNews__list a {
  color: var(--textColor);
  text-decoration: none;
}
.indexNews__date {
  display: block;
  font-weight: bold;
}
.indexNews__txt {
  display: block;
  margin-top: 8px;
}
.indexNews__btn {
  margin-top: 2em;
  font-family: "Jost", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
  text-align: right;
}
@media print, (min-width: 576px) {
  .indexNews__list {
    margin-top: calc(2.8vw + 40px - 20px);
  }
  .indexNews__list ul {
    font-size: 1rem;
  }
  .indexNews__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0;
  }
  .indexNews__date {
    width: 12em;
  }
  .indexNews__txt {
    width: calc(100% - 12em);
    margin: 0;
  }
  .indexNews__btn {
    margin-top: 2.5em;
  }
}
@media print, (min-width: 992px) {
  .indexNews__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .indexNews .title1 {
    width: 35%;
    text-align: left;
  }
  .indexNews__list {
    width: 65%;
    margin-top: -20px;
  }
}
@media print, (min-width: 1200px) {
  .indexNews__list {
    margin-top: -25px;
  }
  .indexNews__list li {
    padding: 25px 0;
  }
  .indexNews__date {
    width: 14em;
  }
  .indexNews__txt {
    width: calc(100% - 14em);
  }
}

/* article
-------------------- */
.articleDetail:first-child {
  margin-top: -40px;
}
.articleDetail .date {
  display: inline-block;
  margin-right: 0.5em;
  font-weight: bold;
}
.articleDetail .category {
  display: inline-block;
  font-size: 0.75rem;
  vertical-align: middle;
}
.articleDetail .category li {
  display: inline-block;
  margin-left: 0.3em;
  line-height: 1;
}
.articleDetail .category a {
  display: inline-block;
  padding: 0.5em 0.75em;
  background: #000;
  color: #FFF;
  text-decoration: none;
}
.articleDetail .title {
  margin-bottom: 1em;
  padding-bottom: 0.75em;
  font-size: 1.375rem;
  border-bottom: 1px solid #CCC;
  line-height: 1.5;
}
.articleDetail .title:not(:first-child) {
  margin-top: 0.5em;
}
.articleDetail .body {
  font-size: 0.875rem;
  line-height: 1.66;
}
.articleDetail .body .wp-block-heading {
  margin-top: 1.5em;
}
.articleDetail .body p {
  margin-top: 1em;
}
.articleDetail .body img {
  max-width: 100%;
  height: auto;
}
@media print, (min-width: 576px) {
  .articleDetail .date {
    margin-right: 0.7em;
    font-size: 1.25rem;
  }
  .articleDetail .category {
    margin-bottom: 0.5em;
  }
  .articleDetail .category a {
    padding: 0.75em;
  }
  .articleDetail .title {
    font-size: 1.75rem;
  }
  .articleDetail .body {
    font-size: 1rem;
  }
}
@media print, (min-width: 992px) {
  .articleDetail:first-child {
    margin-top: 0;
  }
}
@media print, (min-width: 1200px) {
  .articleDetail .title {
    font-size: 2rem;
  }
}

.articleList {
  border-top: 1px solid #CCC;
}
.title5 + .articleList {
  border-top: none;
}
.articleList:first-child {
  margin-top: -40px;
}
.articleList__item {
  padding: 24px 0;
  border-bottom: 1px solid #CCC;
}
.articleList__item::after {
  content: "";
  display: table;
  clear: both;
}
.articleList__item a {
  color: var(--textColor);
  text-decoration: none;
}
.articleList .date {
  display: inline-block;
  margin-right: 0.5em;
  font-size: 0.875rem;
  font-weight: bold;
}
.articleList .category {
  display: inline-block;
  font-size: 0.625rem;
  vertical-align: middle;
}
.articleList .category li {
  display: inline-block;
  margin-left: 0.3em;
  padding: 0.5em 0.75em;
  background: #000;
  color: #FFF;
  line-height: 1;
}
.articleList .title {
  margin-top: 12px;
  font-size: 0.875rem;
  line-height: 1.66;
}
@media print, (min-width: 576px) {
  .articleList__item {
    padding: 28px 0 24px;
  }
  .articleList .date {
    margin-right: 0.7em;
    font-size: 1rem;
  }
  .articleList .category {
    font-size: 0.75rem;
  }
  .articleList .title {
    font-size: 1rem;
  }
}
@media print, (min-width: 992px) {
  .articleList:first-child {
    margin-top: 0;
  }
}

.articlePager {
  font-size: 0.875rem;
  text-align: center;
}
.articlePager li {
  display: inline-block;
}
.articlePager a {
  color: var(--textColor);
  text-decoration: none;
}
.articlePager span.page-numbers,
.articlePager a.page-numbers {
  display: inline-block;
  width: 2.5em;
  padding: 0.75em 0;
  border: 1px solid #EEE;
  background: #f6f6f6;
  text-align: center;
}
.articlePager a.prev,
.articlePager a.next,
.articlePager span.dots {
  border: 1px solid #FFF;
  background: #FFF;
}
.articlePager span.current {
  background: #95dbc5;
  font-weight: bold;
}
.articlePager a.prev::before,
.articlePager a.next::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 6px);
  width: 12px;
  height: 12px;
  background: url(images/i-arrow.svg) no-repeat 0 0/100% 100%;
}
.articlePager a.prev {
  position: relative;
  width: auto;
  padding-left: 20px;
  padding-right: 10px;
}
.articlePager a.prev::before {
  left: 0;
  rotate: 180deg;
}
.articlePager a.next {
  position: relative;
  width: auto;
  padding-left: 10px;
  padding-right: 20px;
}
.articlePager a.next::before {
  right: 0;
}

.articleNavigation {
  margin-top: var(--gutters-l);
  padding: 0 5%;
  background: #f6f6f6;
  font-size: 0.75rem;
  line-height: 1.5;
}
.articleNavigation a {
  display: block;
  position: relative;
  padding-right: 30px;
  color: var(--textColor);
  text-decoration: none;
}
.articleNavigation a:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 6px);
  right: 0;
  width: 12px;
  height: 12px;
  background: url(images/i-arrow.svg) no-repeat 0 0/100% 100%;
}
.articleNavigation .nav-previous,
.articleNavigation .nav-next {
  padding: 5% 0;
}
.articleNavigation .nav-next:not(:first-child) {
  border-top: 1px solid #CCC;
}
.articleNavigation .nav-previous span,
.articleNavigation .nav-next span {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
}
@media print, (min-width: 576px) {
  .articleNavigation {
    padding: 30px 0;
    font-size: 0.875rem;
  }
  .articleNavigation a {
    height: 100%;
  }
  .articleNavigation .nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .articleNavigation .nav-previous,
  .articleNavigation .nav-next {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding: 5px 30px 0;
  }
  .articleNavigation .nav-next {
    border-left: 1px solid #CCC;
  }
  .articleNavigation .nav-next:first-child {
    margin-left: 50%;
  }
  .articleNavigation .nav-next:not(:first-child) {
    border-top: none;
  }
  .articleNavigation .nav-previous a {
    padding-left: 36px;
    padding-right: 0;
  }
  .articleNavigation .nav-next a {
    padding-right: 36px;
  }
  .articleNavigation .nav-previous a:before {
    right: auto;
    left: 0;
    rotate: 180deg;
  }
}
@media print, (min-width: 992px) {
  .articleNavigation {
    margin-top: var(--gutters-lg-l);
  }
}
@media print, (min-width: 1400px) {
  .articleNavigation {
    margin-top: var(--gutters-xxlg-l);
  }
}

.articleRelated {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.articleRelated li {
  width: 48%;
  margin-top: 16px;
}
.articleRelated li:nth-child(2n) {
  margin-left: 4%;
}
.articleRelated a {
  display: block;
  color: var(--textColor);
  text-decoration: none;
}
.articleRelated__img {
  overflow: hidden;
  display: block;
  position: relative;
  padding-top: 66.66%;
}
.articleRelated__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.articleRelated__name {
  display: block;
  margin: 0.75em 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}
@media print, (min-width: 576px) {
  .articleRelated {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .articleRelated li {
    width: 23.5%;
    margin-top: 24px;
  }
  .articleRelated li:not(:nth-child(4n+1)) {
    margin-left: 2%;
  }
  .articleRelated__name {
    font-size: 1rem;
  }
}

.articleSide {
  width: 90%;
  max-width: var(--contentWidth-small);
  margin: 0 auto;
  padding: 5%;
  border: 1px solid #CCC;
}
.articleSide a {
  color: var(--textColor);
  text-decoration: none;
}
.articleSide .wp-block-list:not(:first-child),
.articleSide .widget:not(:first-child) {
  margin-top: var(--gutters-s);
}
.articleSide .wp-block-heading {
  padding: 0 0 0.25em;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  border-bottom: 1px solid #CCC;
}
.articleSide .wp-block-heading:not(:first-child) {
  margin-top: 32px;
}
.articleSide .wp-block-categories-list {
  margin-top: 16px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.articleSide .wp-block-categories-list li {
  margin-top: 12px;
}
.articleSide .wp-block-archives-dropdown {
  margin-top: 16px;
  font-size: 1rem;
}
.articleSide .wp-block-archives-dropdown select {
  width: 100%;
  margin: 8px 0;
  padding: 1em 0 1em 1em;
}
.articleSide .wp-block-list {
  font-size: 0.875rem;
}
.articleSide .wp-block-list a {
  position: relative;
  display: block;
  margin-top: 8px;
  padding: 8px 0 8px 20px;
}
.articleSide .wp-block-list a:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 6px);
  left: 0;
  width: 12px;
  height: 12px;
  background: url(images/i-arrow.svg) no-repeat 0 0/100% 100%;
}
@media print, (min-width: 576px) {
  .articleSide .wp-block-heading {
    font-size: 1.25rem;
  }
  .articleSide .wp-block-categories-list {
    font-size: 1rem;
  }
  .articleSide .wp-block-list {
    font-size: 1rem;
  }
  .articleSide .wp-block-list a {
    padding-left: 24px;
  }
}
@media print, (min-width: 992px) {
  .articleSide {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    border: none;
    border-left: 1px solid #CCC;
    padding: 0 0 0 23.5%;
  }
  .articleSide .wp-block-list:not(:first-child),
  .articleSide .wp-block-group:not(:first-child) {
    margin-top: var(--gutters-lg-s);
  }
  .articleSide .wp-block-heading {
    padding: 0.25em 0;
    border-bottom: none;
  }
  .articleSide .wp-block-categories-list {
    margin-top: 24px;
  }
  .articleSide .wp-block-categories-list li {
    margin-top: 16px;
  }
}

/* company
-------------------- */
.companyIntro {
  overflow: hidden;
  position: relative;
}
.companyIntro .container-small {
  position: relative;
  z-index: 2;
}
.companyIntro__en {
  position: absolute;
  top: 20px;
  left: 10%;
}
.companyIntro__en img {
  width: auto;
  max-width: none;
  height: 90px;
}
@media print, (min-width: 576px) {
  .companyIntro__en img {
    height: 120px;
  }
}
@media print, (min-width: 992px) {
  .companyIntro__en {
    top: 50px;
    left: auto;
    right: -10px;
  }
  .companyIntro__en img {
    height: 12.86vw;
  }
}
@media print, (min-width: 1400px) {
  .companyIntro__en img {
    height: 180px;
  }
}

.outlineOfficer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.outlineOfficer dt {
  width: 9em;
}
.outlineOfficer dd {
  width: calc(100% - 9em);
}

.historyList {
  font-size: 0.875rem;
}
.historyList li {
  position: relative;
  padding-bottom: 1.75em;
  line-height: 1.5;
}
.historyList li::before {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 6px;
  width: 1px;
  height: 100%;
  background: #CCC;
}
.historyList li:last-child::before {
  display: none;
}
.historyList__date {
  position: relative;
  z-index: 2;
  display: block;
  padding-left: 30px;
  font-size: 1.125rem;
  font-weight: bold;
}
.historyList__date::before {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 13px;
  background: #95dbc5;
}
.historyList__txt {
  display: block;
  margin-top: 8px;
  padding-left: 30px;
}
@media print, (min-width: 576px) {
  .historyList {
    font-size: 1rem;
  }
  .historyList li::before {
    top: 8px;
  }
  .historyList__date {
    font-size: 1.25rem;
  }
  .historyList__date::before {
    top: 8px;
  }
}
@media print, (min-width: 992px) {
  .historyList li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .historyList li::before {
    left: 193px;
  }
  .historyList__date {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
    padding-left: 0;
  }
  .historyList__date::before {
    left: auto;
    right: 0;
  }
  .historyList__txt {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    margin-top: 4px;
    padding-left: 60px;
  }
}

/* results
-------------------- */
.resultIndex {
  margin: -40px 0 40px;
  font-size: 0.875rem;
  text-align: center;
}
.resultIndex li {
  display: inline-block;
  margin: 1em -1px 0 -0.3em;
  padding: 0.25em 1em;
  border-left: 1px solid #CCC;
  border-right: 1px solid #CCC;
}
.resultIndex a {
  display: block;
  color: var(--textColor);
  text-decoration: none;
}
@media print, (min-width: 576px) {
  .resultIndex {
    margin: -40px 0 60px;
    font-size: 1rem;
  }
}
@media print, (min-width: 992px) {
  .resultIndex {
    display: none;
  }
}

.resultsList__item {
  position: relative;
  margin-top: var(--gutters-l);
}
.resultsList__item:first-child {
  margin-top: 0;
}
.resultsList__item a {
  display: block;
  color: var(--textColor);
  text-decoration: none;
}
.resultsList__img {
  overflow: hidden;
  position: relative;
  padding-top: 66.66%;
}
.resultsList__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.resultsList__name {
  margin: 1em 0 0.5em;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}
.resultsList__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 0.875rem;
  line-height: 1.5;
}
.resultsList__data dt {
  width: 6em;
}
.resultsList__data dd {
  width: calc(100% - 6em);
}
.resultsList__category {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  padding: 1em;
  background: #000;
  color: #FFF;
  font-size: 0.75rem;
}
@media print, (min-width: 576px) {
  .resultsList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .resultsList__item {
    width: 47.5%;
  }
  .resultsList__item:nth-child(2) {
    margin-top: 0;
  }
}
@media print, (min-width: 992px) {
  .resultsList__item {
    width: 46.6%;
  }
  .resultsList__item a:hover {
    opacity: 1;
  }
  .resultsList__img img {
    -webkit-transition: scale 0.3s ease;
    transition: scale 0.3s ease;
  }
  .resultsList__img img:hover {
    scale: 1.06;
  }
  .resultsList__name, .resultsList__data {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  a:hover .resultsList__name, a:hover .resultsList__data {
    opacity: 0.6;
  }
}

.resultsHistory__list {
  padding: 24px 0;
  border-bottom: 1px solid #CCC;
}
.title2 + .resultsHistory__list {
  border-top: 1px solid #CCC;
}
.resultsHistory__list h3 {
  margin-bottom: 16px;
  color: #95dbc5;
  font-family: "Jost", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
  font-size: 1.375rem;
  font-weight: normal;
}
.resultsHistory__list ul {
  font-size: 0.875rem;
  line-height: 1.5;
}
.resultsHistory__list li {
  position: relative;
  padding: 4px 4px 4px 6em;
}
.resultsHistory__list li:nth-child(2n+1) {
  background: #f6f6f6;
}
.resultsHistory__date {
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  font-weight: bold;
}
.resultsHistory__name {
  display: block;
  font-weight: bold;
}
.resultsHistory__work {
  display: block;
}
@media print, (min-width: 576px) {
  .resultsHistory__list h3 {
    font-size: 1.75rem;
  }
  .resultsHistory__list ul {
    font-size: 1rem;
  }
  .resultsHistory__list li {
    position: relative;
    padding: 8px 8px 8px 8em;
  }
  .resultsHistory__list li:nth-child(2n+1) {
    background: #f6f6f6;
  }
  .resultsHistory__date {
    top: 8px;
    left: 8px;
  }
}
@media print, (min-width: 1200px) {
  .resultsHistory__list li {
    padding: 12px 8px 12px 8em;
  }
  .resultsHistory__date {
    top: 12px;
    left: 8px;
  }
  .resultsHistory__name {
    display: inline-block;
    margin-right: 1em;
  }
  .resultsHistory__work {
    display: inline-block;
  }
}

.resultsDetail__img {
  margin-bottom: 16px;
}
.resultsDetail__img img {
  width: 100%;
}
.resultsDetail__intro {
  font-size: 0.875rem;
  line-height: 2;
}
.resultsDetail__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.resultsDetail__data dt {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 30%;
          flex: 1 0 30%;
  padding: 8px 0;
  border-bottom: 1px solid #CCC;
}
.resultsDetail__data dt span {
  display: block;
  height: 32px;
  margin-right: 16px;
  border-radius: 32px;
  background: #95dbc5;
  line-height: 32px;
  text-align: center;
}
.resultsDetail__data dd {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 60%;
          flex: 1 1 60%;
  padding: 10px 0;
  border-bottom: 1px solid #CCC;
  line-height: 1.5;
}
.resultsDetail__overview {
  margin-top: 16px;
}
.resultsDetail__body {
  font-size: 0.875rem;
  line-height: 2;
}
.resultsDetail__body p {
  margin-top: 1em;
}
.resultsDetail__flow {
  margin-top: 32px;
}
.resultsDetail__flowitem {
  margin-top: 16px;
}
.resultsDetail__flowitem img {
  width: 100%;
}
@media print, (min-width: 576px) {
  .resultsDetail__img {
    margin-bottom: 24px;
  }
  .resultsDetail__img img {
    max-height: 75vw;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .resultsDetail__intro, .resultsDetail__body {
    font-size: 1rem;
  }
  .resultsDetail__overview, .resultsDetail__flowitem {
    margin-top: 24px;
  }
  .resultsDetail__data dt {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 180px;
            flex: 1 0 180px;
    padding: 12px 0;
  }
  .resultsDetail__data dd {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(100% - 180px);
            flex: 1 1 calc(100% - 180px);
    padding: 16px 0;
  }
  .resultsDetail__flow {
    margin-top: 48px;
  }
  h2 + .resultsDetail__flow {
    margin-top: 32px;
  }
}
@media print, (min-width: 992px) {
  .resultsDetail__img {
    margin-bottom: var(--gutters-lg-s);
  }
  .resultsDetail__img img {
    max-height: 50vw;
  }
  .resultsDetail__flow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .resultsDetail__flowitem {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 46.6%;
            flex: 1 1 46.6%;
    margin: 0;
  }
  .resultsDetail__flowitem:not(:first-child) {
    margin: 0 0 0 6.8%;
  }
  .resultsDetail__flowitem p:first-child {
    margin-top: 0;
  }
  .resultsDetail__flow {
    margin-top: var(--gutters-lg-m);
  }
}
@media print, (min-width: 1200px) {
  .resultsDetail__intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .resultsDetail__data {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 46.6%;
            flex: 1 0 46.6%;
  }
  .resultsDetail__data dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35%;
            flex: 0 0 35%;
    max-width: 180px;
  }
  .resultsDetail__data dd {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 65%;
            flex: 1 0 65%;
  }
  .resultsDetail__overview {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 46.6%;
            flex: 1 1 46.6%;
    margin: 6px 0 0 6.8%;
  }
}
@media print, (min-width: 1400px) {
  .resultsDetail__img {
    margin-bottom: var(--gutters-xxlg-s);
  }
  .resultsDetail__img img {
    max-height: 708px;
  }
  .resultsDetail__flow {
    margin-top: var(--gutters-xxlg-m);
  }
}

/* recruitment
-------------------- */
.recruitIndexTopimg {
  overflow: hidden;
  position: relative;
  padding-bottom: 60px;
  color: #000;
  background: #EEE;
}
.recruitIndexTopimg__catch {
  position: absolute;
  z-index: 4;
  left: 0;
  top: calc(50% - 4.25vw - 0.75em - 30px);
  width: 97%;
}
.recruitIndexTopimg__title {
  font-size: 8.5vw;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.recruitIndexTopimg__title span {
  display: inline-block;
  padding: 8px 8px 5px;
  background: #FFF;
}
.recruitIndexTopimg__description {
  margin-top: 0.5em;
  font-size: 1rem;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.recruitIndexTopimg__description span {
  display: inline-block;
  padding: 8px 8px 5px;
  background: #FFF;
}
.recruitIndexTopimg__img img {
  width: 100%;
}
.recruitIndexTopimg__en {
  position: absolute;
  bottom: -5px;
  left: 3%;
}
.recruitIndexTopimg__en img {
  width: auto;
  max-width: none;
  height: 90px;
}
@media print, (min-width: 576px) {
  .recruitIndexTopimg {
    padding-bottom: 96px;
  }
  .recruitIndexTopimg__catch {
    top: calc(50% - 1.5em - 1.125em - 48px);
  }
  .recruitIndexTopimg__title {
    font-size: 3rem;
  }
  .recruitIndexTopimg__title span {
    padding: 8px 12px 5px;
  }
  .recruitIndexTopimg__description {
    font-size: 1.5rem;
  }
  .recruitIndexTopimg__description span {
    padding: 8px 12px 5px;
  }
  .recruitIndexTopimg__en img {
    height: 120px;
  }
}
@media print, (min-width: 992px) {
  .recruitIndexTopimg__catch {
    top: calc(50% - 1.5em - 1.6875em - 48px);
    left: 4%;
  }
  .recruitIndexTopimg__description {
    margin-top: 1.25em;
  }
  .recruitIndexTopimg__en img {
    height: 12.86vw;
  }
}
@media print, (min-width: 1200px) {
  .recruitIndexTopimg__catch {
    top: calc(50% - 2em - 2.25em - 48px);
  }
  .recruitIndexTopimg__title {
    font-size: 4rem;
  }
  .recruitIndexTopimg__description {
    font-size: 2rem;
  }
}
@media print, (min-width: 1400px) {
  .recruitIndexTopimg__en img {
    height: 180px;
  }
}

.recruitIndexIntro__txt1 {
  font-size: 8.5vw;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
.recruitIndexIntro__txt2 {
  margin-top: 1em;
  font-size: 0.875rem;
  line-height: 2;
  text-align: center;
}
.recruitIndexIntro__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 3vw;
  line-height: 1.5;
}
.recruitIndexIntro__list li {
  position: relative;
  width: 23%;
  padding-top: 23%;
}
.recruitIndexIntro__list li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #95dbc5;
  text-align: center;
}
@media print, (min-width: 576px) {
  .recruitIndexIntro__txt1 {
    font-size: 3rem;
  }
  .recruitIndexIntro__txt2 {
    font-size: 1rem;
  }
  .recruitIndexIntro__list {
    max-width: 588px;
    font-size: 1rem;
  }
  .recruitIndexIntro__list li {
    width: 21.5%;
    padding-top: 21.5%;
  }
}
@media print, (min-width: 992px) {
  .recruitIndexIntro__list {
    max-width: 686px;
    font-size: 1.25rem;
  }
  .recruitIndexIntro__list li {
    width: 140px;
    height: 140px;
    padding-top: 0;
  }
}
@media print, (min-width: 1200px) {
  .recruitIndexIntro__txt1 {
    font-size: 4rem;
  }
}

.recruitIndexAbout {
  overflow: hidden;
  position: relative;
}
.recruitIndexAbout .container {
  position: relative;
  z-index: 2;
}
.recruitIndexAbout__en {
  position: absolute;
  bottom: calc(50% + 20px);
  left: 20%;
}
.recruitIndexAbout__en img {
  width: auto;
  max-width: none;
  height: 90px;
}
@media print, (min-width: 576px) {
  .recruitIndexAbout__en img {
    height: 120px;
  }
}
@media print, (min-width: 992px) {
  .recruitIndexAbout {
    padding-bottom: 16px;
  }
  .recruitIndexAbout__en {
    bottom: 0;
    left: auto;
    right: -4px;
  }
  .recruitIndexAbout__en img {
    height: 12.86vw;
  }
  .recruitIndexAbout .link-txt1 {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .recruitIndexAbout a:hover {
    opacity: 1;
  }
  .recruitIndexAbout a:hover .link-txt1 {
    opacity: 0.6;
  }
}
@media print, (min-width: 1400px) {
  .recruitIndexAbout__en img {
    height: 180px;
  }
}

.recruitIndexVoice {
  overflow: hidden;
  position: relative;
}
.recruitIndexVoice__title, .recruitIndexVoice__list {
  position: relative;
  z-index: 2;
}
.recruitIndexVoice__en {
  position: absolute;
  top: -2px;
  left: -8px;
}
.recruitIndexVoice__en img {
  width: auto;
  max-width: none;
  height: 90px;
}
@media print, (min-width: 576px) {
  .recruitIndexVoice__en {
    top: -4px;
  }
  .recruitIndexVoice__en img {
    height: 120px;
  }
}
@media print, (min-width: 992px) {
  .recruitIndexVoice__en img {
    height: 12.86vw;
  }
}
@media print, (min-width: 1400px) {
  .recruitIndexVoice__en img {
    height: 180px;
  }
}

/* rectuitVoice
-------------------- */
.rectuitVoice {
  position: relative;
  padding: 24px 16px;
  background: #dff4ed url(images/recruitment/voice-voice.webp) no-repeat right -5px top -5px/80% auto;
}
.rectuitVoice__header {
  margin-bottom: var(--gutters-m);
}
.rectuitVoice__profile {
  position: relative;
  z-index: 1;
}
.rectuitVoice__title {
  margin-top: 24px;
  font-size: 1.375rem;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.7;
}
.rectuitVoice__title span {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  padding: 4px;
  background: #FFF;
}
.rectuitVoice__title .u-font-xxsmall {
  padding: 0 4px;
  background: none;
  font-size: 0.5em;
}
.rectuitVoice__data1 {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.5;
}
.rectuitVoice__data1 span {
  display: inline-block;
  padding: 0.5em 1em;
  background: #95dbc5;
}
.rectuitVoice__data2 {
  margin-top: 16px;
  position: relative;
  padding-left: 40px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.rectuitVoice__data2::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 32px;
  height: 1px;
  background-color: var(--textColor);
}
.rectuitVoice__img {
  margin-top: var(--gutters-s);
}
.rectuitVoice__img img {
  width: 100%;
}
.rectuitVoice__content {
  margin-top: var(--gutters-s);
}
.rectuitVoice__content h5 {
  display: inline-block;
  padding: 0 0 3px;
  border-bottom: 2px solid #95dbc5;
  line-height: 1.3;
}
.rectuitVoice__content h5 br {
  display: none;
}
.rectuitVoice__content p {
  margin-top: 1em;
  font-size: 0.875rem;
  line-height: 2;
}
@media print, (min-width: 576px) {
  .rectuitVoice {
    padding: 5%;
    background-size: 60% auto;
  }
  .rectuitVoice__title {
    font-size: 4vw;
    line-height: 1.5;
  }
  .rectuitVoice__data1 {
    font-size: 1rem;
  }
  .rectuitVoice__data2 {
    margin-top: 24px;
    padding-left: 56px;
    font-size: 1rem;
  }
  .rectuitVoice__data2::before {
    width: 40px;
  }
  .rectuitVoice__content h5 {
    font-size: 1.25rem;
  }
  .rectuitVoice__content p {
    font-size: 1rem;
  }
}
@media print, (min-width: 992px) {
  .rectuitVoice {
    background-size: 683px auto;
  }
  .rectuitVoice__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-bottom: var(--gutters-lg-m);
  }
  .rectuitVoice__profile {
    overflow: visible;
    position: relative;
    z-index: 2;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 52.5%;
            flex: 0 0 52.5%;
  }
  .rectuitVoice__title {
    width: 150%;
    font-size: 2.5rem;
  }
  .rectuitVoice__img {
    position: relative;
    z-index: 1;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 47.5%;
            flex: 0 0 47.5%;
    margin-top: 0;
  }
  .rectuitVoice__content {
    margin-top: var(--gutters-lg-s);
  }
}
@media print, (min-width: 1200px) {
  .rectuitVoice__title {
    font-size: 2.75rem;
  }
  .rectuitVoice__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .rectuitVoice__content h5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12em;
            flex: 0 0 12em;
    border: none;
    border-right: 3px solid #95dbc5;
  }
  .rectuitVoice__content h5 br {
    display: inline-block;
  }
  .rectuitVoice__content p {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 90%;
            flex: 1 1 90%;
    margin: 0;
    padding-left: 2em;
  }
}
@media print, (min-width: 1400px) {
  .rectuitVoice__header {
    margin-bottom: var(--gutters-xxlg-m);
  }
  .rectuitVoice__title {
    font-size: 3rem;
  }
  .rectuitVoice__content {
    margin-top: var(--gutters-xxlg-s);
  }
}

/* rectuitSchedule
-------------------- */
.rectuitSchedule {
  padding: 8% 5%;
  background: #F6F6F6;
}
.rectuitSchedule .title2 {
  margin-bottom: 32px;
}
.rectuitSchedule__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding-left: 30px;
}
.rectuitSchedule__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 6px;
  width: 1px;
  height: 100%;
  background: #CCC;
}
.rectuitSchedule__item:not(:last-child) {
  padding-bottom: 32px;
}
.rectuitSchedule__item:last-child::before {
  display: none;
}
.rectuitSchedule__time {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  color: #95dbc5;
  font-size: 7vw;
  font-family: "Jost", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
  font-weight: 500;
}
.rectuitSchedule__time::before {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: -30px;
  width: 13px;
  height: 13px;
  border-radius: 13px;
  background: #95dbc5;
}
.rectuitSchedule__img {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 100%;
  margin-top: 16px;
}
.rectuitSchedule__img img {
  width: 100%;
}
.rectuitSchedule__title {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 100%;
  margin-top: 8px;
  font-size: 1.25rem;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.5;
}
.rectuitSchedule__txt {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  width: 100%;
  margin-top: 4px;
  font-size: 0.875rem;
  line-height: 2;
}
.rectuitSchedule__txt p {
  margin-top: 1em;
}
@media print, (min-width: 576px) {
  .rectuitSchedule .title2 {
    margin-bottom: 48px;
  }
  .rectuitSchedule__item {
    padding-left: 200px;
  }
  .rectuitSchedule__item::before {
    top: 21px;
    left: 156px;
  }
  .rectuitSchedule__item:not(:last-child) {
    padding-bottom: 48px;
  }
  .rectuitSchedule__time {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    font-size: 2.5rem;
  }
  .rectuitSchedule__time::before {
    top: 14px;
    left: 150px;
  }
  .rectuitSchedule__title {
    margin-top: 0;
    font-size: 1.625rem;
  }
  .rectuitSchedule__txt {
    font-size: 1rem;
  }
}
@media print, (min-width: 992px) {
  .rectuitSchedule {
    padding: 64px 8%;
  }
  .rectuitSchedule .title2 {
    margin-bottom: 64px;
  }
  .rectuitSchedule__item {
    display: block;
  }
  .rectuitSchedule__item::after {
    content: "";
    clear: both;
    display: table;
  }
  .rectuitSchedule__item:not(:last-child) {
    padding-bottom: 64px;
  }
  .rectuitSchedule__img {
    float: right;
    width: 47.5%;
    margin: 0 0 0 5%;
  }
}
@media print, (min-width: 1200px) {
  .rectuitSchedule__item {
    padding-left: 240px;
  }
  .rectuitSchedule__item::before {
    top: 21px;
    left: 186px;
  }
  .rectuitSchedule__time {
    font-size: 3rem;
  }
  .rectuitSchedule__time::before {
    top: 14px;
    left: 180px;
  }
  .rectuitSchedule__title {
    margin-top: 0;
    font-size: 1.625rem;
  }
}

/* sitemap
-------------------- */
.sitemap {
  line-height: 1.5;
}
.sitemap a {
  display: block;
  color: var(--textColor);
  text-decoration: none;
}
.sitemap .menu {
  border-top: 1px solid #CCC;
  font-size: 1rem;
}
.sitemap .menu li {
  padding: 5px 0;
  border-bottom: 1px solid #CCC;
  font-weight: bold;
}
.sitemap .menu a {
  position: relative;
  padding: 15px 0 15px 32px;
}
.sitemap .menu a::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 6px);
  left: 3px;
  width: 12px;
  height: 12px;
  background: url(images/i-arrow.svg) no-repeat 0 0/100% 100%;
}
.sitemap .menu + .menu {
  border-top: none;
}
.sitemap .sub-menu {
  margin: 0 0 10px 48px;
  border-top: none;
  font-size: 0.875rem;
}
.sitemap .sub-menu li {
  padding: 0;
  border-bottom: none;
  font-weight: normal;
}
.sitemap .sub-menu a {
  padding: 7px 0;
}
.sitemap .sub-menu a::after {
  display: none;
}
@media print, (min-width: 576px) {
  .sitemap .menu {
    font-size: 1.25rem;
  }
  .sitemap .sub-menu {
    font-size: 1rem;
  }
}
@media print, (min-width: 992px) {
  .sitemap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sitemap .menu {
    width: 31.25%;
    border-top: none;
  }
  .sitemap .menu li {
    border-bottom: none;
  }
}

/* wordpress
-------------------- */
.screen-reader-text {
  display: none;
}

.page-title {
  font-size: 1.375rem;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.5;
}
@media print, (min-width: 576px) {
  .page-title {
    font-size: 1.75rem;
  }
}
@media print, (min-width: 1200px) {
  .page-title {
    font-size: 2rem;
  }
}

.archive .entry-header,
.search-results .entry-header {
  margin-top: var(--gutters-m);
  padding-top: var(--gutters-m);
  border-top: 1px solid #CCC;
}

.entry-title {
  margin-bottom: 5px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
}
@media print, (min-width: 576px) {
  .entry-title {
    font-size: 1.625rem;
  }
}
@media print, (min-width: 1200px) {
  .entry-title {
    font-size: 2rem;
  }
}

@media print, (min-width: 576px) {
  .search-results .entry-title {
    font-size: 1.375rem;
  }
}

.entry-meta,
.entry-footer {
  font-size: 0.75rem;
  line-height: 1.5;
}
@media print, (min-width: 576px) {
  .entry-meta,
  .entry-footer {
    font-size: 0.875rem;
  }
}

.entry-content {
  margin-top: var(--gutters-s);
  margin-bottom: var(--gutters-s);
  font-size: 0.875rem;
  line-height: 1.5;
}
@media print, (min-width: 576px) {
  .entry-content {
    font-size: 1rem;
  }
}
@media print, (min-width: 992px) {
  .entry-content {
    margin-top: var(--gutters-lg-s);
    margin-bottom: var(--gutters-lg-s);
  }
}
@media print, (min-width: 1400px) {
  .entry-content {
    margin-top: var(--gutters-xxlg-s);
    margin-bottom: var(--gutters-xxlg-s);
  }
}

.entry-summary {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media print, (min-width: 576px) {
  .entry-summary {
    font-size: 1rem;
  }
}

.cat-links,
.comments-link,
.edit-link {
  display: block;
  margin-top: 5px;
}

.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  width: var(--contentWidth);
}

.main > .wp-block-group,
.layout2column__main .wp-block-group {
  font-size: 0.875rem;
  line-height: 1.3;
}
.main > .wp-block-group p,
.layout2column__main .wp-block-group p {
  line-height: 2;
}

@media print, (min-width: 576px) {
  .main > .wp-block-group,
  .layout2column__main .wp-block-group {
    font-size: 1rem;
  }
}
.main > .wp-block-group .wp-block-list,
.layout2column__main .wp-block-list {
  list-style-type: disc;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
}
.main > .wp-block-group .wp-block-list li:not(:last-child),
.layout2column__main .wp-block-list li:not(:last-child) {
  margin-bottom: 8px;
}

.comments-area,
.comment-respond {
  margin-top: 50px;
}

.comments-title,
.comment-reply-title {
  font-size: 1.125rem;
}

.comment-list,
.comment-form {
  margin-top: 20px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.comment-list li {
  margin-top: 20px;
}

.comment-content {
  margin-top: 8px;
}

.comment-form p {
  margin-top: 20px;
}

.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
  display: block;
}

.comment-form-comment textarea,
.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
  width: 100%;
  padding: 5px;
  font-size: 16px;
}

@media print, (min-width: 576px) {
  .comment-form-author input,
  .comment-form-email input,
  .comment-form-url input {
    width: 50%;
  }
}
/* wordpress not-found
-------------------- */
.not-found .page-title {
  font-family: "Jost", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
  font-weight: 500;
}
.not-found .page-title span {
  font-size: 1.5em;
}
.not-found .page-content,
.not-found .search-form {
  margin-top: var(--gutters-m);
}
.not-found .page-content {
  font-size: 0.875rem;
  line-height: 2;
}
.not-found .page-content p:not(:first-child) {
  margin-top: 1em;
}
.not-found .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 360px;
}
.not-found .search-form label {
  width: calc(100% - 65px);
}
.not-found .search-field {
  width: 100%;
  padding: 5px;
  font-size: 16px;
  line-height: 26px;
}
.not-found .search-submit {
  width: 60px;
  margin-left: 5px;
  padding: 5px 0;
  font-size: 14px;
  line-height: 26px;
  text-align: center;
}
@media print, (min-width: 576px) {
  .not-found .page-title {
    font-size: 2.5rem;
  }
  .not-found .page-content {
    font-size: 1rem;
  }
  .not-found .search-submit {
    font-size: 16px;
  }
}
@media print, (min-width: 992px) {
  .not-found .page-content,
  .not-found .search-form {
    margin-top: var(--gutters-lg-m);
  }
}
@media print, (min-width: 1400px) {
  .not-found .page-content,
  .not-found .search-form {
    margin-top: var(--gutters-xxlg-m);
  }
}