@charset "UTF-8";
/*
Theme Name:
Theme URI:
Author: Ryoka Ikematsu
Description:
Version: 1.0
*/
/** Global + Mixin
 * -------------------------------------------------------------------
 */
/*
 * Fonts
 * -------------------------------------------------------------------
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick-theme.css");
/* A Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

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

main {
  display: block;
}

body, p, figure, blockquote, dl, dd, table, address, pre, iframe, form {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

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

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

small {
  font-size: 80%;
}

a {
  text-decoration: none;
  color: inherit;
  background-color: transparent;
}

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

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

input, button, optgroup, select, textarea {
  margin: 0;
  padding: 0;
  text-align: inherit;
  vertical-align: middle;
  text-transform: inherit;
  color: inherit;
  border-radius: 0;
  background: transparent;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  /* 1 */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-collapse: collapse;
  border-color: inherit;
}

caption {
  text-align: left;
}

td, th {
  padding: 0;
  vertical-align: top;
}

th {
  text-align: left;
  font-weight: bold;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

abbr[title] {
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

hr {
  clear: both;
  overflow: visible;
  box-sizing: content-box;
  height: 0;
  margin: 0;
  color: inherit;
  border-top-width: 1px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
/*
 * HTML
 * -------------------------------------------------------------------
 */
html {
  font-size: 62.5%;
}

body {
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6em;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  outline: none;
}

/*
 * wrapper
 * -------------------------------------------------------------------
 */
.wrapper {
  display: block;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0;
}
.wrapper > section {
  position: relative;
  z-index: 3;
}

.inner {
  position: relative;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .inner {
    padding: 0 25px;
  }
}
@media screen and (min-width: 992px) {
  .inner {
    padding: 0;
  }
}

@keyframes menu-container-appeared {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes menu-container-leaved {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes menu-overlay-appeared {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes menu-overlay-leaved {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * MODAL PHOTO
 * -------------------------------------------------------------------
 */
@keyframes modal-photo-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal-photo-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * SCROLL DOWN
 * -------------------------------------------------------------------
 */
@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/*
 * Youtube
 * -------------------------------------------------------------------
 */
@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter, div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.wp-caption {
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
  border: 1px solid #eeeeee;
  background: #ffffff;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  width: auto;
  max-width: 98.5%;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0 none;
}

.wp-caption p.wp-caption-text {
  margin: 0;
  padding: 0 4px 5px;
  font-size: 11px;
  line-height: 17px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  word-wrap: normal !important;
  border: 0;
  clip-path: inset(50%);
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 5px;
  left: 5px;
  display: block;
  clip: auto !important;
  width: auto;
  height: auto;
  padding: 15px 23px 14px;
  text-decoration: none;
  color: #444444;
  background-color: #cccccc;
  font-size: 1em;
  line-height: normal;
  clip-path: none;
  /* Above WP toolbar. */
}

/*
 * Module
 * -------------------------------------------------------------------
 */
.roboto {
  font-family: "Noto Sans JP", sans-serif;
}

.light {
  font-weight: 300;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.pc-area {
  display: none;
}
@media screen and (min-width: 992px) {
  .pc-area {
    display: block;
  }
}

.sp-area {
  display: block;
}
@media screen and (min-width: 992px) {
  .sp-area {
    display: none;
  }
}

.new-line--sp {
  display: block;
}
@media screen and (min-width: 992px) {
  .new-line--sp {
    display: none;
  }
}
.new-line--pc {
  display: none;
}
@media screen and (min-width: 992px) {
  .new-line--pc {
    display: block;
  }
}

a[href^="tel:"] {
  pointer-events: initial;
}
@media screen and (min-width: 992px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
a:hover {
  transition: all 0.2s;
  opacity: 0.7;
}

.zoom-in img {
  transition: 0.3s ease-in-out;
  transform: scale(1);
}
.zoom-in a:hover img {
  transform: scale(1.05);
}

/*========= Animation =========*/
.animate__animated {
  /* フェードアップ */
  /* フェードダウン */
  /* 右から左にフェード */
  /* 左から右にフェード */
}
.animate__animated.js_fadeup {
  animation-name: fadeup;
  animation-duration: 1s;
  opacity: 0;
}
@keyframes fadeup {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.animate__animated.js_fadedown {
  animation-name: fadedown;
  animation-duration: 1s;
  opacity: 0;
}
@keyframes fadedown {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.animate__animated.js_fadeleft {
  animation-name: fadeleft;
  animation-duration: 1s;
  opacity: 0;
}
@keyframes fadeleft {
  from {
    transform: translateX(150px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.animate__animated.js_faderight {
  animation-name: faderight;
  animation-duration: 1s;
  opacity: 0;
}
@keyframes faderight {
  from {
    transform: translateX(-150px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.nav-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
}
.nav-header__container {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  max-width: 1100px;
  height: 6rem;
  margin: 0 auto;
  padding: 10px 0 10px 10px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (min-width: 992px) {
  .nav-header__container {
    display: block;
    height: 15rem;
    padding: 15px;
  }
}
@media screen and (min-width: 992px) {
  .nav-header__upper {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: space-between;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    margin-bottom: 1.2rem;
  }
}
.nav-header__tel {
  background-color: #0073c0;
  padding: 15px 1.6rem;
  display: inline-block;
  border-radius: 0.8rem;
  color: #ffffff;
  line-height: 1;
  font-weight: bold;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  max-width: 27.4rem;
}
.nav-header__tel p {
  text-align: center;
  font-size: 2.2rem;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", Meiryo, Arial, sans-serif;
}
.nav-header__tel span {
  display: block;
  font-size: 1rem;
  margin-top: 0.8rem;
  text-align: center;
}
.nav-header__tel::before {
  content: "";
  background-image: url("../img/icn_tel.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 31px;
  height: 34px;
  display: inline-block;
  margin-right: 10px;
}
.nav-header__logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  color: #444444;
  font-size: 1.8rem;
}
@media screen and (min-width: 992px) {
  .nav-header__logo {
    font-size: 3.8rem;
  }
}
.nav-header__logo-img {
  display: block;
  height: 2.4rem;
  margin-right: 10px;
}
@media screen and (min-width: 992px) {
  .nav-header__logo-img {
    height: 4.6rem;
    margin-right: 15px;
  }
}
.nav-header__menu {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 992px) {
  .nav-header__menu {
    display: flex;
    align-items: center;
  }
}
.nav-header__menu-item {
  position: relative;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  width: 100%;
  height: 100%;
}
.nav-header__link {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-direction: column;
  min-width: 100px;
  height: 100%;
  padding: 0 16px;
  text-align: center;
  color: #444444;
  font-size: 2.4rem;
}
.nav-header__link:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  display: block;
  width: 0;
  height: 3px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  background: #29c4a0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.nav-header__link:hover:after {
  width: 100%;
  opacity: 1;
}
.nav-header__contact {
  margin-left: 1.6rem;
  padding: 1.2rem 3.2rem;
  color: #ffffff;
  border-radius: 100px;
  background-color: #29c4a0;
  position: relative;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  text-align: center;
  text-decoration: none;
  outline: none;
  line-height: 1;
  border: #0073c0 1px solid;
  background-color: #0073c0;
  color: #ffffff;
  padding: 0.8rem 3.2rem;
  display: inline-flex;
}
.nav-header__contact::after {
  content: "";
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
  position: absolute;
  top: 50%;
  right: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.nav-header__contact:hover {
  filter: brightness(104%);
}
.nav-header__contact:hover::after {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  right: 10px;
}
.nav-header__contact:hover {
  background-color: #25af8f;
}
.nav-header__toggle {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-direction: column;
  width: 6rem;
  height: 6rem;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (min-width: 992px) {
  .nav-header__toggle {
    display: none;
  }
}
.nav-header__toggle:hover {
  background: #25af8f;
}
.nav-header__toggle-line {
  display: block;
  width: 45%;
  border-bottom: 2px solid #29c4a0;
}
.nav-header__toggle-line:nth-child(2) {
  margin: 14% 0;
}

.nav-drawer {
  position: fixed;
  z-index: 1002;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.nav-drawer__container {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  width: 80%;
  min-width: 200px;
  max-width: 350px;
  height: 100%;
  animation-duration: var(--nav-drawer-duration);
  animation-fill-mode: forwards;
  border-left: #eeeeee 1px solid;
  background: #ffffff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.01);
}
.nav-drawer[data-open=true] .nav-drawer__container {
  animation-name: menu-container-appeared;
}
.nav-drawer[data-open=false] .nav-drawer__container {
  animation-name: menu-container-leaved;
}
.nav-drawer__menu {
  display: block;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-drawer__menu-item {
  border-bottom: #eeeeee 1px dashed;
}
.nav-drawer__menu-item:hover {
  background: #29c4a0;
}
.nav-drawer__menu-item:hover .nav-drawer__link {
  color: #ffffff;
}
.nav-drawer__link {
  position: relative;
  display: block;
  align-items: center;
  justify-content: space-between;
  padding: 1em 2.5em 1em 2em;
  text-decoration: none;
  letter-spacing: 0.01em;
  color: inherit;
}
.nav-drawer__link-main {
  display: block;
  font-weight: 500;
}
.nav-drawer__link-sub {
  display: block;
  color: #ffffff;
}
.nav-drawer__tel {
  max-width: 26rem;
  width: 100%;
  margin: 2.4rem auto 0;
}
.nav-drawer__tel-link {
  display: block;
  width: 100%;
  height: 100%;
}
.nav-drawer__menu-button {
  display: flex;
  margin: 0;
  padding: 0;
}
.nav-drawer__button-close {
  position: relative;
  width: 6rem;
  height: 6rem;
  margin: 0 0 0 auto;
  padding: 0;
  cursor: pointer;
  border: none;
  background-color: #29c4a0;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.nav-drawer__button-close:hover, .nav-drawer__button-close:focus {
  outline: none;
  background: #32d4af;
}
.nav-drawer__button-close-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 2px;
  margin: auto;
  background: #ffffff;
}
.nav-drawer__button-close-line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.nav-drawer__button-close-line:nth-child(2) {
  transform: translateY(0) rotate(-45deg);
}
.nav-drawer__overlay {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  animation-duration: var(--nav-drawer-duration);
  animation-fill-mode: forwards;
  background: rgba(0, 0, 0, 0.08);
}
.nav-drawer[data-open=true] .nav-drawer__overlay {
  animation-name: menu-overlay-appeared;
}
.nav-drawer[data-open=false] .nav-drawer__overlay {
  animation-name: menu-overlay-leaved;
}

.nav-pagetop {
  position: fixed;
  z-index: -1000;
  right: 10px;
  bottom: 15px;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-direction: column;
  width: 46px;
  height: 46px;
  cursor: pointer;
  opacity: 0;
  border: #29c4a0 1px solid;
  background: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  background-image: url("../img/icn_arrow_up.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}
@media screen and (min-width: 768px) {
  .nav-pagetop {
    right: 20px;
    bottom: 70px;
    background-color: #ffffff;
  }
}
.nav-pagetop.active {
  z-index: 1000;
  opacity: 1;
}
.nav-pagetop:hover {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  background-size: 28px;
}

.mainvisual__container {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding-top: 6rem;
}
@media screen and (min-width: 992px) {
  .mainvisual__container {
    padding-top: 15rem;
  }
}
.mainvisual .slide__img {
  width: 100%;
}

.scrolldown {
  position: absolute;
  z-index: 1;
  right: 10%;
  bottom: 30px;
}
@media screen and (min-width: 768px) {
  .scrolldown {
    bottom: 5%;
  }
}
.scrolldown span {
  position: absolute;
  bottom: -2px;
  left: 10px;
  width: 10px;
  height: auto;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #ffffff;
  font-size: 10px;
  line-height: 1.25;
}
.scrolldown:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  border-radius: 50%;
  background: #ffffff;
}
.scrolldown:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 50px;
  background: #ffffff;
}

.pagevisual {
  position: relative;
  z-index: 0;
  margin: 6rem auto 0;
  padding: 0 15px;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 992px) {
  .pagevisual {
    margin: 15rem auto 0;
  }
}
.pagevisual--company {
  background-image: url("../img/mv_page_company.jpg");
  background-repeat: no-repeat;
}
.pagevisual--recruit {
  background-image: url("../img/mv_page_recruit.jpg");
  background-repeat: no-repeat;
}
.pagevisual--business, .pagevisual--business-other, .pagevisual--business-fence, .pagevisual--business-welder {
  background-image: url("../img/mv_page_business.jpg");
  background-repeat: no-repeat;
}
.pagevisual--works {
  background-image: url("../img/mv_page_works.jpg");
  background-repeat: no-repeat;
}
.pagevisual::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background-color: rgba(255, 255, 255, 0.5);
}
.pagevisual__container {
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: flex-end;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 15px;
}
@media screen and (min-width: 768px) {
  .pagevisual__container {
    padding: 3.2rem 15px;
  }
}
@media screen and (min-width: 992px) {
  .pagevisual__container {
    padding: 7.2rem 15px;
  }
}
.pagevisual__txt-main {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", Meiryo, Arial, sans-serif;
  font-size: 2rem;
  text-align: right;
  color: #03568d;
  font-weight: bold;
  text-shadow: 2px 2px 0 #ffffff, -2px -2px 0 #ffffff, -2px 2px 0 #ffffff, 2px -2px 0 #ffffff, 0px 2px 0 #ffffff, -2px 0 #ffffff, -2px 0 0 #ffffff, 2px 0 0 #ffffff;
}
@media screen and (min-width: 768px) {
  .pagevisual__txt-main {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .pagevisual__txt-main {
    font-size: 2.8rem;
  }
}
.pagevisual__txt-sub {
  color: #444444;
  display: none;
}

.breadcrumbs__container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.8rem 15px;
}
.breadcrumbs__list {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs__list-item {
  font-size: 1.4rem;
}
.breadcrumbs__list-item:not(:first-child)::before {
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
}
.breadcrumbs__link {
  color: #444444;
}
.breadcrumbs__link:hover, .breadcrumbs__link:focus {
  text-decoration: underline;
}
.breadcrumbs__txt {
  color: #444444;
}

.page-heading__content {
  margin: 0;
  padding: 0;
}
.page-heading__content--left {
  text-align: left;
}
.page-heading__content--center {
  text-align: center;
}
.page-heading__content--right {
  text-align: right;
}
.page-heading__txt-main {
  font-size: 2.4rem;
  border-bottom: #29c4a0 3px solid;
  padding-bottom: 0.4rem;
}
@media screen and (min-width: 768px) {
  .page-heading__txt-main {
    font-size: 3.2rem;
  }
}
.page-heading__content--left .page-heading__txt-main::after {
  margin-right: auto;
  margin-left: 0;
}
.page-heading__content--center .page-heading__txt-main::after {
  margin-right: auto;
  margin-left: auto;
}
.page-heading__content--right .page-heading__txt-main::after {
  margin-right: 0;
  margin-left: auto;
}
.page-heading__txt-main--top {
  font-size: 2.4rem;
  border-bottom: none;
  padding-bottom: 0.4rem;
}
@media screen and (min-width: 768px) {
  .page-heading__txt-main--top {
    font-size: 3.2rem;
  }
}
.page-heading__content--left .page-heading__txt-main--top::after {
  margin-right: auto;
  margin-left: 0;
}
.page-heading__content--center .page-heading__txt-main--top::after {
  margin-right: auto;
  margin-left: auto;
}
.page-heading__content--right .page-heading__txt-main--top::after {
  margin-right: 0;
  margin-left: auto;
}
.page-heading__txt-sub {
  padding-top: 0.8rem;
  color: #29c4a0;
  font-size: 1.6rem;
}
.page-heading__message {
  padding-top: 2.4rem;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 300;
}

.content-heading {
  margin: 2.4rem 0;
}
@media screen and (min-width: 768px) {
  .content-heading {
    margin: 4.8rem 0 2.4rem;
  }
}
.content-heading__content {
  margin: 0;
  padding: 0;
}
.content-heading__content--left {
  text-align: left;
}
.content-heading__content--center {
  text-align: center;
}
.content-heading__content--right {
  text-align: right;
}
.content-heading__txt-main {
  font-size: 2rem;
  background-color: #e6f5ff;
  padding: 0.8rem;
}
@media screen and (min-width: 768px) {
  .content-heading__txt-main {
    font-size: 2.4rem;
  }
}
.content-heading__content--left .content-heading__txt-main::after {
  margin-right: auto;
  margin-left: 0;
}
.content-heading__content--center .content-heading__txt-main::after {
  margin-right: auto;
  margin-left: auto;
}
.content-heading__content--right .content-heading__txt-main::after {
  margin-right: 0;
  margin-left: auto;
}

.page-heading-sub__content {
  margin: 0;
  padding: 0;
}
.page-heading-sub__content--left {
  text-align: left;
}
.page-heading-sub__content--center {
  text-align: center;
}
.page-heading-sub__content--right {
  text-align: right;
}
.page-heading-sub__txt {
  position: relative;
  font-size: 2.4rem;
}
.page-heading-sub__txt:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 1.6em;
  margin-right: 0.8rem;
  vertical-align: middle;
  border-radius: 3px;
  background: #29c4a0;
}
.page-heading-sub__message {
  margin: 0 auto;
  padding-top: 1.6rem;
  color: #cccccc;
  font-size: 1.6rem;
  font-weight: 400;
}

.table-overview {
  width: 100%;
  text-align: left;
  line-height: 1.8;
}
.table-overview tr th {
  padding: 1.6rem 0.8rem;
  vertical-align: middle;
  text-align: center;
}
.table-overview tr td {
  width: auto;
  padding: 1.6rem;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .table-overview tr td {
    padding: 1.6rem 3.2rem;
  }
}

.table-overview {
  width: 100%;
  text-align: left;
  line-height: 1.8;
  border-top: #cccccc 2px dotted;
}
.table-overview .table-row {
  border-bottom: #cccccc 2px dotted;
}
.table-overview .table-ttl {
  padding: 1.6rem 0.8rem;
  vertical-align: middle;
  text-align: center;
  background-color: #eeeeee;
  max-width: 32.6rem;
  width: 30%;
}
.table-overview .table-data {
  font-weight: 300;
  font-size: 1.4rem;
  width: auto;
  padding: 1.6rem;
  vertical-align: middle;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .table-overview .table-data {
    font-size: 1.6rem;
    padding: 1.6rem 3.2rem;
  }
}
.table-overview .table-data span {
  font-size: 1.2rem;
}
.table-overview .table-list__item {
  text-indent: -1.8em;
  padding-left: 1.8em;
}
.table-overview .table-list__item:not(:first-child) {
  margin-top: 0.4rem;
}
.table-overview .data-list__ttl {
  margin: 0.8rem 0 0;
  font-weight: bold;
}
.table-overview--history {
  border-top: #cccccc 2px dotted;
  width: 100%;
  text-align: left;
  line-height: 1.8;
}
.table-overview--history .table-row {
  border-bottom: #cccccc 2px dotted;
}
.table-overview--history .table-ttl {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 15px 0.4rem;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .table-overview--history .table-ttl {
    max-width: 25rem;
    width: 25%;
    display: table-cell;
    text-align: center;
    padding: 1.6rem 0.8rem;
  }
}
.table-overview--history .table-data {
  display: block;
  width: 100%;
  padding: 0.4rem 15px 10px;
  font-size: 1.4rem;
  font-weight: 300;
  width: auto;
  vertical-align: middle;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .table-overview--history .table-data {
    display: table-cell;
    font-size: 1.6rem;
    padding: 1.6rem 3.2rem;
  }
}

.table-overview--works {
  border-top: #cccccc 2px dotted;
  width: 100%;
  text-align: left;
  line-height: 1.6;
}
.table-overview--works .table-row {
  border-bottom: #cccccc 2px dotted;
}
.table-overview--works .table-ttl {
  text-align: center;
  font-weight: bold;
  padding: 10px 5px;
  vertical-align: middle;
  min-width: 5rem;
}
@media screen and (min-width: 768px) {
  .table-overview--works .table-ttl {
    width: 14%;
    text-align: center;
    padding: 1.6rem 0.8rem;
  }
}
@media screen and (min-width: 992px) {
  .table-overview--works .table-ttl {
    max-width: 10rem;
    width: 20%;
  }
}
.table-overview--works .table-data {
  padding: 10px 5px;
  font-size: 1.4rem;
  font-weight: 300;
  width: auto;
  vertical-align: middle;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .table-overview--works .table-data {
    font-size: 1.6rem;
    padding: 1.6rem 3.2rem;
  }
}
.table-overview--works .table-data:nth-of-type(2) {
  min-width: 6rem;
}

.strength-list {
  background: #ffffff;
}
@media screen and (min-width: 992px) {
  .strength-list {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: space-evenly;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    padding: 3.2rem;
  }
}
.strength-list__item {
  padding: 1.6rem;
  text-align: center;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .strength-list__item {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .strength-list__item {
    font-size: 2.2rem;
  }
}
.strength-list__item:not(:last-child) {
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 768px) {
  .strength-list__item:not(:last-child) {
    margin-bottom: 0;
  }
}
.strength-list__img {
  display: block;
  margin: 0;
  margin: 0 auto;
  margin-bottom: 1.6rem;
  max-width: 16.2rem;
}

@media screen and (min-width: 992px) {
  .business-list__thumb {
    width: 50%;
  }
}
.business-list__img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.business-list__content {
  background: #ffffff;
  padding: 1.6rem;
}
@media screen and (min-width: 992px) {
  .business-list__content {
    width: 50%;
    padding: 3.2rem;
    height: 290px;
    height: 29.2338709677vw;
    max-height: 322px;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: flex-start;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    flex-direction: column;
  }
}
.business-list__content-ttl {
  margin-bottom: 1.6rem;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (min-width: 992px) {
  .business-list__content-ttl {
    font-size: 2.2rem;
  }
}
.business-list__content-txt {
  color: #444444;
}
.business-list__content-link {
  position: relative;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  text-align: center;
  text-decoration: none;
  outline: none;
  line-height: 1;
  border: #0073c0 1px solid;
  background-color: #0073c0;
  color: #ffffff;
  padding: 0.8rem 3.2rem;
  display: inline-flex;
  display: block;
  max-width: 200px;
  margin: 2.4rem auto 0;
}
.business-list__content-link::after {
  content: "";
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
  position: absolute;
  top: 50%;
  right: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.business-list__content-link:hover {
  filter: brightness(104%);
}
.business-list__content-link:hover::after {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  right: 10px;
}
@media screen and (min-width: 992px) {
  .business-list__content-link {
    max-width: 250px;
    margin-top: 3.2rem;
  }
}

.pickup-item__img {
  display: block;
  margin: 0;
  margin: 0 auto;
  width: 100%;
}
.pickup-item__content {
  text-align: center;
  padding: 2.4rem 15px 3.2rem;
}
.pickup-item__ttl {
  font-size: 2.4rem;
}
.pickup-item__btn {
  margin-top: 1.6rem;
}
.pickup-item__link {
  position: relative;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  text-align: center;
  text-decoration: none;
  outline: none;
  line-height: 1;
  border: #0073c0 1px solid;
  background-color: #0073c0;
  color: #ffffff;
  padding: 0.8rem 3.2rem;
  display: inline-flex;
  display: block;
  max-width: 200px;
  margin: 0 auto;
}
.pickup-item__link::after {
  content: "";
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
  position: absolute;
  top: 50%;
  right: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.pickup-item__link:hover {
  filter: brightness(104%);
}
.pickup-item__link:hover::after {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  right: 10px;
}
@media screen and (min-width: 992px) {
  .pickup-item__link {
    max-width: 250px;
  }
}

.information-item {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: left;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .information-item {
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 992px) {
  .information-item {
    padding: 1.6rem;
  }
}
.information-item__date {
  min-width: 11rem;
}
.information-item__cat {
  margin: 0 15px;
  min-width: 7.8rem;
}
.information-item__cat-label {
  background-color: #29c4a0;
  padding: 0.2rem 1.6rem;
  color: #ffffff;
  border-radius: 50vh;
  font-family: "Arial", sans-serif;
  font-size: 1.4rem;
}
.information-item__ttl {
  margin-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  .information-item__ttl {
    margin-top: 0;
  }
}

.sidebar {
  position: relative;
  padding: 2.4rem 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sidebar {
    flex: none;
  }
}
@media screen and (min-width: 992px) {
  .sidebar {
    max-width: 28rem;
    padding: 6.4rem 15px;
  }
}
@media screen and (min-width: 768px) {
  .sidebar {
    width: auto;
  }
}
.sidebar .nav-ttl {
  background-color: #29c4a0;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", Meiryo, Arial, sans-serif;
  font-size: 1.8rem;
  text-align: center;
  color: #ffffff;
  padding: 15px;
  width: 100%;
}
.sidebar .nav-list__link {
  display: block;
  padding: 1.5rem;
  font-weight: 300;
  border-bottom: #cccccc 2px dotted;
}
@media screen and (min-width: 992px) {
  .sidebar .nav-list__link {
    padding: 1.5rem 0.25rem;
  }
}
.sidebar .nav-list__link::before {
  content: "";
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\eac9";
  margin-right: 3px;
  color: #29c4a0;
}

@media screen and (min-width: 992px) {
  .footer:not(.index, .home) {
    background: #f6f6f6;
  }
}

.footer {
  position: relative;
  z-index: 3;
  padding-top: 4.8rem;
  background: #29c4a0;
}
@media screen and (min-width: 992px) {
  .footer {
    background: #ffffff;
  }
}
.footer__container {
  max-width: 1100px;
  margin: 0 auto;
}
.footer__upper {
  padding: 2.4rem 15px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .footer__upper {
    padding: 4rem 15px;
  }
}
.footer__logo-link {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", Meiryo, Arial, sans-serif;
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (min-width: 992px) {
  .footer__logo-link {
    color: #444444;
    font-size: 3.2rem;
  }
}
.footer__logo-img {
  width: 8rem;
  display: block;
  margin: 0;
  margin: 0 auto 1.6rem;
}
@media screen and (min-width: 768px) {
  .footer__logo-img {
    width: 10rem;
  }
}
.footer__address {
  color: #ffffff;
  font-size: 1.4rem;
  margin-top: 2.4rem;
}
@media screen and (min-width: 992px) {
  .footer__address {
    color: #444444;
  }
}
.footer__address-link {
  color: #ffffff;
}
@media screen and (min-width: 992px) {
  .footer__address-link {
    color: #444444;
  }
}
.footer__menu {
  display: block;
  margin: 0;
  list-style: none;
  border-top: #b2e1dd 1px dashed;
}
@media screen and (min-width: 992px) {
  .footer__menu {
    padding-bottom: 6.4rem;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    flex-wrap: wrap;
    border-top: none;
  }
}
.footer__menu-item:not(:first-child) {
  border: #b2e1dd 1px dashed;
}
@media screen and (min-width: 992px) {
  .footer__menu-item:not(:first-child) {
    margin-left: 1.6rem;
    border: none;
  }
}
.footer__menu-item-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-size: 1.6rem;
  padding: 1.6rem 1.6rem 1.6rem 4.8rem;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .footer__menu-item-link {
    font-size: 1.8rem;
  }
}
.footer__menu-item-link::before {
  content: "";
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  pointer-events: none;
}
@media screen and (min-width: 992px) {
  .footer__menu-item-link::before {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .footer__menu-item-link {
    color: #444444;
  }
}
.footer__menu-item-link:hover, .footer__menu-item-link:focus {
  text-decoration: underline;
}
.footer__bottom {
  max-width: 24rem;
  width: 100%;
  margin: 2.4rem auto 0;
}
.footer__tel-link {
  display: block;
  width: 100%;
  height: 100%;
  padding-bottom: 1.6rem;
}
.footer__copy {
  background-color: #29c4a0;
  padding: 1.6rem 0;
  text-align: center;
  color: #ffffff;
  font-size: 1.2rem;
}

.js-open_modal {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-evenly;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  width: 160px;
  height: 40px;
  padding: 0.25rem 0.5rem;
  border-radius: 100vh;
  background-color: #cccccc;
  font-size: 14px;
  font-size: 0.875rem;
}
.js-open_modal img {
  width: 22px;
}
.js-open_modal.is_active {
  transition: all 0.2s;
}

.js-modal_area {
  position: fixed;
  z-index: 100;
  top: 70px;
  left: 0;
  display: none;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 25px;
  background-color: #ffffff;
}
.js-modal_area .bl_list_unit {
  margin-bottom: 2rem;
}
.js-modal_area .bl_list_unit .bl_list_head {
  display: block;
  width: 100%;
  margin-bottom: 0.5rem;
}
.js-modal_area .bl_list_unit .bl_list_head .el_list_date {
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
}
.js-modal_area .bl_list_unit .bl_list_head .el_list_cat {
  display: inline-block;
  margin-left: 1rem;
  padding: 4px 10px;
  letter-spacing: 0.1em;
  color: #ffffff;
  border-radius: 5px;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
}
.js-modal_area .bl_list_unit .bl_list_body {
  width: 100%;
  margin-bottom: 1.5rem;
}
.js-modal_area .js-close_modal {
  position: relative;
  width: 260px;
  margin: 3rem auto;
  padding: 10px;
  cursor: pointer;
  text-align: center;
  color: #ffffff;
  border-radius: 5px;
  background-color: #cccccc;
  font-size: 14px;
  font-size: 0.875rem;
}
.js-modal_area .js-close_modal i {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.button-guide {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  padding: 1.6rem;
  color: #444444;
  border: none;
  border-radius: 8px;
  background: #cccccc;
  font-size: 1.6rem;
  font-weight: 400;
  position: relative;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  text-align: center;
  text-decoration: none;
  outline: none;
  line-height: 1;
  border: #0073c0 1px solid;
  background-color: #0073c0;
  color: #ffffff;
  padding: 0.8rem 3.2rem;
  display: flex;
}
.button-guide::after {
  content: "";
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
  position: absolute;
  top: 50%;
  right: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.button-guide:hover {
  filter: brightness(104%);
}
.button-guide:hover::after {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  right: 10px;
}
.button-guide::after {
  content: "";
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
}
.button-guide:hover, .button-guide:focus {
  color: #ffffff;
  background: #29c4a0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.button-guide:hover::after {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  right: 20px;
}

.button-detail {
  display: flex;
  flex-wrap: wrap;
  max-width: 60rem;
  margin: 0 auto;
}
.button-detail .button-detail__button--next, .button-detail .button-detail__button--prev, .button-detail .button-detail__button--back, .button-detail .button-detail__button {
  margin-bottom: 2.4rem;
  padding: 1.6rem 2.4rem;
  color: #444444;
  border-radius: 0.4rem;
  background: #cccccc;
  position: relative;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  text-align: center;
  text-decoration: none;
  outline: none;
  line-height: 1;
  border: #0073c0 1px solid;
  background-color: #0073c0;
  color: #ffffff;
  padding: 0.8rem 3.2rem;
  display: flex;
}
.button-detail .button-detail__button--next::after, .button-detail .button-detail__button--prev::after, .button-detail .button-detail__button--back::after, .button-detail .button-detail__button::after {
  content: "";
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
  position: absolute;
  top: 50%;
  right: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.button-detail .button-detail__button--next:hover, .button-detail .button-detail__button--prev:hover, .button-detail .button-detail__button--back:hover, .button-detail .button-detail__button:hover {
  filter: brightness(104%);
}
.button-detail .button-detail__button--next:hover::after, .button-detail .button-detail__button--prev:hover::after, .button-detail .button-detail__button--back:hover::after, .button-detail .button-detail__button:hover::after {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  right: 10px;
}
.button-detail .button-detail__button--next:hover, .button-detail .button-detail__button--prev:hover, .button-detail .button-detail__button--back:hover, .button-detail .button-detail__button:hover, .button-detail .button-detail__button--next:focus, .button-detail .button-detail__button--prev:focus, .button-detail .button-detail__button--back:focus, .button-detail .button-detail__button:focus {
  color: #ffffff;
  background: #29c4a0;
}
.button-detail__button--back {
  width: 100%;
}
.button-detail__button--back:before {
  margin-right: 0.8rem;
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e896";
}
.button-detail__button--prev {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .button-detail__button--prev {
    width: calc(50% - 15px);
    margin-right: 15px;
  }
}
.button-detail__button--prev:before {
  margin-right: 0.8rem;
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cb";
}
.button-detail__button--next {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .button-detail__button--next {
    width: calc(50% - 15px);
    margin-left: 15px;
  }
}
.button-detail__button--next:after {
  margin-left: 0.8rem;
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
}

.pagination__list,
.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.pagination__list-item,
.pagination .page-numbers > li {
  margin: 0.3rem;
}
.pagination .pagination__link--next, .pagination .pagination__link.next,
.pagination .page-numbers > li > a--next, .pagination .pagination__link--prev, .pagination .pagination__link.prev,
.pagination .page-numbers > li > a--prev, .pagination .pagination__link,
.pagination .page-numbers > li > a {
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  -ms-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  transition: background-color 0.2s;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  padding: 1.2rem 1.6rem;
  text-align: center;
  border-radius: 6px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}
.pagination__link,
.pagination .page-numbers > li > a {
  color: #444444;
  background-color: #eeeeee;
}
.pagination__link:hover, .pagination__link:focus,
.pagination .page-numbers > li > a:hover,
.pagination .page-numbers > li > a:focus {
  color: #ffffff;
  background-color: #29c4a0;
}
.pagination__link--prev, .pagination__link.prev,
.pagination .page-numbers > li > a--prev,
.pagination .page-numbers > li > a.prev {
  min-width: 12rem;
  color: #444444;
  background-color: #eeeeee;
}
.pagination__link--prev:before, .pagination__link.prev:before,
.pagination .page-numbers > li > a--prev:before,
.pagination .page-numbers > li > a.prev:before {
  display: inline-block;
  margin-right: 0.6rem;
  transition: transform 0.2s;
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cb";
}
.pagination__link--prev:hover, .pagination__link--prev:focus, .pagination__link.prev:hover, .pagination__link.prev:focus,
.pagination .page-numbers > li > a--prev:hover,
.pagination .page-numbers > li > a--prev:focus,
.pagination .page-numbers > li > a.prev:hover,
.pagination .page-numbers > li > a.prev:focus {
  color: #ffffff;
  background-color: #29c4a0;
}
.pagination__link--prev:hover:before, .pagination__link--prev:focus:before, .pagination__link.prev:hover:before, .pagination__link.prev:focus:before,
.pagination .page-numbers > li > a--prev:hover:before,
.pagination .page-numbers > li > a--prev:focus:before,
.pagination .page-numbers > li > a.prev:hover:before,
.pagination .page-numbers > li > a.prev:focus:before {
  transform: translateX(-4px);
}
.pagination__link--next, .pagination__link.next,
.pagination .page-numbers > li > a--next,
.pagination .page-numbers > li > a.next {
  min-width: 12rem;
  color: #444444;
  background-color: #eeeeee;
}
.pagination__link--next:after, .pagination__link.next:after,
.pagination .page-numbers > li > a--next:after,
.pagination .page-numbers > li > a.next:after {
  display: inline-block;
  margin-left: 0.6rem;
  transition: transform 0.2s;
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
}
.pagination__link--next:hover, .pagination__link--next:focus, .pagination__link.next:hover, .pagination__link.next:focus,
.pagination .page-numbers > li > a--next:hover,
.pagination .page-numbers > li > a--next:focus,
.pagination .page-numbers > li > a.next:hover,
.pagination .page-numbers > li > a.next:focus {
  color: #ffffff;
  background-color: #29c4a0;
}
.pagination__link--next:hover:after, .pagination__link--next:focus:after, .pagination__link.next:hover:after, .pagination__link.next:focus:after,
.pagination .page-numbers > li > a--next:hover:after,
.pagination .page-numbers > li > a--next:focus:after,
.pagination .page-numbers > li > a.next:hover:after,
.pagination .page-numbers > li > a.next:focus:after {
  transform: translateX(4px);
}
.pagination .pagination__txt--dots, .pagination .pagination__txt.dots,
.pagination .page-numbers > li > span--dots, .pagination .pagination__txt--current, .pagination .pagination__txt.current,
.pagination .page-numbers > li > span--current, .pagination .pagination__txt,
.pagination .page-numbers > li > span {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  padding: 1.2rem 1.6rem;
  text-align: center;
  border-radius: 6px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}
.pagination__txt,
.pagination .page-numbers > li > span {
  color: #444444;
  background-color: #eeeeee;
}
.pagination__txt--current, .pagination__txt.current,
.pagination .page-numbers > li > span--current,
.pagination .page-numbers > li > span.current {
  color: #ffffff;
  background-color: #29c4a0;
}
.pagination__txt--dots, .pagination__txt.dots,
.pagination .page-numbers > li > span--dots,
.pagination .page-numbers > li > span.dots {
  color: #444444;
  background-color: #eeeeee;
}

/*
 * トップページ
 * -------------------------------------------------------------------
 */
.top-message {
  background: #29c4a0;
}
.top-message__container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.4rem 15px;
  padding: 2.4rem 15px;
}
@media screen and (min-width: 768px) {
  .top-message__container {
    padding: 6.4rem 15px;
  }
}
.top-message .page-heading {
  display: none;
}
.top-message__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.top-message__heading {
  margin-bottom: 0;
}
.top-message__txt {
  color: #ffffff;
  font-size: 1.2rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .top-message__txt {
    font-size: 1.6rem;
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .top-message__txt {
    font-size: 2.4rem;
  }
}
.top-message__guide {
  padding-top: 6.4rem;
}

.top-strength__container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.4rem 15px;
  padding: 6.4rem 0;
}
@media screen and (min-width: 768px) {
  .top-strength__container {
    padding: 6.4rem 15px;
  }
}
@media screen and (min-width: 992px) {
  .top-strength__container {
    padding: 6.4rem 0;
  }
}
.top-strength__heading {
  margin-bottom: 4.8rem;
}
.top-strength__list {
  margin: 0;
}
@media screen and (min-width: 992px) {
  .top-strength__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
  }
}
.top-strength__list-item:not(:first-child) {
  margin-top: 0 0 1.6rem 0;
}
@media screen and (min-width: 992px) {
  .top-strength__list-item:not(:first-child) {
    margin-top: 0;
  }
}

.top-business {
  background-image: url("../img/bg_business.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.top-business__container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.4rem 15px;
}
@media screen and (min-width: 768px) {
  .top-business__container {
    padding: 6.4rem 15px;
  }
}
.top-business__heading {
  margin-bottom: 6.4rem;
}
.top-business .page-heading__txt-main--top {
  color: #ffffff;
}
.top-business .page-heading__txt-sub {
  color: #ffffff;
}
.top-business__list-item {
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 992px) {
  .top-business__list-item {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    margin-bottom: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .top-business__list-item:nth-child(odd) .business-list__thumb {
    order: 2;
    margin-left: -2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .top-business__list-item:nth-child(odd) .business-list__content {
    order: 1;
    z-index: 1;
    margin-right: -2.4rem;
    margin-top: 8.8rem;
  }
}
@media screen and (min-width: 992px) {
  .top-business__list-item:nth-child(even) .business-list__thumb {
    margin-right: -2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .top-business__list-item:nth-child(even) .business-list__content {
    margin-top: 8.8rem;
    margin-left: -2.4rem;
  }
}

.top-pickup__container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.4rem 15px;
  padding: 6.4rem 0 0;
}
@media screen and (min-width: 768px) {
  .top-pickup__container {
    padding: 6.4rem 15px;
  }
}
@media screen and (min-width: 992px) {
  .top-pickup__container {
    padding: 6.4rem 0;
  }
}
.top-pickup__heading {
  margin-bottom: 4.8rem;
}
.top-pickup__list {
  margin: 0;
  padding: 3.2rem 15px 6.4rem;
  background-color: #e4f0f9;
}
@media screen and (min-width: 992px) {
  .top-pickup__list {
    padding: 3.2rem 4.8rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
  }
}
.top-pickup__list-item {
  background-color: #ffffff;
}
.top-pickup__list-item:not(:last-child) {
  margin: 0 0 3.2rem 0;
}
@media screen and (min-width: 992px) {
  .top-pickup__list-item:not(:last-child) {
    margin-bottom: 0;
  }
}

.top-information {
  background-color: #e5f8f3;
}
.top-information__container {
  position: relative;
  margin: 0 auto;
  padding: 6.4rem 15px;
}
@media screen and (min-width: 992px) {
  .top-information__container {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: space-between;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    padding: 0;
  }
}
.top-information__heading {
  margin-bottom: 4.8rem;
}
@media screen and (min-width: 992px) {
  .top-information__heading {
    width: 40%;
    margin-right: -4.8rem;
    padding: 19.6rem 2rem;
    background-color: #29c4a0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .top-information .page-heading__txt-main--top {
    color: #ffffff;
  }
}
@media screen and (min-width: 992px) {
  .top-information .page-heading__txt-sub {
    color: #ffffff;
  }
}
.top-information__list {
  display: block;
  max-width: 100rem;
  margin: 0 auto;
  padding: 4.8rem 2.4rem;
  background-color: #ffffff;
}
@media screen and (min-width: 992px) {
  .top-information__list {
    width: 60%;
    margin-left: -4.8rem;
    padding: 2.4rem 4.8rem;
    position: relative;
    z-index: 1;
  }
}
.top-information__list-item {
  display: block;
  margin: 0;
  padding: 0;
}
.top-information__list-item:not(:first-child) {
  margin-top: 2.4rem;
  padding-top: 2.4rem;
  border-top: 1px dashed #444444;
}
@media screen and (min-width: 992px) {
  .top-information__list-item:not(:first-child) {
    margin-top: 1.6rem;
    padding-top: 1.6rem;
  }
}
.top-information__guide {
  padding-top: 6.4rem;
}

.company__container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.4rem 15px;
}
@media screen and (min-width: 768px) {
  .company__container {
    padding: 6.4rem 15px;
  }
}
.company .info__content {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
}
.company .info__thumb {
  order: 1;
  display: block;
  width: 70%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .company .info__thumb {
    width: 28%;
    order: 2;
    margin: 0;
  }
}
.company .info__img {
  width: 100%;
}
.company .info__txt {
  order: 2;
  width: 100%;
  margin-top: 1.6rem;
}
@media screen and (min-width: 768px) {
  .company .info__txt {
    width: 70%;
    order: 1;
    margin-top: 0;
  }
}
.company .info__txt-main {
  line-height: 2;
  font-weight: 300;
}
.company .info__txt-sub {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: flex-end;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  margin-top: 1.6rem;
  font-weight: 300;
}
.company .info__txt-img {
  width: 10.8rem;
  margin-left: 10px;
}
.company .history__photo {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  margin-top: 2.4rem;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .company .history__photo {
    gap: 20px;
  }
}
.company .history__photo .photo-item {
  padding: 10px;
  background-color: #444444;
}
@media screen and (min-width: 768px) {
  .company .history__photo .photo-item {
    padding: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .company .history__photo .photo-item {
    padding: 1.6rem 3.2rem;
  }
}
.company .history__photo .photo-item:nth-of-type(1) {
  width: 34%;
}
@media screen and (min-width: 768px) {
  .company .history__photo .photo-item:nth-of-type(1) {
    width: 37%;
  }
}
@media screen and (min-width: 992px) {
  .company .history__photo .photo-item:nth-of-type(1) {
    width: 38%;
  }
}
.company .history__photo .photo-item:nth-of-type(2) {
  width: 67%;
}
@media screen and (min-width: 768px) {
  .company .history__photo .photo-item:nth-of-type(2) {
    width: 61.6%;
  }
}
@media screen and (min-width: 992px) {
  .company .history__photo .photo-item:nth-of-type(2) {
    width: 62.3%;
  }
}
.company .history__photo .photo-img {
  width: 100%;
}
.company .history__photo .photo-txt {
  text-align: center;
  margin-top: 0.8rem;
  color: #ffffff;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .company .history__photo .photo-txt {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 992px) {
  .company .history__photo .photo-txt {
    font-size: 1.6rem;
  }
}
.company .access__content {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
}
.company .access-map {
  width: 100%;
  aspect-ratio: 3/2;
}
@media screen and (min-width: 768px) {
  .company .access-map {
    width: 65%;
  }
}
.company .access-map iframe {
  width: 100%;
  height: 100%;
}
.company .access-info {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
@media screen and (min-width: 768px) {
  .company .access-info {
    width: 32%;
    display: block;
  }
}
.company .info-wrap {
  width: 50%;
  margin-top: 1.6rem;
}
@media screen and (min-width: 768px) {
  .company .info-wrap {
    width: 100%;
  }
}
.company .info-ttl {
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .company .info-ttl {
    font-size: 1.8rem;
  }
}
.company .info-txt {
  margin-top: 1.6rem;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .company .info-txt {
    font-size: 1.6rem;
  }
}
.company .info-thumb {
  display: block;
  width: 50%;
  margin-top: 1.6rem;
}
@media screen and (min-width: 768px) {
  .company .info-thumb {
    width: 100%;
  }
}
.company .info-img {
  width: 100%;
}

.recruit__container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.4rem 15px;
}
@media screen and (min-width: 768px) {
  .recruit__container {
    padding: 6.4rem 15px;
  }
}
.recruit .guide__message {
  text-align: center;
}
.recruit .guide__list {
  margin-top: 2.4rem;
}
.recruit .guide__list-item {
  text-align: center;
}
.recruit .guide__list-item:not(:first-child) {
  margin-top: 2.4rem;
}
.recruit .guide__button {
  background-color: #0073c0;
  padding: 15px 2.4rem;
  display: inline-block;
  border-radius: 0.8rem;
  color: #ffffff;
  line-height: 1;
  font-weight: bold;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  max-width: 40rem;
  margin: 0 auto;
}
.recruit .guide__button p {
  text-align: center;
  font-size: 2.4rem;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", Meiryo, Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .recruit .guide__button p {
    font-size: 2.8rem;
  }
}
.recruit .guide__button span {
  display: block;
  font-size: 1.2rem;
  margin-top: 0.8rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .recruit .guide__button span {
    font-size: 1.4rem;
  }
}
.recruit .guide__button::before {
  content: "";
  background-image: url("../img/icn_tel.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 43px;
  height: 47px;
  display: inline-block;
  margin-right: 15px;
}
.recruit .guide__txt {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", Meiryo, Arial, sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .recruit .guide__txt {
    font-size: 1.8rem;
  }
}
.recruit .guide__txt span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .recruit .guide__txt span {
    font-size: 1.4rem;
  }
}
.recruit .guide__txt::before {
  content: "";
  background-image: url("../img/icn_mail.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 37px;
  height: 28px;
  display: inline-block;
  margin-right: 15px;
}

.business__container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.4rem 15px;
}
@media screen and (min-width: 768px) {
  .business__container {
    padding: 6.4rem 15px;
  }
}
.business__list {
  margin-top: 2.4rem;
}
.business__list-item {
  border-bottom: #cccccc 2px dotted;
  padding: 2.4rem 0;
}
.business .business-item {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
}
.business .business-item__thumb {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .business .business-item__thumb {
    width: 36.6rem;
  }
}
.business .business-item__content {
  width: 100%;
  margin-top: 1.6rem;
}
@media screen and (min-width: 768px) {
  .business .business-item__content {
    width: calc(100% - 36.6rem - 15px);
    margin-left: 15px;
    margin-top: 0;
  }
}
.business .business-item__content-ttl {
  font-size: 2.4rem;
  font-weight: bold;
}
.business .business-item__content-txt {
  font-weight: 300;
  margin-top: 0.8rem;
}
.business .business-item__content-link {
  position: relative;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  text-align: center;
  text-decoration: none;
  outline: none;
  line-height: 1;
  border: #0073c0 1px solid;
  background-color: #0073c0;
  color: #ffffff;
  padding: 0.8rem 3.2rem;
  display: inline-flex;
  display: block;
  font-weight: bold;
  margin: 1.6rem auto 0;
  max-width: 20rem;
}
.business .business-item__content-link::after {
  content: "";
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
  position: absolute;
  top: 50%;
  right: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.business .business-item__content-link:hover {
  filter: brightness(104%);
}
.business .business-item__content-link:hover::after {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  right: 10px;
}
@media screen and (min-width: 768px) {
  .business .business-item__content-link {
    margin: 1.6rem 0 0 auto;
  }
}
.business .business-item__content-link::after {
  content: "";
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
  margin-left: 5px;
}

.other {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-direction: column;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .other {
    flex-direction: row;
  }
}
.other__container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.4rem 15px;
  width: 100%;
  max-width: calc(1100px - 28rem);
  flex: 1;
}
@media screen and (min-width: 768px) {
  .other__container {
    padding: 6.4rem 15px;
  }
}
.other__list--column4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .other__list--column4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
.other__list--column2 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .other__list--column2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.other__list--column5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background-color: #cccccc;
  border: #cccccc 1px solid;
}
.other__list-item {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .other__list-item {
    font-size: 1.8rem;
  }
}
.other__list-item span {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  .other__list-item span {
    font-size: 1.4rem;
  }
}
.other__img {
  width: 100%;
  margin-top: 0.8rem;
}
.other__ttl {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", Meiryo, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  background-color: #eeeeee;
  padding: 0.8rem;
  text-align: center;
  border-bottom: #cccccc 1px solid;
}
@media screen and (min-width: 768px) {
  .other__ttl {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .other__ttl {
    font-size: 1.8rem;
  }
}
.other__txt {
  font-size: 1.4rem;
  margin: 0.8rem 0;
}
@media screen and (min-width: 992px) {
  .other__txt {
    font-size: 1.6rem;
  }
}

.fence {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-direction: column;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .fence {
    flex-direction: row;
  }
}
.fence__container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.4rem 15px;
  width: 100%;
  max-width: calc(1100px - 28rem);
  flex: 1;
}
@media screen and (min-width: 768px) {
  .fence__container {
    padding: 6.4rem 15px;
  }
}
.fence__content {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
}
.fence__txt {
  width: 100%;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .fence__txt {
    width: calc(58% - 15px);
    margin-right: 15px;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .fence__txt {
    width: calc(100% - 31rem - 15px);
  }
}
.fence__thumb {
  display: block;
  width: 100%;
  margin-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  .fence__thumb {
    width: 42%;
    margin-top: 0;
  }
}
@media screen and (min-width: 992px) {
  .fence__thumb {
    max-width: 31rem;
  }
}
.fence__img {
  width: 100%;
  margin-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  .fence__img {
    margin-top: 0;
  }
}
.fence__txt-thumb {
  display: block;
  text-align: center;
}
.fence__txt-img {
  width: 100%;
  max-width: 41.5rem;
  margin: 0 auto;
}

.welder {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-direction: column;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .welder {
    flex-direction: row;
  }
}
.welder__container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.4rem 15px;
  width: 100%;
  max-width: calc(1100px - 28rem);
  flex: 1;
}
@media screen and (min-width: 768px) {
  .welder__container {
    padding: 6.4rem 15px;
  }
}
.welder__content {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
}
.welder__txt-group {
  width: 100%;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .welder__txt-group {
    width: calc(58% - 15px);
    margin-right: 15px;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .welder__txt-group {
    width: calc(100% - 31rem - 15px);
  }
}
.welder__ttl {
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .welder__ttl {
    font-size: 2rem;
  }
}
.welder__ttl:not(:first-child) {
  margin-top: 1.6rem;
}
.welder__txt {
  font-weight: 300;
  margin-top: 0.8rem;
}
.welder__thumb {
  display: block;
  width: 100%;
  margin-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  .welder__thumb {
    width: 42%;
    margin-top: 0;
  }
}
@media screen and (min-width: 992px) {
  .welder__thumb {
    max-width: 31rem;
  }
}
.welder__img {
  width: 100%;
  margin-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  .welder__img {
    margin-top: 0;
  }
}
.welder .use__list-ttl {
  text-align: center;
  font-size: 2rem;
  margin-top: 4.8rem;
}
@media screen and (min-width: 768px) {
  .welder .use__list-ttl {
    font-size: 2.4rem;
  }
}
.welder .use__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.8rem;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", Meiryo, Arial, sans-serif;
  margin-top: 2.4rem;
  padding: 0 3.2rem;
}
@media screen and (min-width: 768px) {
  .welder .use__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
    padding: 0;
  }
}
.welder .use__list-item {
  border: #cccccc 1px solid;
  border-radius: 0.8rem;
  padding: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .welder .use__list-item {
    padding: 15px;
  }
}
.welder .use__list-item--ttl {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}
@media screen and (min-width: 768px) {
  .welder .use__list-item--ttl {
    font-size: 2rem;
  }
}

.works__container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.4rem 15px;
}
@media screen and (min-width: 768px) {
  .works__container {
    padding: 6.4rem 15px;
  }
}
.works__content {
  margin-top: 3.2rem;
}
.works .photo-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 4.8rem;
}
@media screen and (min-width: 768px) {
  .works .photo-list {
    gap: 10px;
  }
}
@media screen and (min-width: 992px) {
  .works .photo-list {
    gap: 15px;
  }
}
.works .photo-list__img {
  width: 100%;
}

/*# sourceMappingURL=style.css.map */
