@charset "UTF-8";
/*font*/
@font-face {
  font-style: normal;
  font-weight: 400;
  font-family: "Noto Sans JP";
  src: local("NotoSansCJKjp-Regular"), local("NotoSansJP-Regular"), url("/fonts/NotoSans_Regular.woff2") format("woff2"), url("/fonts/NotoSans_regular.woff") format("woff");
}

@font-face {
  font-style: normal;
  font-weight: 500;
  font-family: "Noto Sans JP";
  src: local("NotoSansCJKjp-Meduim"), local("NotoSansJP-Medium"), url("/fonts/NotoSans_Medium.woff2") format("woff2"), url("/fonts/NotoSans_medium.woff") format("woff");
}

@font-face {
  font-style: normal;
  font-weight: 700;
  font-family: "Noto Sans JP";
  src: local("NotoSansCJKjp-Bold"), local("NotoSansJP-Bold"), url("/fonts/NotoSans_Bold.woff2") format("woff2"), url("/fonts/NotoSans_bold.woff") format("woff");
}

@font-face {
  font-style: normal;
  font-weight: 500;
  font-family: "Poppins";
  src: local("poppins-v15-latin-500"), url("/fonts/poppins-v15-latin-500.woff2") format("woff2"), url("/fonts/poppins-v15-latin-500.woff") format("woff");
}

:root {
  --color-brand: #00698b;
  --color-hover: #004e66;
  --color-accent: #0086b0;
  --color-secondary: #f29c24;
  --color-background: #f2fcff;
}

/* base */
html {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

body {
  width: 100%;
  overflow-x: hidden;
  background: #fff;
  color: #222;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: .05em;
  line-break: strict;
}

@media (max-width: 768px) {
  body {
    font-size: 1.6rem;
    line-height: 2.6rem;
    letter-spacing: .025em;
  }
}

address {
  font-style: normal;
}

p {
  margin-bottom: 13px;
}

a {
  color: var(--color-brand);
  text-decoration: underline;
}

a:link, a:visited {
  color: var(--color-brand);
  text-decoration: underline;
}

a:hover, a:active {
  color: var(--color-hover);
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

.inner {
  width: 1320px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 18px;
  padding-left: 18px;
  box-sizing: border-box;
}

@media (max-width: 1320px) {
  .inner {
    width: 100%;
  }
}

.inner-w960 {
  width: 960px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

@media (max-width: 980px) {
  .inner-w960 {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (max-width: 980px) {
  .inner > .inner-w960 {
    padding-right: 0;
    padding-left: 0;
  }
}

.disp-sp {
  display: none;
}

.disp-sp-inline {
  display: none;
}

.disp-pc-inline-sp-inlineblock {
  display: inline;
}

.disp-inline-block {
  display: inline-block;
}

@media (max-width: 768px) {
  .disp-sp {
    display: block;
  }
  
  .disp-sp-inline {
    display: inline;
  }

  .disp-pc {
    display: none;
  }

  .disp-pc-inline-sp-inlineblock {
    display: inline-block;
  }
}

.underline {
  text-decoration: underline;
}

/* header */
.l-header {
  position: relative;
  height: 138px;
  border-bottom: 1px solid #757575;
  box-sizing: border-box;
  background-color: #fff;
}
.l-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--color-brand);
}

@media (max-width: 768px) {
  .l-header {
    height: 66px;
  }
}

.l-header-inner {
  position: relative;
  height: 138px;
}

@media (max-width: 768px) {
  .l-header-inner {
    height: 66px;
    overflow: hidden;
  }
}

.l-header .logo {
  position: absolute;
  top: 38px;
  left: 18px;
  width: min(19vw, 186px);
}

.l-header .logo img {
  width: 100%;
}

@media (max-width: 768px) {
  .l-header .logo {
    top: 18px;
    width: 102px;
  }
}

.l-header .logo-link {
  transition-property: opacity;
  transition-duration: .3s;
  transition-timing-function: ease-in-out;
}

.l-header .logo-link:hover {
  opacity: .8;
}

.l-header .nav-info {
  display: flex;
  position: absolute;
  top: 0;
  right: 20px;
  padding-left: 0;
}

.l-header .nav-info-list {
  list-style: none;
  position: relative;
  width: 165px;
  height: 41px;
  margin-left: 16px;
  overflow: hidden;
  background-color: var(--color-brand);
  text-align: center;
  transition-property: background-color;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
}

@media (max-width: 768px) {
  .l-header .nav-info-list {
    display: none;
  }
}

.l-header .nav-info-list::after {
  display: block;
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  width: 16px;
  height: 3px;
  background-color: var(--color-secondary);
  content: "";
  transition-property: right;
  transition-duration: .3s;
  transition-timing-function: ease-in-out;
}

.l-header .nav-info-list:hover {
  background-color: var(--color-hover);
}

.l-header .nav-info-list:hover::after {
  right: 0;
}

.l-header .nav-info-list a {
  display: block;
  padding-top: 9px;
  padding-bottom: 6px;
  color: #fff;
  font-size: 1.5rem;
  line-height: 2.3rem;
  text-decoration: none;
}

@media (max-width: 768px) {
  .l-header .nav-info-list a {
    font-size: 1.3rem;
    line-height: 2.1rem;
  }
}

.l-header .nav-info-list a:link, .l-header .nav-info-list a:visited {
  text-decoration: none;
}

.l-header .nav-grobal {
  display: flex;
  justify-content: flex-end;
  padding-top: 66px;
}

.l-header .nav-grobal-list {
  list-style: none;
  height: 72px;
  box-sizing: border-box;
  font-size: 2.0rem;
  line-height: 1.6;
  cursor: pointer;
  transition-property: background-color, color;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
}

.l-header .nav-grobal-list-parent {
  position: relative;
  height: 100%;
  margin-bottom: 0;
  padding: 11px 18px 22px 18px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0);
  border-right: 1px solid rgba(255, 255, 255, 0);
  border-left: 1px solid rgba(255, 255, 255, 0);
  box-sizing: border-box;
  background-color: transparent;
  font-weight: 500;
  cursor: pointer;
}

.l-header .nav-grobal-list-parent::after {
  display: block;
  opacity: 0;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 5px;
  background-color: var(--color-brand);
  content: "";
  transition-property: opacity, top;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
}

.l-header .nav-grobal-list-parent:hover::after {
  opacity: 1;
  top: 55px;
}

.l-header .nav-grobal-list-parent.js-active {
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  border-left: 1px solid #707070;
  background-color: #e9e9e9;
}

.l-header .nav-grobal-list-parent.js-active::after {
  opacity: 1;
  top: 55px;
}

.l-header .nav-grobal-list.js-active {
  background-color: #707070;
  color: #fff;
}

.l-header .nav-grobal-list.js-active::after {
  opacity: 1;
  top: 55px;
}

.l-header .grobal-area {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 138px;
  left: 0;
  z-index: 9999;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  border-bottom: 1px solid #707070;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  background: #e9e9e9;
  transition-property: opacity, visibility;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
  pointer-events: none;
}

.l-header .grobal-area-unordered {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  max-width: 1140px;
  margin: 30px auto 24px;
  padding-left: 18px;
  padding-right: 18px;
}

.l-header .grobal-area-list {
  list-style: none;
  width: 28%;
  margin-bottom: 14px;
  margin-left: 26px;
  font-size: 1.8rem;
}

.l-header .grobal-area-list.top {
  width: 100%;
  margin-left: 0;
  margin-bottom: 22px;
  font-weight: 500;
}

.l-header .grobal-area-list.close {
  position: absolute;
  top: 0;
  right: 18px;
  width: auto;
  margin-bottom: 0;
  margin-left: 0;
  cursor: pointer;
}

.l-header .grobal-area-link,
.l-header .grobal-area-link:link,
.l-header .grobal-area-link:visited {
  display: block;
  color: #222;
  text-decoration: none;
}

.l-header .grobal-area-link:hover,
.l-header .grobal-area-link:link:hover,
.l-header .grobal-area-link:visited:hover {
  text-decoration: underline;
}

.l-header .grobal-area-close {
  width: 104px;
  padding-top: 5px;
  padding-bottom: 4px;
  padding-left: 36px;
  border: 1px solid #222;
  box-sizing: border-box;
  background-image: url(/images/ico_close.png);
  background-position: 12px center;
  background-repeat: no-repeat;
  cursor: pointer;
  font-size: 1.8rem;
}

.l-header .grobal-area-close:hover {
  text-decoration: underline;
}

.l-header .grobal-area.js-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.l-header .grobal-area-banner {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  width: 1140px;
  margin: 0 auto 0 auto;
  padding-bottom: 30px;
  padding-left: 0;
}

@media (max-width: 768px) {
  .l-header .grobal-area-banner {
    display: block;
    width: auto;
    padding-bottom: 0;
  }
}

.l-header .grobal-area-banner-list {
  width: 234px;
  margin-bottom: 24px;
  margin-left: 24px;
}

@media (max-width: 768px) {
  .l-header .grobal-area-banner-list {
    width: 266px;
    margin: 12px auto;
  }
}

@media (max-width: 768px) {
  .l-header .grobal-area-banner-list:nth-child(4n) {
    margin-right: auto;
    margin-left: auto;
  }
}

.l-header .grobal-area-banner-list img {
  width: 100%;
}

.l-header .grobal-area-banner-list p {
  position: relative;
  margin-left: 16px;
  margin-bottom: 0;
  padding-top: 2px;
  padding-left: 18px;
  font-size: 1.5rem;
  line-height: 1.7;
}

.l-header .grobal-area-banner-list p:before {
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  background-image: url(/images/ico_next.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

@media (max-width: 768px) {
  .l-header .grobal-area-banner-list p {
    margin-left: 12px;
    font-size: 1.3rem;
  }
  
  .l-header .grobal-area-banner-list p:before {
    top: 6px;
  }
}

.l-header .grobal-area-banner-list a,
.l-header .grobal-area-banner-list a:link,
.l-header .grobal-area-banner-list a:active {
  display: block;
  color: #222;
  text-decoration: none;
  transition-duration: .3s;
}

.l-header .grobal-area-banner-list a:hover {
  opacity: .85;
}

.l-header-sp {
  position: relative;
  z-index: 10;
}

.l-header-sp::after {
  display: block;
  clear: both;
  content: "";
}

.l-header-sp .nav-sp-btn {
  float: right;
  margin-right: 20px;
  padding-top: 17px;
  padding-bottom: 13px;
}

.l-header-sp .nav-sp-area {
  display: none;
  position: relative;
  z-index: 1;
  clear: both;
  padding: 6px 18px 6px 18px;
  padding-bottom: 60px;
  background-color: #e9e9e9;
  height: calc(100dvh - 66px);
  overflow-y: auto;
  overscroll-behavior-y: contain;
}

.l-header-sp .nav-sp-area.js-active {
  display: block;
}

.l-header-sp .nav-sp-grobal-unordered {
  display: none;
  padding-top: 0;
  padding-left: 10px;
}

.l-header-sp .nav-sp-grobal-unordered.js-active {
  display: block;
}

.l-header-sp .nav-sp-grobal-unordered-list {
  list-style: none;
  padding: 12px 12px;
  border-bottom: 1px solid #707070;
}

.l-header-sp .nav-sp-grobal-unordered-list.top {
  padding-left: 4px;
  font-weight: 500;
}

.l-header-sp .nav-sp-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 48px;
}

.l-header-sp .nav-sp-info-list {
  width: calc(50% - 8px);
  margin-right: 16px;
  margin-bottom: 16px;
}

.l-header-sp .nav-sp-info-list:nth-child(2n),
.l-header-sp .nav-sp-info-list:last-child {
  margin-right: 0;
}

.l-header-sp .nav-sp-info-list a,
.l-header-sp .nav-sp-info-list a:visited,
.l-header-sp .nav-sp-info-list a:link {
  display: block;
  padding: 8px 4px;
  box-sizing: border-box;
  background-color: var(--color-brand);
  color: #fff;
  font-size: 1.3rem;
  line-height: 2.1rem;
  text-decoration: none;
  text-align: center;
}

.l-header-sp .nav-sp-infotxt {
  margin-top: 26px;
}

.l-header-sp .nav-sp-infotxt-list {
  margin-bottom: 8px;
  font-size: 1.3rem;
  text-align: center;
}

.l-header-sp .nav-sp-infotxt-list a,
.l-header-sp .nav-sp-infotxt-list a:visited,
.l-header-sp .nav-sp-infotxt-list a:link {
  color: #222;
  text-decoration: none;
}

.l-header-sp .nav-sp-banner {
  margin-top: 44px;
  margin-bottom: 80px;
}

.l-header-sp .nav-sp-banner-list {
  margin-bottom: 24px;
  text-align: center;
}

.l-header-sp .nav-sp-txt {
  display: block;
  width: 100%;
  margin: 0 0 0 0;
  padding: 20px 4px;
  border: 0;
  border-bottom: 1px solid #707070;
  background-image: url(/images/ico_sp_nav_open.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-color: transparent;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: left;
  color: #222;
}

.l-header-sp .nav-sp-txt.js-active {
  background-image: url(/images/ico_sp_nav_close.png);
}

.bread {
  background: #e9e9e9;
}

.bread-indicator {
  display: flex;
  flex-wrap: wrap;
  padding: 12px 0 12px 0;
  font-size: 1.5rem;
  line-height: 2.3rem;
}

@media (max-width: 768px) {
  .bread-indicator {
    width: 100%;
    font-size: 1.3rem;
    line-height: 2.1rem;
  }
}

.bread-list {
  list-style: none;
}

.bread-list::after {
  margin-right: 8px;
  margin-left: 8px;
  content: "\03e";
}

.bread-list:last-child::after {
  content: none;
}

.bread-list a,
.bread-list a:link,
.bread-list a:visited {
  color: #222;
  text-decoration: none;
}

.bread-list a:hover, .bread-list a:active,
.bread-list a:link:hover,
.bread-list a:link:active,
.bread-list a:visited:hover,
.bread-list a:visited:active {
  color: #222;
  text-decoration: underline;
}

.mainvisual {
  position: relative;
  height: 480px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {
  .mainvisual {
    height: 400px;
  }
}

.mainvisual-inner {
  height: 100%;
  position: relative;
}

.title-mv {
  position: absolute;
  top: 100px;
  right: 110px;
}

.title-mv-ja {
  position: relative;
  margin-bottom: 40px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.6;
}

.title-mv-ja::after {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 38px;
  height: 4px;
  background-color: var(--color-accent);
  content: "";
}

.title-mv-en {
  margin-bottom: 32px;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  line-height: 1.3;
}

@media (max-width: 1320px) {
  .title-mv {
    right: 5%;
  }
}

@media (max-width: 768px) {
  .title-mv {
    position: static;
    padding-top: 20px;
  }

  .title-mv-ja {
    margin-bottom: 16px;
    font-size: 2.4rem;
    line-height: 1.4;
  }

  .title-mv-ja::after {
    bottom: -9px;
  }

  .title-mv-en {
    font-size: 1.2rem;
    line-height: 1.6;
  }
}

.top-btn-link,
.top-btn-link:link,
.top-btn-link:visited {
  display: block;
  position: relative;
  width: 252px;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 24px;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-sizing: border-box;
  box-shadow: -7px -7px 10px 0 rgba(0, 0, 0, 0.15);
  background-color: var(--color-brand);
  color: #fff;
  font-weight: 500;
  font-size: 2.3rem;
  line-height: 1.4;
  text-decoration: none;
  transition-duration: .3s;
}

.top-btn-link::before {
  display: block;
  position: absolute;
  top: 43%;
  right: -28px;
  width: 48px;
  height: 4px;
  background-color: var(--color-secondary);
  content: "";
  transition-duration: .3s;
}


.top-btn-link::after {
  display: block;
  position: absolute;
  top: 51%;
  right: -20px;
  width: 48px;
  height: 4px;
  background-color: var(--color-secondary);
  content: "";
  transition-duration: .3s;
}

.top-btn-link:hover {
  background-color: var(--color-hover);
}

.top-btn-link:hover::before,
.top-btn-link:hover::after {
  right: -24px;
}

@media (max-width: 768px) {
  .top-btn-link,
  .top-btn-link:link,
  .top-btn-link:visited {
    width: 298px;
    padding: 24px 20px 12px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 0;
    box-shadow: 0 7px 10px 0 rgba(0, 0, 0, 0.15);
    font-size: 2.1rem;
    line-height: 3.3rem;
    text-align: center;
  }
  
  .top-btn-link::before {
    top: -8px;
    right: calc(50% - 12px);
    width: 32px;
    height: 3px;
    transform: rotate(-90deg);
  }

  .top-btn-link::after {
    top: 0;
    right: calc(50% - 18px);
    width: 32px;
    height: 3px;
    transform: rotate(-90deg);
  }
    
  .top-btn-link:hover::before {
    top: -4px;
    right: calc(50% - 12px);
  }

  .top-btn-link:hover::after {
    top: -4px;
    right: calc(50% - 18px);
  }
}

.title-mv .top-btn-link {
  width: auto;
  padding-left: 10px;
  padding-right: 36px;
}

@media (max-width: 768px) {
  .title-mv .top-btn-link {
    padding-right: 10px;
  }
}

.slide {
  position: relative;
  height: 315px;
  margin-bottom: 80px;
  padding: 70px 18px 40px;
  background-color: #e9e9e9;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .slide {
    height: 128vw;
    padding-top: 40px;
  }
}

.slide::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(rgba(204, 204, 204, 0.8), rgba(204, 204, 204, 0));
  content: "";
}

.slide::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(rgba(204, 204, 204, 0), rgba(204, 204, 204, 0.8));
  content: "";
}

.swiper {
  max-width: 1278px;
  height: 100%;
}

@media (max-width: 768px) {
  .swiper {
    max-width: none;
    width: 100%;
  }
}

.swiper-slide {
  width: 300px;
}

@media (max-width: 768px) {
  .swiper-slide {
    width: 100%;
    height: calc((100% - 21vw) / 2);
  }
}

.swiper-slide a {
  display: block;
  transition-duration: .3s;
}

.swiper-slide a:hover {
  opacity: .85;
}

.swiper-slide a img {
  width: 100%;
}

.sw-butoon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -40px;
}

@media (max-width: 768px) {
  .sw-butoon-wrap {
    margin-top: -7vw;
  }
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: static;
  width: fit-content;
}

.swiper-button-next,
.swiper-button-prev {
  position: static;
  width: 24px;
  height: 24px;
  margin: 0 4px 4px;
  background-image: url(/images/ico_arrow_blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.swiper-button-prev {
  transform: rotate(180deg);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: none;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 2px solid var(--color-brand);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--color-brand);
}

#sw-button-pause {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  margin-bottom: 2px;
  background-image: url(/images/slider_control_pause.svg);
  border: 0;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  z-index: 10;
}

#sw-button-pause.sw-status-pause {
  background-image: url(/images/slider_control_play.svg);
}

.slide-pickup {
  position: absolute;
  right: 20px;
  bottom: 15px;
}

@media (max-width: 1320px) {
  .slide-pickup {
    position: static;
    float: right;
    width: 329px;
  }
}

.slide-pickup-txt {
  margin-bottom: 9px;
  padding-right: 16px;
  color: #fff;
  font-weight: 500;
  font-size: 2.0rem;
  line-height: 3rem;
  text-align: right;
}

@media (max-width: 1320px) {
  .slide-pickup-txt {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}

.slide-wrapper {
  position: relative;
  max-width: 329px;
  overflow: hidden;
}

.slide-block {
  display: flex;
  width: calc(329px * 4);
  margin: 0 auto 12px auto;
}

.slide-block.slider1 {
  transform: translateX(0);
  transition-property: all;
  transition-duration: .3s;
  transition-timing-function: ease;
}

.slide-block.slider2 {
  transform: translateX(-329px);
  transition-property: all;
  transition-duration: .3s;
  transition-timing-function: ease;
}

.slide-block.slider3 {
  transform: translateX(calc(-329px * 2));
  transition-property: all;
  transition-duration: .3s;
  transition-timing-function: ease;
}

.slide-block.slider4 {
  transform: translateX(calc(-329px * 3));
  transition-property: all;
  transition-duration: .3s;
  transition-timing-function: ease;
}

.slide-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 329px;
  height: 149px;
}

.slide-control-next, .slide-control-prev {
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

.slide-control-next img, .slide-control-prev img {
  vertical-align: text-top;
}

.slide-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 12px;
  padding-left: 12px;
}

.slide-indicator-list {
  list-style: none;
  list-style: none;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  border: 1px #000 solid;
  border-radius: 50%;
  background-color: #999;
  cursor: pointer;
}

.slide-indicator-list.js-active {
  background-color: var(--color-secondary);
}

.slide-indicator-list:first-child {
  margin-left: 0;
}

.mainvisual .control-area {
  display: flex;
  float: right;
  margin-right: 16px;
}

.mainvisual-short {
  height: 300px;
  margin-bottom: 100px;
  background-color: var(--color-brand);
}

.mainvisual-recruit-wrap {
  position: relative;
}

.mainvisual-recruit {
  height: 480px;
  margin-bottom: 84px;
  background-position: center center;
  background-size: 1920px 480px;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .mainvisual-short {
    height: 290px;
    margin-bottom: 100px;
    box-sizing: border-box;
  }

  .mainvisual-recruit {
    height: 50vw;
    background-size: cover;
    margin-bottom: 18px;
  }
}

@media (max-width: 768px) {
  .mainvisual-short.no-image {
    height: auto;
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .mainvisual-short .mainvisual-short-inner {
    display: flex;
    align-items: center;
  }
}

.mainvisual-short-title-h1 {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  width: 640px;
  color: #fff;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 6rem;
}

.mainvisual-recruit-title-h1 {
  position: absolute;
  top: 100px;
  left: 80px;
  padding: 11px 16px;
  background-color: var(--color-brand);
  color: #fff;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1;
}

.mainvisual-recruit-lower {
  position: absolute;
  top: 183px;
  left: calc((100% - 1320px) / 2 + 80px);
  width: 100%;
}

.mainvisual-recruit-copy {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 16px;
  box-sizing: border-box;
  background-color: #fff;
  color: #222;
  font-size: 2.8rem;
  line-height: 1.6;
}

.mainvisual-recruit-lower .general-btn-link {
  width: 290px;
}

@media (max-width: 1320px) {
  .mainvisual-short-title-h1,
  .mainvisual-recruit-title-h1,
  .mainvisual-recruit-lower {
    left: 18px;
  }
}

@media (max-width: 768px) {
  .mainvisual-short-title-h1 {
    position: static;
    transform: translateY(0);
    width: 100%;
    font-size: 3.4rem;
    line-height: 5.4rem;
  }

  .mainvisual-recruit-title-h1 {
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 12px;
    font-size: 3.4rem;
  }

  .mainvisual-recruit-lower {
    position: static;
    padding-left: 18px;
    padding-right: 18px;
    box-sizing: border-box;
  }

  .mainvisual-recruit-copy {
    display: block;
    margin-bottom: 0;
    padding: 0;
    font-size: 2.6rem;
  }
  .mainvisual-recruit-lower .general-btn-link {
    width: 256px;
    min-width: 0;
    margin-left: 0;
    padding: 12px 40px 12px 16px;
  }
}

.mainvisual-short-inner {
  position: relative;
  height: 300px;
}

.mainvisual-recruit-inner {
  position: relative;
  height: 100%;
}

@media (max-width: 768px) {
  .mainvisual-short-inner {
    height: 188px;
    /* padding-top: 77px; */
  }
}

.mainvisual-short-img {
  position: absolute;
  right: 60px;
  bottom: -65px;
}

@media (max-width: 1320px) {
  .mainvisual-short-img img {
    width: 40vw;
  }
}

@media (max-width: 768px) {
  .mainvisual-short-img {
    left: 0;
    right: 0;
    bottom: -165px;
    text-align: center;
  }

  .mainvisual-short-img img {
    width: 80%;
    max-width: 380px;
  }
}

.general-section {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .general-section {
    margin-bottom: 64px;
  }
}

.general-block + .general-block {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .general-block + .general-block {
    margin-top: 32px;
  }
}

.general-title-h1 {
  position: relative;
  margin-top: 25px;
  margin-bottom: 25px;
  padding-top: 1.3rem;
  color: var(--color-brand);
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 6rem;
}

@media (max-width: 768px) {
  .general-title-h1 {
    font-size: 3.4rem;
    line-height: 5.4rem;
  }
}

.general-title-h1::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 5px;
  background-color: var(--color-secondary);
  content: "";
}

.general-title-h1.nomv {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .general-title-h1.nomv {
    margin-top: 60px;
  }
}

.general-title-h2 {
  position: relative;
  margin-bottom: 28px;
  border-bottom: 2px solid #707070;
  color: var(--color-brand);
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 4.5rem;
}

@media (max-width: 768px) {
  .general-title-h2 {
    font-size: 2.6rem;
    line-height: 4.2rem;
  }
}

.general-title-h2::after {
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 44px;
  height: 2px;
  background-color: var(--color-secondary);
  content: "";
}

.general-title-h3 {
  margin-bottom: 23px;
  border-bottom: 1px solid #707070;
  color: var(--color-brand);
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 3.5rem;
}

@media (max-width: 768px) {
  .general-title-h3 {
    font-size: 2.1rem;
    line-height: 3.3rem;
  }
}

.general-title-h4 {
  margin-bottom: 16px;
  color: var(--color-brand);
  font-weight: 500;
  font-size: 2.3rem;
  line-height: 3.5rem;
}

@media (max-width: 768px) {
  .general-title-h4 {
    font-size: 2.1rem;
    line-height: 3.3rem;
  }
}

.general-title-h5 {
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 2.0rem;
  line-height: 3rem;
}

@media (max-width: 768px) {
  .general-title-h5 {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}

.general-title-section-h2 {
  position: relative;
  margin-bottom: 28px;
  padding-top: 24px;
  padding-bottom: 12px;
  color: var(--color-brand);
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 4.5rem;
  text-align: center;
}

@media (max-width: 768px) {
  .general-title-section-h2 {
    height: auto;
    margin-bottom: 31px;
    padding-top: 12px;
    font-size: 2.6rem;
    line-height: 4.2rem;
  }
}

.general-title-section-h2::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: var(--color-secondary);
  content: "";
}

@media (max-width: 768px) {
  .general-title-section-h2::after {
    bottom: -6px;
  }
}

.general-caption {
  margin-bottom: 13px;
  color: #666;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.6;
  line-height: 2.3rem;
  text-align: center;
}

@media (max-width: 768px) {
  .general-caption {
    color: #222;
    font-size: 1.3rem;
    line-height: 2.1rem;
  }
}

.general-img {
  margin-bottom: 11px;
  text-align: center;
}

.general-img img {
  max-width: 100%;
}

.general-img.center {
  text-align: center;
}

.general-disc {
  margin-top: 13px;
  margin-bottom: 13px;
  padding-left: 34px;
}

.general-disc-list {
  list-style: none;
  position: relative;
  margin-bottom: 7px;
}

.general-disc-list:last-child {
  margin-bottom: 0;
}

.general-disc-list::before {
  display: block;
  position: absolute;
  top: .5em;
  left: -34px;
  width: 1.0rem;
  height: 1.0rem;
  border-radius: 50%;
  background-color: var(--color-brand);
  content: "";
}

.general-indent {
  margin-top: 13px;
  margin-bottom: 13px;
  padding-left: 34px;
}

.general-indent-list {
  list-style: none;
  position: relative;
  margin-bottom: 7px;
}

.general-indent-list:last-child {
  margin-bottom: 0;
}

.general-indent-list::before {
  display: block;
  position: absolute;
  top: .5em;
  left: -34px;
  width: .6rem;
  height: .6rem;
  border-radius: 50%;
  border: 2px solid var(--color-brand);
  content: "";
}

.general-number {
  margin-top: 13px;
  margin-bottom: 13px;
  padding-left: 34px;
}

.general-number-list {
  list-style: decimal;
  margin-bottom: 7px;
  margin-left: -13px;
  padding-left: 13px;
}

.general-number-list:last-child {
  margin-bottom: 0;
}

.general-asterisk {
  margin-top: 13px;
  margin-bottom: 13px;
  padding-left: 34px;
}

.general-asterisk-list {
  list-style: none;
  position: relative;
  margin-bottom: 7px;
}

.general-asterisk-list:last-child {
  margin-bottom: 0;
}

.general-asterisk-list::before {
  display: block;
  position: absolute;
  left: -34px;
  width: 10px;
  height: 10px;
  content: "※";
}

.general-arrow {
  margin-top: 13px;
  margin-bottom: 13px;
  padding-left: 34px;
}

.general-arrow-list {
  list-style: none;
  position: relative;
  margin-bottom: 7px;
}

.general-arrow-list:last-child {
  margin-bottom: 0;
}

.general-arrow-list::before {
  display: block;
  position: absolute;
  top: .6rem;
  left: -34px;
  width: 18px;
  height: 18px;
  background-image: url(/images/ico_arrow_left_blue.svg);
  content: "";
}

.general-pagelink-title {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 2.3rem;
  line-height: 3.5rem;
  text-align: center;
}

@media (max-width: 768px) {
  .general-pagelink-title {
    font-size: 2.1rem;
    line-height: 3.3rem;
  }
}

.general-pagelink-indicator {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: -24px;
  padding-bottom: 60px;
  padding-left: 0;
  border-bottom: 1px solid #707070;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .general-pagelink-indicator {
    margin-bottom: -16px;
    padding-bottom: 40px;
  }
}

.general-pagelink-item {
  list-style: none;
  margin-right: 24px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .general-pagelink-item {
    margin-right: 16px;
    margin-bottom: 16px;
  }
}

.general-pagelink-item:last-child {
  margin-right: 0;
}

.general-pagelink-link, .general-pagelink-link:link, .general-pagelink-link:visited {
  display: block;
  position: relative;
  padding: 9px 74px 9px 18px;
  background-color: var(--color-brand);
  color: #fff;
  text-decoration: none;
  transition-property: background-color;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
}

@media (max-width: 980px) {
  .general-pagelink-link, .general-pagelink-link:link, .general-pagelink-link:visited {
    padding: 9px 52px 9px 18px;
  }
}

.general-pagelink-link::after, .general-pagelink-link:link::after, .general-pagelink-link:visited::after {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url(/images/ico_arrow_down.png);
  background-repeat: no-repeat;
  content: "";
  transition-property: top;
  transition-duration: .3s;
  transition-timing-function: ease-in-out;
}

.general-pagelink-link:hover, .general-pagelink-link:active, .general-pagelink-link:link:hover, .general-pagelink-link:link:active, .general-pagelink-link:visited:hover, .general-pagelink-link:visited:active {
  background-color: var(--color-hover);
}

.general-pagelink-link:hover::after, .general-pagelink-link:active::after, .general-pagelink-link:link:hover::after, .general-pagelink-link:link:active::after, .general-pagelink-link:visited:hover::after, .general-pagelink-link:visited:active::after {
  top: 58%;
}

.general-link-arrow::after {
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  background-image: url(/images/ico_arrow_blue.svg);
  background-size: 1.8rem;
  background-repeat: no-repeat;
  vertical-align: text-top;
  content: "";
}

.general-link-arrow-left {
  position: relative;
  color: var(--color-brand);
  text-decoration: underline;
}

.general-link-arrow-left::before {
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 4px;
  background-image: url(/images/ico_arrow_blue.svg);
  background-size: 1.8rem;
  background-repeat: no-repeat;
  vertical-align: text-top;
  content: "";
}

.general-link-arrow-prev {
  position: relative;
  color: var(--color-brand);
  text-decoration: underline;
}

.general-link-arrow-prev::before {
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 10px;
  background-image: url(/images/icon_arrow_prev_blue.png);
  background-size: 1.8rem;
  background-repeat: no-repeat;
  vertical-align: text-top;
  content: "";
}

.general-link-blank::after {
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  background-image: url(/images/ico_blank.svg);
  background-size: 1.8rem;
  background-repeat: no-repeat;
  vertical-align: text-top;
  content: "";
}

.general-link-pdf::after {
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  background-image: url(/images/ico_pdf.svg);
  background-size: 1.8rem;
  background-repeat: no-repeat;
  vertical-align: text-top;
  content: "";
}

@media (max-width: 768px) {
  .general-link-arrow::after,
  .general-link-arrow-left::before,
  .general-link-arrow-prev::before,
  .general-link-blank::after,
  .general-link-pdf::after {
    width: 1.6rem;
    height: 1.6rem;
    background-size: 1.6rem;
  }
}

.general-link-right {
  text-align: right;
}

.general-link-img-indicator {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: -24px;
  padding-left: 0;
}

@media (max-width: 768px) {
  .general-link-img-indicator {
    display: block;
    margin-bottom: 0;
  }
}

.general-link-img-item {
  list-style: none;
  position: relative;
  width: calc(33.3% - 16px);
  margin-right: 24px;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid var(--color-brand);
  border-radius: 0 5px 0 5px;
  box-sizing: border-box;
  transition-property: border-radius;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
}

@media (max-width: 768px) {
  .general-link-img-item {
    width: 100%;
    margin-right: 0;
  }
  .general-link-img-item:last-child {
    margin-bottom: 0;
  }
}

.general-link-img-item img {
  width: 100%;
  transition-property: transform;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
}

.general-link-img-item:nth-child(3n) {
  margin-right: 0;
}

.general-link-img-item:hover, .general-link-img-item:active {
  border-radius: 5px 0 5px 0;
}

.general-link-img-item:hover img, .general-link-img-item:active img {
  transform: scale(1.05, 1.05);
}

.general-link-img-item.case-study:hover, .general-link-img-item.case-study:active {
  border-radius: 5px 0 5px 0;
}

.general-link-img-item.case-study:hover img, .general-link-img-item.case-study:active img {
  transform: none;
}

.general-link-img-item.case-study:hover .general-link-img-item-txt, .general-link-img-item.case-study:active .general-link-img-item-txt {
  background-color: white;
  color: #222;
  text-decoration: underline;
}

.general-link-img-item-txt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin-bottom: 0;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: rgba(255, 255, 255, 0.85);
  text-align: center;
  transition-property: background-color, text-decoration;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
}

@media (max-width: 768px) {
  .general-link-img-item-txt {
    font-weight: 500;
    font-size: 1.6rem;
  }
}

.general-link-img-item-tag {
  position: absolute;
  z-index: 1;
  padding: 5px 8px 5px 8px;
  background: var(--color-brand);
  color: #fff;
}

.general-link-img-link, .general-link-img-link:link, .general-link-img-link:visited {
  display: block;
  color: #222;
}

.general-link-img-link:hover .general-link-img-item-txt, .general-link-img-link:active .general-link-img-item-txt, .general-link-img-link:link:hover .general-link-img-item-txt, .general-link-img-link:link:active .general-link-img-item-txt, .general-link-img-link:visited:hover .general-link-img-item-txt, .general-link-img-link:visited:active .general-link-img-item-txt {
  background-color: white;
  color: var(--color-brand);
}

.general-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .general-btn {
    display: block;
    margin-bottom: 20px;
  }
}

.general-btn-link {
  display: flex;
  align-items: center;
  position: relative;
  min-width: 290px;
  height: 100%;
  padding: 20px 50px 20px 20px;
  box-sizing: border-box;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
  background-color: var(--color-brand);
  color: #fff;
  text-decoration: none;
  transition-property: background-color;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
}

@media (max-width: 768px) {
  .general-btn-link {
    width: 100%;
    max-width: 256px;
    margin-right: auto;
    margin-left: auto;
  }
}

.general-btn-link:link, .general-btn-link:visited {
  color: #fff;
  text-decoration: none;
}

.general-btn-link::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url(/images/ico_arrow_right_white.svg);
  content: "";
  transition-property: right;
  transition-duration: .3s;
  transition-timing-function: ease-in-out;
}

.general-btn-link:hover, .general-btn-link:active {
  background-color: var(--color-hover);
}

.general-btn-link:hover::after, .general-btn-link:active::after {
  right: 11px;
}

.general-btn-link-w310 {
  width: 310px;
}

@media (max-width: 980px) {
  .general-btn-link-w310 {
    width: 100%;
    min-width: 0;
  }
}

.general-btn-link-w468 {
  width: 468px;
}

@media (max-width: 980px) {
  .general-btn-link-w468 {
    width: 100%;
    min-width: 0;
  }
}

.general-btn-link-blank::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url(/images/ico_blank_white.svg);
  content: "";
}

.general-btn-left {
  justify-content: flex-start;
}

.general-btn-default {
  display: block;
}

.general-col-title {
  margin-bottom: 16px;
  color: var(--color-brand);
  font-weight: 500;
  font-size: 2.3rem;
  line-height: 3.5rem;
  line-height: 1.52;
}

@media (max-width: 768px) {
  .general-col-title {
    font-size: 2.1rem;
    line-height: 3.3rem;
  }
}

.general-col-txt {
  padding: 0 12px 0 12px;
}

.general-col-plr0 .general-2col-vertical-block,
.general-col-plr0 .general-3col-vertical-block {
  padding-right: 0;
  padding-left: 0;
  padding-top: 12px;
  padding-bottom: 12px;
}

.general-2col-left {
  display: flex;
}

@media (max-width: 768px) {
  .general-2col-left {
    display: block;
  }
}

.general-2col-left-img {
  flex-shrink: 0;
  width: 300px;
  margin-right: 24px;
}

@media (max-width: 980px) {
  .general-2col-left-img {
    width: 30%;
  }
}

@media (max-width: 768px) {
  .general-2col-left-img {
    width: 100%;
    margin-right: 0;
  }
}

.general-2col-left-img img {
  width: 100%;
}

@media (max-width: 768px) {
  .general-2col-left-txt {
    margin-bottom: 30px;
  }
}

.general-2col-right {
  display: flex;
}

@media (max-width: 768px) {
  .general-2col-right {
    display: block;
  }
}

.general-2col-right-img {
  flex-shrink: 0;
  width: 300px;
  margin-left: 24px;
}

@media (max-width: 980px) {
  .general-2col-right-img {
    width: 30%;
  }
}

@media (max-width: 768px) {
  .general-2col-right-img {
    width: 100%;
    margin-left: 0;
  }
}

.general-2col-right-img img {
  width: 100%;
}

.general-2col-right-txt {
  margin-bottom: 24px;
}

.general-2col-vertical {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 768px) {
  .general-2col-vertical {
    display: block;
  }
}

.general-2col-vertical-block {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  width: calc(50% - 12px);
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .general-2col-vertical-block {
    width: 100%;
    margin-bottom: 19px;
    padding: 0;
  }
}

.general-2col-vertical-block img {
  width: 100%;
}

.general-2col-vertical-block .general-btn {
  margin-top: auto;
  padding-top: 20px;
}

.general-2col-vertical-link, .general-2col-vertical-link:link, .general-2col-vertical-link:visited {
  display: block;
  margin: -12px -12px 0 -12px;
  padding: 12px;
  border: 1px solid #fff;
  box-sizing: border-box;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0);
  color: #222;
  text-decoration: none;
  transition-property: border, box-shadow;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
}

.general-2col-vertical-link:hover, .general-2col-vertical-link:active, .general-2col-vertical-link:link:hover, .general-2col-vertical-link:link:active, .general-2col-vertical-link:visited:hover, .general-2col-vertical-link:visited:active {
  padding: 12px;
  border: 1px solid #707070;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.3);
}

.general-2col-vertical-link:hover .general-link-arrow-left, .general-2col-vertical-link:active .general-link-arrow-left, .general-2col-vertical-link:link:hover .general-link-arrow-left, .general-2col-vertical-link:link:active .general-link-arrow-left, .general-2col-vertical-link:visited:hover .general-link-arrow-left, .general-2col-vertical-link:visited:active .general-link-arrow-left {
  text-decoration: none;
}

.general-2col-vertical-img {
  margin-bottom: 15px;
}

.general-3col-vertical {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
}

@media (max-width: 768px) {
  .general-3col-vertical {
    display: block;
  }
}

.general-3col-vertical-block {
  flex-shrink: 0;
  width: calc(33.3% - 16px);
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .general-3col-vertical-block {
    width: 100%;
    margin-bottom: 19px;
    padding: 0;
  }
}

.general-3col-vertical-block img {
  width: 100%;
}

.general-3col-vertical-link, .general-3col-vertical-link:link, .general-3col-vertical-link:visited {
  display: block;
  margin: -12px -12px 0 -12px;
  padding: 12px;
  border: 1px solid #fff;
  box-sizing: border-box;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0);
  color: #222;
  text-decoration: none;
  transition-property: border, box-shadow;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
}

.general-3col-vertical-link:hover, .general-3col-vertical-link:active, .general-3col-vertical-link:link:hover, .general-3col-vertical-link:link:active, .general-3col-vertical-link:visited:hover, .general-3col-vertical-link:visited:active {
  padding: 12px;
  border: 1px solid #707070;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.3);
}

.general-3col-vertical-link:hover .general-link-arrow-left, .general-3col-vertical-link:active .general-link-arrow-left, .general-3col-vertical-link:link:hover .general-link-arrow-left, .general-3col-vertical-link:link:active .general-link-arrow-left, .general-3col-vertical-link:visited:hover .general-link-arrow-left, .general-3col-vertical-link:visited:active .general-link-arrow-left {
  text-decoration: none;
}

.general-3col-vertical-img {
  margin-bottom: 15px;
}

.general-video iframe {
  width: 100%;
  min-height: 400px;
}

@media (max-width: 768px) {
  .general-video iframe {
    min-height: 200px;
  }
}

.general-table {
  width: 100%;
  font-size: 1.5rem;
  line-height: 2.3rem;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

@media (max-width: 768px) {
  .general-table {
    font-size: 1.3rem;
    line-height: 2.1rem;
    table-layout: auto;
  }
}

.general-table-set {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .general-table-set {
    margin-bottom: 32px;
  }
}

@media (max-width: 768px) {
  .general-table-scroll {
    overflow-x: scroll;
    white-space: nowrap;
  }
}

.general-table-f-middle {
  font-size: 1.8rem;
  line-height: 2.8rem;
}

@media (max-width: 768px) {
  .general-table-f-middle {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}

@media (max-width: 768px) {
  .general-table-fixed {
    position: sticky;
    left: 0;
    z-index: 9999;
    background-color: #fff;
  }
  .general-table-fixed:before {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 100%;
    height: 100%;
    border: 1px solid #707070;
    content: "";
    z-index: -1;
  }
  .general-table-fixed:after {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #707070;
    content: "";
    z-index: -1;
  }
}

.general-table-th {
  padding: 8px 14px 8px 14px;
  border: 1px solid #707070;
  background-color: var(--color-brand);
  color: #fff;
  font-weight: 500;
  text-align: center;
  word-break: break-all;
}

.general-table-th.left {
  text-align: left;
}

.general-table-td {
  padding: 18px 14px 18px 14px;
  border: 1px solid #707070;
  word-break: break-all;
  vertical-align: middle;
}

.general-table-td-center {
  padding: 9px 14px 9px 14px;
  text-align: center;
}

.general-table tr:nth-child(odd) {
  background-color: var(--color-background);
}

.general-table tr:nth-child(odd) .general-table-td:first-child {
  background-color: var(--color-background);
}

.general-table-spview-beside tr:nth-child(even) {
  background-color: var(--color-background);
}

@media (max-width: 768px) {
  .general-table-spview-beside tr:nth-child(even) {
    background: #fff;
  }
}

.general-table-spview-beside tr:nth-child(odd) {
  background-color: #fff;
}

@media (max-width: 768px) {
  .general-table-spview-beside {
    border: 1px solid #707070;
    border-bottom: 0;
  }
  .general-table-spview-beside tr,
  .general-table-spview-beside .general-table-th,
  .general-table-spview-beside .general-table-td {
    display: block;
    width: 100% !important;
    box-sizing: border-box;
  }
  .general-table-spview-beside tr,
  .general-table-spview-beside tr:nth-child(odd) {
    background-color: #fff;
  }
  .general-table-spview-beside .general-table-th {
    border: 0;
    border-bottom: 1px solid #707070;
  }
  .general-table-spview-beside .general-table-td {
    border: 0;
    border-bottom: 1px solid #707070;
  }
  .general-table-spview-beside .general-table-td:nth-child(odd) {
    background-color: var(--color-background);
  }
}

.general-table-note {
  margin-top: 18px;
}

.general-bg-block {
  padding: 37px 59px 37px 59px;
  border: 1px solid var(--color-brand);
  background: var(--color-background);
}

@media (max-width: 768px) {
  .general-bg-block {
    padding: 13px 17px 13px 17px;
  }
}

.general-bg-block .general-title-h3 {
  margin-top: 0;
}

.general-dl {
  display: flex;
  padding-top: 18px;
  padding-bottom: 13px;
  border-bottom: 1px solid #707070;
}

@media (max-width: 768px) {
  .general-dl {
    display: block;
  }
}

.general-dt {
  flex-shrink: 0;
  width: 196px;
  margin-right: 24px;
}

@media (max-width: 768px) {
  .general-dt {
    width: 100%;
    margin-right: 0;
    margin-bottom: 11px;
  }
}

.general-dd {
  margin-right: 24px;
  margin-left: 0;
}

@media (max-width: 768px) {
  .general-dd {
    margin-bottom: 11px;
  }
  .general-dd:last-child {
    margin-bottom: 0;
  }
  .general-dd img {
    width: 100%;
  }
}

.general-dd:last-child {
  margin-right: 0;
}

.general-related-indicator {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: -24px;
  padding-left: 0;
}

@media (max-width: 768px) {
  .general-related-indicator {
    margin-bottom: 0;
  }
}

.general-related-link, .general-related-link:link, .general-related-link:visited {
  display: flex;
  height: 100%;
  color: #222;
  text-decoration: none;
  transition-property: color;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
}

.general-related-link:hover, .general-related-link:active, .general-related-link:link:hover, .general-related-link:link:active, .general-related-link:visited:hover, .general-related-link:visited:active {
  color: #fff;
}

.general-related-item {
  list-style: none;
  width: calc(25% - 18px);
  margin-right: 24px;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid var(--color-brand);
  border-radius: 0 5px 0 5px;
  box-sizing: border-box;
  background: var(--color-background);
  transition-property: background-color, border-radius;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
}

@media (max-width: 768px) {
  .general-related-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
  }
  .general-related-item:last-child {
    margin-bottom: 0;
  }
}

.general-related-item:hover, .general-related-item:active {
  border-radius: 5px 0 5px 0;
  background: var(--color-brand);
}

.general-related-item:nth-child(4n), .general-related-item:last-child {
  margin-right: 0;
}

.general-related-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
  min-width: 82px;
  padding: 4px;
  background-color: #fff;
}

.general-related-img img {
  align-items: center;
  width: auto;
  max-width: 100%;
}

.general-related-txt {
  display: flex;
  align-items: center;
  width: 80%;
  padding: 6px;
}

.general-inquiry {
  margin-bottom: 80px;
  text-align: center;
}

@media (max-width: 768px) {
  .general-inquiry {
    margin-bottom: 64px;
  }
}

.general-inquiry .general-title-section-h2 {
  margin-bottom: 56px;
}

@media (max-width: 768px) {
  .general-inquiry .general-title-section-h2 {
    margin-bottom: 49px;
  }
}

.general-inquiry-link, .general-inquiry-link:link, .general-inquiry-link:visited {
  display: inline-block;
  position: relative;
  width: auto;
  min-width: 360px;
  max-width: 60%;
  padding: 36px 36px 19px 36px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  box-sizing: border-box;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
  background: var(--color-brand);
  color: #fff;
  font-size: 2.3rem;
  line-height: 3.5rem;
  text-decoration: none;
  text-align: center;
  transition-property: background-color;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
}

@media (max-width: 768px) {
  .general-inquiry-link, .general-inquiry-link:link, .general-inquiry-link:visited {
    min-width: 100%;
    max-width: 100%;
    font-size: 2.1rem;
    line-height: 3.3rem;
  }
}

.general-inquiry-link::before, .general-inquiry-link:link::before, .general-inquiry-link:visited::before {
  position: absolute;
  top: -28px;
  left: calc(50% - 6px);
  width: 4px;
  height: 48px;
  background-color: var(--color-secondary);
  content: "";
  transition-property: top;
  transition-duration: .3s;
  transition-timing-function: ease-in-out;
}

.general-inquiry-link::after, .general-inquiry-link:link::after, .general-inquiry-link:visited::after {
  position: absolute;
  top: -20px;
  right: calc(50% - 6px);
  width: 4px;
  height: 48px;
  background-color: var(--color-secondary);
  content: "";
  transition-property: top;
  transition-duration: .3s;
  transition-timing-function: ease-in-out;
}

.general-inquiry-link:hover, .general-inquiry-link:link:hover, .general-inquiry-link:visited:hover {
  background-color: var(--color-hover);
}

.general-inquiry-link:hover::before, .general-inquiry-link:link:hover::before, .general-inquiry-link:visited:hover::before {
  top: -24px;
}

.general-inquiry-link:hover::after, .general-inquiry-link:link:hover::after, .general-inquiry-link:visited:hover::after {
  top: -24px;
}

.general-qa-list {
  position: relative;
  margin-bottom: 24px;
  padding-left: 100px;
}

@media (max-width: 768px) {
  .general-qa-list {
    padding-left: 0;
  }
}

.general-qa-num {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 84px;
  padding-top: 8px;
  padding-bottom: 8px;
  box-sizing: border-box;
  background: var(--color-brand);
  color: #fff;
  font-weight: 500;
  font-size: 2.8rem;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

@media (max-width: 768px) {
  .general-qa-num {
    position: static;
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 2.6rem;
    line-height: 4.2rem;
  }
}

.general-qa-aco-title {
  display: block;
  width: 100%;
  padding: 10px 24px 5px 8px;
  border: 0;
  border-bottom: 1px solid #707070;
  box-sizing: border-box;
  background-image: url(/images/ico_arrow_down_blue.png);
  background-position: right 5px center;
  background-repeat: no-repeat;
  background-color: #fff;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: .05em;
  text-align: left;
  cursor: pointer;
}

.general-qa-aco-title:hover, .general-qa-aco-title:active {
  border-bottom: 1px solid var(--color-brand);
  background-color: var(--color-background);
}

.general-qa-aco-title.js-active {
  border-bottom: 1px solid var(--color-brand);
  background-image: url(/images/ico_arrow_up_blue.png);
  background-position: right 5px center;
  background-color: var(--color-background);
}

.general-qa-aco-content {
  position: relative;
  height: 0rem;
  padding-left: 70px;
  overflow: hidden;
  transition-property: height, padding, margin, border;
  transition-duration: .4s;
  transition-timing-function: ease-in-out;
}

@media (max-width: 768px) {
  .general-qa-aco-content {
    padding-left: 0;
  }
}

.general-qa-aco-content.js-active {
  margin-top: 26px;
  padding-bottom: 17px;
  border-bottom: 1px solid #707070;
}

@media (max-width: 768px) {
  .general-qa-aco-content.js-active {
    margin-top: 16px;
  }
}

.general-qa-answer-num {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 58px;
  color: var(--color-brand);
  font-weight: 500;
  font-size: 2.8rem;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

@media (max-width: 768px) {
  .general-qa-answer-num {
    display: block;
    position: static;
    font-size: 2.6rem;
    line-height: 4.2rem;
    text-align: left;
  }
}

.general-yellow-animation-fade {
  opacity: 0;
  transform: translate(0px, 5px);
  transition-property: opacity,transform;
  transition-duration: .5s;
  transition-timing-function: ease-in-out;
}

.general-yellow-animation-fade.active {
  opacity: 1;
  transform: translate(0px, 0px);
}

.general-yellow-read {
  position: relative;
  transform: translate(0px, 5px);
  padding-bottom: 43px;
}

@media (max-width: 768px) {
  .general-yellow-read {
    padding-bottom: 32px;
  }
}

.general-yellow-read:after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 3px;
  background-color: var(--color-secondary);
  content: "";
}

.general-yellow-read-box {
  position: relative;
  padding: 57px 24px 46px 24px;
  font-size: 2.3rem;
  line-height: 3.5rem;
  text-align: center;
}

@media (max-width: 768px) {
  .general-yellow-read-box {
    padding: 18px 12px 18px 12px;
    font-size: 2.1rem;
    line-height: 3.3rem;
  }
}

.general-yellow-read-box p:last-child {
  margin-bottom: 0;
}

.general-yellow-read-st {
  display: inline;
  padding: 0 1px 0px;
  background: linear-gradient(transparent 60%, var(--color-secondary) 0%);
}

.general-yellow-read-animation {
  position: relative;
}

.general-yellow-read-animation-bor1:before, .general-yellow-read-animation-bor1:after {
  position: absolute;
  width: 0;
  content: "";
  transition-property: width, height;
  transition-duration: .5s;
  transition-timing-function: ease-in-out;
}

.general-yellow-read-animation-bor1:before {
  top: 0;
  left: 0;
  border-top: 9px solid var(--color-brand);
  border-radius: 10px 0 0 0;
}

@media (max-width: 768px) {
  .general-yellow-read-animation-bor1:before {
    left: -6px;
    border-top: 6px solid var(--color-brand);
    border-radius: 9px 0 0 0;
  }
}

.general-yellow-read-animation-bor1:after {
  right: 0;
  bottom: 0;
  border-bottom: 9px solid var(--color-brand);
  border-radius: 0 0 10px 0;
}

@media (max-width: 768px) {
  .general-yellow-read-animation-bor1:after {
    right: -6px;
    border-bottom: 6px solid var(--color-brand);
    border-radius: 0 0 9px 0;
  }
}

.general-yellow-read-animation-bor2:before, .general-yellow-read-animation-bor2:after {
  position: absolute;
  height: 0;
  content: "";
  transition-property: width, height;
  transition-duration: .5s;
  transition-timing-function: ease-in-out;
}

.general-yellow-read-animation-bor2:before {
  top: 0;
  left: 0;
  border-left: 9px solid var(--color-brand);
  border-radius: 10px 0 0 0;
}

@media (max-width: 768px) {
  .general-yellow-read-animation-bor2:before {
    left: -6px;
    border-left: 6px solid var(--color-brand);
    border-radius: 9px 0 0 0;
  }
}

.general-yellow-read-animation-bor2:after {
  right: 0;
  bottom: 0;
  border-right: 9px solid var(--color-brand);
  border-radius: 0 0 10px 0;
}

@media (max-width: 768px) {
  .general-yellow-read-animation-bor2:after {
    right: -6px;
    border-right: 6px solid var(--color-brand);
    border-radius: 0 0 9px 0;
  }
}

.general-yellow-read.active .general-yellow-read-animation-bor1:before, .general-yellow-read.active .general-yellow-read-animation-bor1:after {
  width: 340px;
  transition-delay: .2s;
}

@media (max-width: 768px) {
  .general-yellow-read.active .general-yellow-read-animation-bor1:before, .general-yellow-read.active .general-yellow-read-animation-bor1:after {
    width: 200px;
  }
}

.general-yellow-read.active .general-yellow-read-animation-bor2:before, .general-yellow-read.active .general-yellow-read-animation-bor2:after {
  height: 90px;
  transition-delay: .4s;
}

.general-yellow-title-h2 {
  position: relative;
  margin-bottom: 28px;
  margin-left: 24px;
  border-bottom: 2px solid var(--color-brand);
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 4.5rem;
}

@media (max-width: 768px) {
  .general-yellow-title-h2 {
    margin-left: 14px;
    font-size: 2.6rem;
    line-height: 4.2rem;
  }
}

.general-yellow-title-h2:before {
  display: block;
  position: absolute;
  top: 0;
  left: -24px;
  width: 8px;
  height: 100%;
  background-color: var(--color-secondary);
  content: "";
}

@media (max-width: 768px) {
  .general-yellow-title-h2:before {
    left: -14px;
    width: 6px;
  }
}

.general-yellow-title-h2-under {
  position: relative;
  margin-bottom: 40px;
  padding-top: 24px;
  padding-bottom: 12px;
  color: var(--color-brand);
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 4.5rem;
  text-align: center;
}

@media (max-width: 768px) {
  .general-yellow-title-h2-under {
    padding-top: 12px;
    font-size: 2.6rem;
    line-height: 4.2rem;
  }
}

.general-yellow-title-h2-under:after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background-color: var(--color-secondary);
  content: "";
}

.general-yellow-title-h3 {
  position: relative;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 3.5rem;
}

@media (max-width: 768px) {
  .general-yellow-title-h3 {
    font-size: 2.1rem;
    line-height: 3.3rem;
  }
}

.general-yellow-title-h3:before {
  display: block;
  position: absolute;
  top: 10px;
  left: -32px;
  width: 24px;
  height: 3px;
  background-color: var(--color-secondary);
  content: "";
}

@media (max-width: 768px) {
  .general-yellow-title-h3:before {
    top: calc(1.65rem - 1.5px);
    left: -16px;
    width: 12px;
  }
}

.general-yellow-title-h4 {
  position: relative;
  margin-bottom: 13px;
  border-bottom: 2px solid var(--color-secondary);
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 3.5rem;
}

@media (max-width: 768px) {
  .general-yellow-title-h4 {
    font-size: 2.1rem;
    line-height: 3.3rem;
  }
}

.general-yellow-title-h5 {
  position: relative;
  margin-bottom: 13px;
  font-weight: 500;
  font-size: 2.3rem;
  line-height: 3.5rem;
}

@media (max-width: 768px) {
  .general-yellow-title-h5 {
    font-size: 2.1rem;
    line-height: 3.3rem;
  }
}

.general-yellow-emphasis {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .general-yellow-emphasis {
    margin-bottom: 32px;
  }
}

.general-yellow-emphasis-title-h2, 
.general-yellow-emphasis-title-h3, 
.general-yellow-emphasis-title-h4, 
.general-yellow-emphasis-title-h5 {
  position: relative;
  margin-bottom: 28px;
  padding-left: 37px;
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 4.5rem;
}

@media (max-width: 768px) {
  .general-yellow-emphasis-title-h2,
  .general-yellow-emphasis-title-h3,
  .general-yellow-emphasis-title-h4,
  .general-yellow-emphasis-title-h5 {
    margin-bottom: 18px;
    padding-left: 14px;
    font-size: 2.6rem;
    line-height: 4.2rem;
  }
}

.general-yellow-emphasis-title-h2:before,
.general-yellow-emphasis-title-h3:before,
.general-yellow-emphasis-title-h4:before,
.general-yellow-emphasis-title-h5:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background-color: var(--color-secondary);
  content: "";
}

@media (max-width: 768px) {
  .general-yellow-emphasis-title-h2:before,
  .general-yellow-emphasis-title-h3:before,
  .general-yellow-emphasis-title-h4:before,
  .general-yellow-emphasis-title-h5:before {
    width: 6px;
  }
}

.general-yellow-emphasis-txt {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 24px;
  padding-left: 37px;
}

@media (max-width: 768px) {
  .general-yellow-emphasis-txt {
    margin-bottom: 16px;
    padding-bottom: 14px;
    padding-left: 14px;
  }
}

.general-yellow-emphasis-txt p:last-child {
  margin-bottom: 0;
}

.general-yellow-emphasis-txt:before, .general-yellow-emphasis-txt:after {
  position: absolute;
  width: 0;
  height: 0;
  content: "";
  transition-property: width, height;
  transition-duration: .5s;
  transition-timing-function: ease-in-out;
}

.general-yellow-emphasis-txt:before {
  top: 0;
  left: 0;
  border-left: 5px solid var(--color-brand);
  border-radius: 0 0 0 10px;
}

@media (max-width: 768px) {
  .general-yellow-emphasis-txt:before {
    border-left: 4px solid var(--color-brand);
  }
}

.general-yellow-emphasis-txt:after {
  bottom: 0;
  left: 0;
  border-bottom: 5px solid var(--color-brand);
  border-radius: 0 0 0 10px;
}

@media (max-width: 768px) {
  .general-yellow-emphasis-txt:after {
    border-bottom: 4px solid var(--color-brand);
  }
}

.general-yellow-emphasis.active .general-yellow-emphasis-txt:before {
  height: 100%;
  transition-delay: .2s;
}

.general-yellow-emphasis.active .general-yellow-emphasis-txt:after {
  width: 340px;
  transition-delay: .4s;
}

@media (max-width: 768px) {
  .general-yellow-emphasis.active .general-yellow-emphasis-txt:after {
    width: 200px;
  }
}

.general-yellow-emphasis .general-img {
  margin-bottom: 0;
}

.general-yellow-emphasis-2col-right {
  display: flex;
}

@media (max-width: 768px) {
  .general-yellow-emphasis-2col-right {
    display: block;
  }
}

.general-yellow-emphasis-2col-right .general-yellow-emphasis-title-h2,
.general-yellow-emphasis-2col-right .general-yellow-emphasis-title-h3,
.general-yellow-emphasis-2col-right .general-yellow-emphasis-title-h4,
.general-yellow-emphasis-2col-right .general-yellow-emphasis-title-h5 {
  z-index: 1;
  margin-bottom: 0;
  padding-bottom: 28px;
  background-color: #fff;
}

@media (max-width: 768px) {
  .general-yellow-emphasis-2col-right .general-yellow-emphasis-title-h2,
  .general-yellow-emphasis-2col-right .general-yellow-emphasis-title-h3,
  .general-yellow-emphasis-2col-right .general-yellow-emphasis-title-h4,
  .general-yellow-emphasis-2col-right .general-yellow-emphasis-title-h5 {
    margin-bottom: 18px;
    padding-bottom: 0;
  }
}

.general-yellow-emphasis-2col-right .general-yellow-emphasis-title-h2:after,
.general-yellow-emphasis-2col-right .general-yellow-emphasis-title-h3:after,
.general-yellow-emphasis-2col-right .general-yellow-emphasis-title-h4:after,
.general-yellow-emphasis-2col-right .general-yellow-emphasis-title-h5:after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 28px;
  background-color: #fff;
  content: "";
}

@media (max-width: 768px) {
  .general-yellow-emphasis-2col-right .general-yellow-emphasis-title-h2:after,
  .general-yellow-emphasis-2col-right .general-yellow-emphasis-title-h3:after,
  .general-yellow-emphasis-2col-right .general-yellow-emphasis-title-h4:after,
  .general-yellow-emphasis-2col-right .general-yellow-emphasis-title-h5:after {
    content: none;
  }
}

.general-yellow-emphasis-2col-right-txt {
  position: relative;
  padding-right: 383px;
}

@media (max-width: 768px) {
  .general-yellow-emphasis-2col-right-txt {
    padding-right: 0;
  }
}

.general-yellow-emphasis-2col-right-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 367px;
  margin-left: 16px;
}

@media (max-width: 768px) {
  .general-yellow-emphasis-2col-right-img {
    position: static;
    width: 100%;
    margin-top: 11px;
    margin-left: 0;
  }
}

.general-yellow-emphasis-2col-right-img img {
  max-width: 100%;
}

.general-yellow-emphasis-2col-right-box {
  padding-bottom: 24px;
  padding-left: 37px;
}

@media (max-width: 768px) {
  .general-yellow-emphasis-2col-right-box {
    position: relative;
    margin-bottom: 16px;
    padding-bottom: 14px;
    padding-left: 14px;
  }
}

.general-yellow-emphasis-2col-right-box p:last-child {
  margin-bottom: 0;
}

.general-yellow-emphasis-2col-right-box:before, .general-yellow-emphasis-2col-right-box:after {
  position: absolute;
  width: 0;
  height: 0;
  content: "";
  transition-property: width, height;
  transition-duration: .5s;
  transition-timing-function: ease-in-out;
}

.general-yellow-emphasis-2col-right-box:before {
  top: 0;
  left: 0;
  border-left: 5px solid var(--color-brand);
  border-radius: 0 0 0 10px;
}

@media (max-width: 768px) {
  .general-yellow-emphasis-2col-right-box:before {
    border-left: 4px solid var(--color-brand);
  }
}

.general-yellow-emphasis-2col-right-box:after {
  bottom: 0;
  left: 0;
  border-bottom: 5px solid var(--color-brand);
  border-radius: 0 0 0 10px;
}

@media (max-width: 768px) {
  .general-yellow-emphasis-2col-right-box:after {
    border-bottom: 4px solid var(--color-brand);
  }
}

.general-yellow-emphasis-2col-right.active .general-yellow-emphasis-2col-right-box:before {
  height: 100%;
  transition-delay: .2s;
}

.general-yellow-emphasis-2col-right.active .general-yellow-emphasis-2col-right-box:after {
  width: 340px;
  transition-delay: .4s;
}

@media (max-width: 768px) {
  .general-yellow-emphasis-2col-right.active .general-yellow-emphasis-2col-right-box:after {
    width: 200px;
  }
}

.general-yellow-emphasis-animation {
  position: relative;
  transform: translate(0px, 0px);
}

.general-yellow-emphasis-animation-bor1:before, .general-yellow-emphasis-animation-bor1:after {
  position: absolute;
  width: 0;
  content: "";
  transition-property: width, height;
  transition-duration: .5s;
  transition-timing-function: ease-in-out;
}

.general-yellow-emphasis-animation-bor1:before {
  top: 0;
  left: 0;
  border-top: 9px solid var(--color-brand);
  border-radius: 10px 0 0 0;
}

@media (max-width: 768px) {
  .general-yellow-emphasis-animation-bor1:before {
    left: -6px;
    border-top: 6px solid var(--color-brand);
    border-radius: 9px 0 0 0;
  }
}

.general-yellow-emphasis-animation-bor1:after {
  right: 0;
  bottom: 0;
  border-bottom: 9px solid var(--color-brand);
  border-radius: 0 0 10px 0;
}

@media (max-width: 768px) {
  .general-yellow-emphasis-animation-bor1:after {
    right: -6px;
    border-bottom: 6px solid var(--color-brand);
    border-radius: 0 0 9px 0;
  }
}

.general-yellow-emphasis-animation-bor2:before, .general-yellow-emphasis-animation-bor2:after {
  position: absolute;
  height: 0;
  content: "";
  transition-property: width, height;
  transition-duration: .5s;
  transition-timing-function: ease-in-out;
}

.general-yellow-emphasis-animation-bor2:before {
  top: 0;
  left: 0;
  border-left: 9px solid var(--color-brand);
  border-radius: 10px 0 0 0;
}

@media (max-width: 768px) {
  .general-yellow-emphasis-animation-bor2:before {
    left: -6px;
    border-left: 6px solid var(--color-brand);
    border-radius: 9px 0 0 0;
  }
}

.general-yellow-emphasis-animation-bor2:after {
  right: 0;
  bottom: 0;
  border-right: 9px solid var(--color-brand);
  border-radius: 0 0 10px 0;
}

@media (max-width: 768px) {
  .general-yellow-emphasis-animation-bor2:after {
    right: -6px;
    border-right: 6px solid var(--color-brand);
    border-radius: 0 0 9px 0;
  }
}

.general-yellow-emphasis.active {
  opacity: 1;
  transform: translate(0px, 0px);
}

.general-yellow-emphasis.active .general-yellow-read-animation-bor1:before, .general-yellow-emphasis.active .general-yellow-read-animation-bor1:after {
  width: 340px;
  transition-delay: .2s;
}

@media (max-width: 768px) {
  .general-yellow-emphasis.active .general-yellow-read-animation-bor1:before, .general-yellow-emphasis.active .general-yellow-read-animation-bor1:after {
    width: 200px;
  }
}

.general-yellow-emphasis.active .general-yellow-read-animation-bor2:before, .general-yellow-emphasis.active .general-yellow-read-animation-bor2:after {
  height: 90px;
  transition-delay: .4s;
}

.general-yellow-2col-title {
  position: relative;
  margin-bottom: 21px;
  padding-left: 12px;
  font-weight: 500;
  font-size: 2.3rem;
  line-height: 3.5rem;
}

@media (max-width: 768px) {
  .general-yellow-2col-title {
    font-size: 2.1rem;
    line-height: 3.3rem;
  }
}

.general-yellow-2col-title:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: var(--color-secondary);
  content: "";
}

.general-yellow-2col-vertical-title {
  position: relative;
  margin-bottom: 21px;
  padding-top: 16px;
  font-size: 2.3rem;
  line-height: 3.5rem;
}

@media (max-width: 768px) {
  .general-yellow-2col-vertical-title {
    font-size: 2.1rem;
    line-height: 3.3rem;
  }
}

.general-yellow-2col-vertical-title:before {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 3px;
  background-color: var(--color-secondary);
  content: "";
}

.general-yellow-2col-vertical-title + .general-col-txt {
  padding: 0;
}

.index .l-footer {
  margin-top: 0;
}

.business {
  padding-top: 40px;
  padding-bottom: 120px;
}

.business-block {
  display: flex;
}

.business-txt {
  margin-left: 60px;
}

.business-title {
  color: var(--color-brand);
  font-weight: 700;
  font-size: 3.6rem;
}

.business-title-sub {
  margin-bottom: 20px;
  color: var(--color-brand);
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 3.5rem;
}

@media (max-width: 768px) {
  .business-title-sub {
    font-size: 2.1rem;
    line-height: 3.3rem;
  }
}

.business-title-sub::before {
  display: inline-block;
  width: 30px;
  height: 3px;
  margin-right: 18px;
  background-color: var(--color-secondary);
  vertical-align: middle;
  content: "";
}

.business-read {
  margin-bottom: 38px;
}

.business-btn {
  display: block;
  position: relative;
  width: 366px;
  margin-top: 41px;
  padding-top: 19px;
  padding-bottom: 21px;
  padding-left: 24px;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-sizing: border-box;
  box-shadow: -7px -7px 10px 0px rgba(0, 0, 0, 0.15);
  background-color: var(--color-brand);
  color: #fff;
  font-weight: 500;
  font-size: 2.3rem;
  line-height: 3.5rem;
}

@media (max-width: 768px) {
  .business-btn {
    font-size: 2.1rem;
    line-height: 3.3rem;
  }
}

.business-btn::before {
  display: block;
  position: absolute;
  top: 43%;
  right: -30px;
  width: 48px;
  height: 4px;
  background-color: var(--color-secondary);
  content: "";
}

.business-btn::after {
  display: block;
  position: absolute;
  top: 51%;
  right: -20px;
  width: 48px;
  height: 4px;
  background-color: var(--color-secondary);
  content: "";
}

.story {
  counter-reset: number 0;
}

.story ul li {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 104px;
}

.story ul li:nth-child(1) {
  column-gap: 124px;
}

.story ul li:nth-child(2) {
  column-gap: 40px;
}

.story ul li:nth-child(3) {
  column-gap: 16px;
}

.story ul li:nth-child(odd) {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .story ul li,
  .story ul li:nth-child(odd) {
    flex-direction: column;
  }
  .story ul li {
    row-gap: 32px;
    margin-bottom: 88px;
  }
  .story ul li:last-child {
    margin-bottom: 77px;
  }
}

.story-text {
  padding-top: 40px;
}

.story ul li:nth-child(even) .story-text {
  margin-left: 40px;
}

@media (max-width: 1320px) {
  .story-text {
    width: 70%;
  }
  .story-text .disp-pc {
    display: none;
  }  
}

@media (max-width: 768px) {
  .story-text {
    width: 100%;
  }
  
  .story ul li:nth-child(even) .story-text {
    margin-left: 0;
  }
}

.story-text h2 {
  position: relative;
  margin-bottom: 40px;
  color: var(--color-brand);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.6;
}

.story-text h2::before {
  position: absolute;
  top: -56px;
  left: -42px;
  color: #222;
  font-size: 49px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  counter-increment: number 1;
  content: counter(number);
}

.story-text h2::after {
  position: absolute;
  top: -20px;
  left: 0;
  width: 64px;
  height: 5px;
  background-color: var(--color-secondary);
  content: "";
}

@media (max-width: 768px) {
  .story-text h2 {
    margin-bottom: 32px;
    font-size: 2.6rem;
  }

  .story-text h2::before {
    top: -71px;
    left: 0;
  }

  .story-text h2::after {
    top: -20px;
    left: 42px;
    width: 48px;
    height: 4px;
  }
}

.story-text p {
  margin-bottom: 50px;
}

.story-img {
  width: 632px;
}

.story-img img {
  width: 100%;
}

@media (max-width: 768px) {
  .story-img {
    width: auto;
  }
  .story-img img {
    display: block;
    margin: 0 auto;
    min-height: 270px;
    max-height: 35.5vh;
  }
}

.proprietorship {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #e9e9e9;
}

@media (max-width: 768px) {
  .proprietorship {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.proprietorship::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(rgba(204, 204, 204, 0.8), rgba(204, 204, 204, 0));
  content: "";
}

.proprietorship::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(rgba(204, 204, 204, 0), rgba(204, 204, 204, 0.8));
  content: "";
}

.proprietorship-block {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .proprietorship-block {
    flex-direction: column;
  }
}

.proprietorship-txt {
  width: 50%;
  padding-right: 40px;
  padding-left: 6.5%;
}

@media (max-width: 768px) {
  .proprietorship-txt {
    width: 100%;
    margin-bottom: 24px;
    padding: 0;
  }
}

.proprietorship-title {
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .proprietorship-title {
    font-size: 2.6rem;
  }
}

.proprietorship-title span {
  background: linear-gradient(transparent 50%, var(--color-secondary) 0%);
  padding-bottom: 5px;
}

.proprietorship-lead {
  margin-bottom: 52px;
}

@media (max-width: 768px) {
  .proprietorship-lead {
    margin-bottom: 24px;
  }
}

.proprietorship-btn,
.proprietorship-btn:link,
.proprietorship-btn:visited {
  display: block;
  width: 240px;
  padding: 13px 0;
  border: 1px solid #222;
  box-sizing: border-box;
  color: #222;
  font-size: 2.0rem;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  transition-duration: .3s;
}

.proprietorship-btn:hover {
  background-color: #ccc;
}

@media (max-width: 768px) {
  .proprietorship-btn,
  .proprietorship-btn:link,
  .proprietorship-btn:visited {
    margin: 0 auto;
    font-size: 1.8rem;
  }
}

.proprietorship-img {
  flex-shrink: 0;
  width: 50%;
}

.proprietorship-img img {
  width: 100%;
}

@media (max-width: 768px) {
  .proprietorship-img {
    width: 100%;
    margin-left: 0;
  }
}

.release {
  padding-bottom: 40px;
}

@media (max-width: 768px) {
  .release {
    padding-bottom: 72px;
  }
}

.news {
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .news {
    padding-bottom: 48px;
  }
}

.news-block {
  display: flex;
  justify-content: center;
  gap: 40px;
}

@media (max-width: 768px) {
  .news-block {
    flex-direction: column;
  }
}

.news-title {
  margin-bottom: 15px;
  color: var(--color-brand);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .news-title {
    margin-bottom: 8px;
    font-size: 2.6rem;
  }
}

.news-pickup {
  width: 660px;
}

@media (max-width: 768px) {
  .news-pickup {
    width: 100%;
  }
}

.news-pickup-unordered {
  margin-top: 28px;
}

.news-pickup-list {
  display: flex;
  list-style: none;
  gap: 14px 24px;
  margin-bottom: 34px;
}

.news-pickup-list:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .news-pickup-list {
    flex-direction: column;
    margin-bottom: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid #707070;
  }
}

.news-pickup-img {
  flex-shrink: 0;
  width: 165px;
}

.news-pickup-img img {
  width: 100%;
}

@media (max-width: 768px) {
  .news-pickup-img {
    width: 100%;
  }
}

.news-pickup-dt {
  margin-bottom: 14px;
  color: var(--color-brand);
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .news-pickup-dt {
    margin-bottom: 16px;
    font-size: 1.3rem;
    line-height: 2.1rem;
  }
}

.news-pickup-tag {
  display: inline-block;
  width: 124px;
  margin-left: 24px;
  padding: 4px 0;
  border: 1px solid #707070;
  box-sizing: border-box;
  color: #222;
  line-height: 1;
  text-align: center;
}

@media (max-width: 768px) {
  .news-pickup-tag {
    width: 100px;
    margin-left: 6px;
  }
}

.news-pickup-dd {
  margin-left: 0;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .news-pickup-dd {
    font-size: 2.1rem;
  }
}

.news-pickup-dd a {
  color: #222;
  text-decoration: none;
}

.news-pickup-dd a:hover {
  text-decoration: underline;
}

.news-notice {
  width: 580px;
}

@media (max-width: 1320px) {
  .news-notice {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .news-notice {
    width: 100%;
    margin-left: 0;
  }
}

.news-notice-unordered {
  margin-bottom: 0;
  padding-left: 0;
}

.news-notice-list {
  display: flex;
  list-style: none;
  padding-top: 13px;
  padding-bottom: 13px;
  border-bottom: 1px solid #707070;
}

.news-notice-dt {
  margin-bottom: 10px;
  color: var(--color-brand);
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .news-notice-dt {
  margin-bottom: 6px;
  font-size: 1.3rem;
  }
}

.news-notice-tag {
  display: inline-block;
  width: 124px;
  margin-left: 24px;
  padding: 4px 0;
  border: 1px solid #707070;
  box-sizing: border-box;
  color: #222;
  line-height: 1;
  text-align: center;
}

@media (max-width: 768px) {
  .news-notice-tag {
    width: 100px;
    margin-left: 6px;
  }
}

.news-notice-dd {
  margin-left: 0;
}

.news-notice-dd a {
  color: #222;
  text-decoration: none;
}

.news-notice-dd a:hover {
  text-decoration: underline;
}

.news-more {
  margin-top: 8px;
  text-align: right;
}

.news-more a,
.news-more a:active,
.news-more a:visited {
  text-decoration: none;
}

.news-more a::before,
.news-more a:active::before,
.news-more a:visited::before {
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 8px;
  background-image: url(/images/ico_arrow_left_blue.svg);
  background-size: 1.8rem;
  background-repeat: no-repeat;
  vertical-align: text-top;
  content: "";
}

.news-more a:hover,
.news-more a:active,
.news-more a:active:hover,
.news-more a:active:active,
.news-more a:visited:hover,
.news-more a:visited:active {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .news-more a {
    font-size: 1.3rem;
  }
  
  .news-more a::before,
  .news-more a:active::before,
  .news-more a:visited::before {
    width: 1.3rem;
    height: 1.3rem;
    margin-right: 4px;
    background-size: 1.3rem;
  }
}

.feature {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .feature {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.feature-unordered {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding-left: calc((100% - 846px) / 2);
}

@media (max-width: 768px) {
  .feature-unordered {
    flex-direction: column;
    row-gap: 10px;
  }
}

.feature-list {
  list-style: none;
  position: relative;
  width: calc((100% - 22px) / 2);
  max-width: 412px;
  border: 1px solid #707070;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .feature-list {
    width: 100%;
    max-width: 100%;
  }
}

.feature-list:nth-child(2n),
.feature-list:last-child {
  margin-right: 0;
}

.feature-img {
  width: 100%;
  transition-duration: .3s;
}

.feature-list:hover .feature-img {
  transform: scale(1.05, 1.05);
}

.feature-txt {
  display: block;
  position: absolute;
  bottom: 32px;
  left: -1px;
  padding: 6px 32px;
  background-color: var(--color-brand);
  color: #fff;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.5;
  transition-duration: .3s;
}

.feature-list:hover .feature-txt {
  background-color: #fff;
  color: var(--color-brand);
}

@media (max-width: 768px) {
  .feature-txt {
    bottom: 22px;
    padding: 8px 20px;
    font-size: 2.1rem;
  }
}

.banner {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #e9e9e9;
}

.banner::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(rgba(204, 204, 204, 0.8), rgba(204, 204, 204, 0));
  content: "";
}

.banner::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(rgba(204, 204, 204, 0), rgba(204, 204, 204, 0.8));
  content: "";
}

@media (max-width: 768px) {
  .banner {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.banner-unordered {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

@media (max-width: 768px) {
  .banner-unordered {
    flex-direction: column;
  }
}

.banner-list {
  list-style: none;
  width: calc((100% - 48px) / 3);
  max-width: 304px;
  border: 1px solid #707070;
  box-sizing: border-box;
  background-color: #fff;
}

@media (max-width: 768px) {
  .banner-list {
    width: 100%;
    max-width: 100%;
  }
}

.banner-img {
  width: 114px;
  vertical-align: middle;
}

.banner-link,
.banner-link:link,
.banner-link:visited {
  display: flex;
  align-items: center;
  color: #222;
  text-decoration: none;
  transition-duration: .3s;
}
.banner-link:hover {
  opacity: 0.85;
}

.banner-txt {
  margin-left: 12px;
}

.l-footer {
  margin-top: 150px;
  padding-top: 80px;
  background-position: center top;
  background-size: 1920px;
  background-repeat: no-repeat;
  background-color: var(--color-brand);
  font-size: 1.5rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .l-footer {
    margin-top: 100px;
    padding-top: 40px;
    background: var(--color-brand);
    background-repeat: repeat-y;
    font-size: 1.3rem;
  }
}

.l-footer-inner {
  display: flex;
  width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1320px) {
  .l-footer-inner {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .l-footer-inner {
    display: block;
    text-align: center;
  }
}

.l-footer-inner .adress {
  min-width: 275px;
  margin-right: 42px;
  color: #fff;
}

.l-footer-inner .adress-txt {
  margin-bottom: 11px;
}

@media (max-width: 768px) {
  .l-footer-inner .adress {
    min-width: initial;
    margin-right: 0;
  }
  
  .l-footer-inner .adress-txt {
    margin-bottom: 0;
  }
}

.l-footer-inner .adress-logo {
  margin-bottom: 20px;
}

.l-footer-inner .adress-logo img {
  width: 180px;
}

@media (max-width: 768px) {
  .l-footer-inner .adress-logo img {
    width: 160px;
  }
}

.l-footer-inner .footer-info {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .l-footer-inner .footer-info {
    display: none;
  }
}

.l-footer-inner .footer-info-list {
  margin-bottom: 6px;
  font-size: 1.3rem;
}

.l-footer-inner .footer-info-list a,
.l-footer-inner .footer-info-list a:link,
.l-footer-inner .footer-info-list a:visited {
  color: #fff;
  text-decoration: none;
}

.l-footer-inner .footer-info-list a:hover, .l-footer-inner .footer-info-list a:active,
.l-footer-inner .footer-info-list a:link:hover,
.l-footer-inner .footer-info-list a:link:active,
.l-footer-inner .footer-info-list a:visited:hover,
.l-footer-inner .footer-info-list a:visited:active {
  text-decoration: underline;
}

.l-footer-inner .footer-banner {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .l-footer-inner .footer-banner {
    display: none;
  }
}

.l-footer-inner .footer-banner-list {
  margin-bottom: 16px;
}

.l-footer-inner .footer-banner-list img {
  max-width: 168px;
}

.l-footer-inner .footer-link {
  min-width: 140px;
  margin-top: 84px;
}

@media (max-width: 768px) {
  .l-footer-inner .footer-link {
    display: none;
  }
}

.l-footer-inner .footer-link-unordered {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.l-footer-inner .footer-link-news-list {
  margin-bottom: 4px;
}

.l-footer-inner .footer-link-news-list a,
.l-footer-inner .footer-link-news-list a:link,
.l-footer-inner .footer-link-news-list a:visited {
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
}

.l-footer-inner .footer-link-news-list a:hover, .l-footer-inner .footer-link-news-list a:active,
.l-footer-inner .footer-link-news-list a:link:hover,
.l-footer-inner .footer-link-news-list a:link:active,
.l-footer-inner .footer-link-news-list a:visited:hover,
.l-footer-inner .footer-link-news-list a:visited:active {
  text-decoration: underline;
}

.l-footer-inner .footer-link-list {
  width: calc(33% - 24px);
  margin-right: 24px;
  margin-bottom: 3px;
}

@media (max-width: 1100px) {
  .l-footer-inner .footer-link-list {
    width: calc(50% - 24px);
  }
}

.l-footer-inner .footer-link-list.top {
  width: 100%;
  margin-bottom: 11px;
}

.l-footer-inner .footer-link-list.top a,
.l-footer-inner .footer-link-list.top a:link,
.l-footer-inner .footer-link-list.top a:visited {
  font-size: 1.5rem;
  font-weight: 500;
}

.l-footer-inner .footer-link-list a,
.l-footer-inner .footer-link-list a:link,
.l-footer-inner .footer-link-list a:visited {
  color: #fff;
  font-size: 1.3rem;
  line-height: 2.1rem;
  text-decoration: none;
}

.l-footer-inner .footer-link-list a:hover, .l-footer-inner .footer-link-list a:active,
.l-footer-inner .footer-link-list a:link:hover,
.l-footer-inner .footer-link-list a:link:active,
.l-footer-inner .footer-link-list a:visited:hover,
.l-footer-inner .footer-link-list a:visited:active {
  text-decoration: underline;
}

.l-footer .copy {
  padding: 80px 0 84px 0;
  color: #fff;
  text-align: center;
}

.l-footer .copy small {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .l-footer .copy {
    padding-top: 32px;
    padding-bottom: 40px;
  }

  .l-footer .copy small {
    font-size: 1.3rem;
  }
}

.product-data {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .product-data {
    margin-bottom: 64px;
  }
}

.product-data-block {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .product-data-block {
    display: block;
    margin-bottom: 32px;
  }
}

.product-data-block:last-child {
  margin-bottom: 0;
}

.product-data-img {
  width: 360px;
  margin-right: 40px;
}

@media (max-width: 768px) {
  .product-data-img {
    width: 100%;
    margin-bottom: 32px;
    text-align: center;
  }
  .product-data-img img {
    max-width: 100%;
  }
}

.product-data-title {
  margin-bottom: 16px;
  color: var(--color-brand);
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 4.5rem;
}

@media (max-width: 768px) {
  .product-data-title {
    margin-bottom: 23px;
    font-size: 2.6rem;
    line-height: 4.2rem;
  }
}

.product-recommend {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .product-recommend {
    margin-bottom: 64px;
  }
}

.product-recommend-indicator {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -20px;
  padding-left: 0;
}

@media (max-width: 768px) {
  .product-recommend-indicator {
    display: block;
    margin-bottom: 0;
  }
}

.product-recommend-item {
  list-style: none;
  width: calc(50% - 20px);
  margin-bottom: 40px;
  padding: 8px 0 16px 66px;
  border-bottom: 2px solid var(--color-brand);
  box-sizing: border-box;
  background-image: url(/images/ico_recommend.png);
  background-repeat: no-repeat;
  font-weight: 500;
  font-size: 2.3rem;
  line-height: 3.5rem;
}

@media (max-width: 768px) {
  .product-recommend-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
    background-position: left 16px;
    font-size: 2.1rem;
    line-height: 3.3rem;
  }
  .product-recommend-item:last-child {
    margin-bottom: 0;
  }
}

.product-tag {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .product-tag {
    margin-bottom: 64px;
  }
}

.product-tag-indicator {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: -24px;
  padding-left: 0;
}

@media (max-width: 768px) {
  .product-tag-indicator {
    margin-bottom: -16px;
  }
}

.product-tag-item {
  list-style: none;
  margin-right: 24px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .product-tag-item {
    margin-right: 16px;
    margin-bottom: 16px;
  }
}

.product-tag-item:last-child {
  margin-right: 0;
}

.product-tag-link {
  display: block;
  padding: 6px 20px 9px 20px;
  border: 1px solid var(--color-brand);
  border-radius: 0 5px 0 5px;
  color: #222;
  text-decoration: none;
  cursor: pointer;
  transition-property: background-color, border-radius, color;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
}

.product-tag-link:hover {
  border-radius: 5px 0 5px 0;
  background-color: var(--color-brand);
  color: #fff;
}

.product-service {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .product-service {
    margin-bottom: 64px;
  }
}

.product-service-indicator {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: -40px;
  padding-left: 0;
}

@media (max-width: 768px) {
  .product-service-indicator {
    margin-bottom: 0;
  }
}

.product-service-item {
  display: flex;
  align-items: center;
  list-style: none;
  width: calc(33.3% - 27px);
  margin-right: 40px;
  margin-bottom: 40px;
}

@media (max-width: 960px) {
  .product-service-item {
    width: 50%;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .product-service-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 24px;
  }
  .product-service-item:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }
}

.product-service-item:nth-child(3n) {
  margin-right: 0;
}

.product-service-img {
  margin-right: 16px;
}

.product-service-note {
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 2.0rem;
  line-height: 3rem;
}

@media (max-width: 768px) {
  .product-service-note {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}

.product-service-btn, .product-service-btn:link, .product-service-btn:visited {
  display: block;
  position: relative;
  width: 113px;
  height: 41px;
  padding: 9px 0px 9px 15px;
  box-sizing: border-box;
  background-color: var(--color-brand);
  color: #fff;
  font-size: 1.5rem;
  line-height: 2.3rem;
  text-decoration: none;
  transition-property: background-color;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
}

@media (max-width: 768px) {
  .product-service-btn, .product-service-btn:link, .product-service-btn:visited {
    font-size: 1.3rem;
    line-height: 2.1rem;
  }
}

.product-service-btn::after, .product-service-btn:link::after, .product-service-btn:visited::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url(/images/ico_arrow_right_white.svg);
  content: "";
  transition-property: right;
  transition-duration: .3s;
  transition-timing-function: ease-in-out;
}

.product-service-btn:hover, .product-service-btn:active, .product-service-btn:link:hover, .product-service-btn:link:active, .product-service-btn:visited:hover, .product-service-btn:visited:active {
  background-color: var(--color-hover);
}

.product-service-btn:hover::after, .product-service-btn:active::after, .product-service-btn:link:hover::after, .product-service-btn:link:active::after, .product-service-btn:visited:hover::after, .product-service-btn:visited:active::after {
  right: 11px;
}

.product-pagelink {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .product-pagelink {
    margin-bottom: 64px;
  }
}

.product-pagelink .inner-w960 {
  padding-top: 80px;
  border-top: 1px solid #707070;
}

@media (max-width: 768px) {
  .product-pagelink .inner-w960 {
    padding-top: 64px;
  }
}

.product-lineup {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .product-lineup {
    margin-bottom: 64px;
  }
}

.product-lineup-img {
  width: 240px;
  margin: 0 auto 40px auto;
  border: 1px solid #707070;
  text-align: center;
}

@media (max-width: 768px) {
  .product-lineup-img {
    margin-bottom: 32px;
  }
}

.product-lineup-feature {
  display: flex;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .product-lineup-feature {
    display: block;
    margin-bottom: 32px;
  }
}

.product-lineup-feature-img {
  margin-right: 32px;
}

@media (max-width: 768px) {
  .product-lineup-feature-img {
    margin-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .product-lineup-feature-txt {
    margin-bottom: 32px;
  }
}

.product-lineup-table {
  margin-bottom: 45px;
}

@media (max-width: 768px) {
  .product-lineup-table {
    margin-bottom: 32px;
  }
}

.product-modelcase {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .product-modelcase {
    margin-bottom: 64px;
  }
}

.product-studycase {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .product-studycase {
    margin-bottom: 64px;
  }
}

.category-series {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .category-series {
    margin-bottom: 64px;
  }
}

.category-series-indicator {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin: -20px -20px 0 -20px;
  padding-left: 0;
}

@media (max-width: 768px) {
  .category-series-indicator {
    display: block;
    margin: -12px -12px 0 -12px;
  }
}

.category-series-item {
  list-style: none;
  width: 33.3%;
}

@media (max-width: 768px) {
  .category-series-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 19px;
  }
  .category-series-item:last-child {
    margin-bottom: 0;
  }
}

.category-series-link, .category-series-link:link, .category-series-link:visited {
  display: block;
  height: 100%;
  padding: 20px;
  border: 1px solid #fff;
  box-sizing: border-box;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0);
  color: #222;
  text-decoration: none;
  transition-property: border, box-shadow;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
}

@media (max-width: 768px) {
  .category-series-link, .category-series-link:link, .category-series-link:visited {
    padding: 12px;
  }
}

.category-series-link:hover, .category-series-link:active, .category-series-link:link:hover, .category-series-link:link:active, .category-series-link:visited:hover, .category-series-link:visited:active {
  border: 1px solid #707070;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.3);
}

.category-series-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 266px;
  margin-bottom: 23px;
  border: 1px solid var(--color-brand);
  border-radius: 0 5px 0 5px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .category-series-img {
    margin-bottom: 21px;
  }
}

.category-series-img img {
  max-width: 80%;
  max-height: 80%;
}

.category-series-title {
  margin-bottom: 20px;
  color: var(--color-brand);
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 3.5rem;
}

@media (max-width: 768px) {
  .category-series-title {
    font-size: 2.1rem;
    line-height: 3.3rem;
  }
}

.category-other {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .category-other {
    margin-bottom: 64px;
  }
}

.search-form {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .search-form {
    margin-bottom: 64px;
  }
}

.search-form-body {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.search-form-txtbox {
  width: 500px;
  padding: 8px 13px 8px 13px;
  border: 1px solid #707070;
  color: #222;
}

@media (max-width: 768px) {
  .search-form-txtbox {
    width: 70%;
  }
}

.search-form-btn {
  padding: 8px 16px 8px 16px;
  border: 0;
  background-color: var(--color-brand);
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .search-form-btn {
    width: 30%;
  }
}

.search-result {
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  .search-result {
    margin-bottom: 70px;
  }
}

.search-result-indicator {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin: -20px -20px 0 -20px;
  padding-left: 0;
}

@media (max-width: 768px) {
  .search-result-indicator {
    display: block;
    margin: -12px -12px 0 -12px;
  }
}

.search-result-item {
  list-style: none;
  width: 25%;
}

@media (max-width: 768px) {
  .search-result-item {
    width: 100%;
    margin-bottom: 19px;
  }
  .search-result-item:last-child {
    margin-bottom: 0;
  }
}

.search-result-link, .search-result-link:link, .search-result-link:visited {
  display: block;
  height: 100%;
  padding: 20px;
  border: 1px solid #fff;
  box-sizing: border-box;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0);
  color: #222;
  text-decoration: none;
  transition-property: border, box-shadow;
  transition-duration: .1s;
  transition-timing-function: ease-in-out;
}

@media (max-width: 768px) {
  .search-result-link, .search-result-link:link, .search-result-link:visited {
    padding: 12px;
  }
}

.search-result-link:hover, .search-result-link:active, .search-result-link:link:hover, .search-result-link:link:active, .search-result-link:visited:hover, .search-result-link:visited:active {
  border: 1px solid #707070;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.3);
}

.search-result-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 193px;
  margin-bottom: 23px;
  border: 1px solid var(--color-brand);
  border-radius: 0 5px 0 5px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .search-result-img {
    margin-bottom: 21px;
  }
}

.search-result-img img {
  max-width: 80%;
  max-height: 80%;
}

.search-result-title {
  color: var(--color-brand);
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 3.5rem;
}

@media (max-width: 768px) {
  .search-result-title {
    font-size: 2.1rem;
    line-height: 3.3rem;
  }
}

.search-error-body {
  margin-top: 40px;
  padding: 32px 60px 37px 60px;
  border: 1px solid var(--color-brand);
  background: var(--color-background);
}

@media (max-width: 768px) {
  .search-error-body {
    margin-top: 32px;
    padding: 13px 17px 13px 17px;
  }
}

.search-error-flex {
  display: flex;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .search-error-flex {
    display: block;
  }
}

.search-error-item {
  margin-right: 16px;
}

@media (max-width: 768px) {
  .search-error-item {
    margin-right: 0;
    margin-bottom: 11px;
    text-align: center;
  }
  .search-error-item p {
    text-align: left;
  }
}

.search-error-item:last-child {
  margin-right: 0;
}

.search-error-txtbox {
  width: 364px;
  padding: 8px 13px 8px 13px;
  border: 1px solid #707070;
  box-sizing: border-box;
  color: #222;
}

@media (max-width: 768px) {
  .search-error-txtbox {
    width: 100%;
    text-align: left;
  }
}

.search-error-btn {
  padding: 9px 16px 9px 16px;
  border: 0;
  background-color: var(--color-brand);
  color: #fff;
  cursor: pointer;
}

.search-error-pagelink {
  margin-top: 37px;
}

.search-error-pagelink-title {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 2.3rem;
  line-height: 3.5rem;
  text-align: center;
}

@media (max-width: 768px) {
  .search-error-pagelink-title {
    font-size: 2.1rem;
    line-height: 3.3rem;
  }
}

.search-error-pagelink-indicator {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 80px;
  padding-left: 0;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .search-error-pagelink-indicator {
    margin-bottom: 64px;
  }
}

.search-error-pagelink-item {
  list-style: none;
  width: calc(25% - 18px);
  margin-right: 24px;
  margin-bottom: 24px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .search-error-pagelink-item {
    width: calc(50% - 16px);
    margin-right: 16px;
    margin-bottom: 16px;
  }
}

.search-error-pagelink-item:nth-child(4n) {
  margin-right: 0;
}

.search-error-pagelink-link, .search-error-pagelink-link:link, .search-error-pagelink-link:visited {
  display: block;
  position: relative;
  padding: 9px 74px 9px 18px;
  background-color: var(--color-brand);
  color: #fff;
  text-decoration: none;
  transition-property: background-color;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
}

@media (max-width: 980px) {
  .search-error-pagelink-link, .search-error-pagelink-link:link, .search-error-pagelink-link:visited {
    padding: 9px 52px 9px 18px;
  }
}

.search-error-pagelink-link::after, .search-error-pagelink-link:link::after, .search-error-pagelink-link:visited::after {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url(/images/ico_arrow_down.png);
  background-repeat: no-repeat;
  content: "";
  transition-property: top;
  transition-duration: .3s;
  transition-timing-function: ease-in-out;
}

.search-error-pagelink-link:hover, .search-error-pagelink-link:active, .search-error-pagelink-link:link:hover, .search-error-pagelink-link:link:active, .search-error-pagelink-link:visited:hover, .search-error-pagelink-link:visited:active {
  background-color: var(--color-hover);
}

.search-error-pagelink-link:hover::after, .search-error-pagelink-link:active::after, .search-error-pagelink-link:link:hover::after, .search-error-pagelink-link:link:active::after, .search-error-pagelink-link:visited:hover::after, .search-error-pagelink-link:visited:active::after {
  top: 58%;
}

.search-error-qa-list {
  position: relative;
  margin-bottom: 24px;
  padding-left: 0;
}

@media (max-width: 768px) {
  .search-error-qa-list {
    margin-bottom: 12px;
  }
}

.search-error-qa-aco-title {
  color: var(--color-brand);
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 4.5rem;
}

@media (max-width: 768px) {
  .search-error-qa-aco-title {
    margin-bottom: 12px;
    font-size: 2.6rem;
    line-height: 4.2rem;
  }
}

.search-error-qa-aco-content {
  padding-right: 60px;
  padding-left: 60px;
}

@media (max-width: 768px) {
  .search-error-qa-aco-content {
    padding-right: 12px;
    padding-left: 12px;
  }
}

@media (max-width: 768px) {
  .search-error-qa-aco-content.js-active {
    margin-top: 11px;
  }
}

.search-document-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .search-document-flex {
    display: block;
    margin-bottom: 32px;
  }
}

.search-document-item {
  margin-right: 16px;
}

@media (max-width: 768px) {
  .search-document-item {
    margin-right: 0;
    margin-bottom: 11px;
  }
}

.search-document-item:last-child {
  margin-right: 0;
}

.search-document-item p {
  margin-bottom: 0;
}

.search-document-txtbox {
  width: 364px;
  padding: 8px 13px 8px 13px;
  border: 1px solid #707070;
  box-sizing: border-box;
  color: #222;
}

@media (max-width: 768px) {
  .search-document-txtbox {
    width: 80%;
    text-align: left;
  }
}

.search-document-btn {
  padding: 9px 16px 9px 16px;
  border: 0;
  background-color: var(--color-brand);
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .search-document-btn {
    width: 20%;
  }
}

.search-document-dl {
  display: flex;
  flex-wrap: wrap;
}

.search-document-dt {
  width: 100%;
  margin-bottom: 26px;
  padding-top: 24px;
  border-top: 1px solid #707070;
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 3.5rem;
}

@media (max-width: 768px) {
  .search-document-dt {
    font-size: 2.1rem;
    line-height: 3.3rem;
  }
}

.search-document-dt:first-child {
  padding-top: 0;
  border: 0;
}

.search-document-dd {
  margin-left: 0;
  padding-bottom: 24px;
}

.search-document-dd.year {
  width: calc(28% - 16px);
  margin-right: 16px;
}

@media (max-width: 768px) {
  .search-document-dd.year {
    width: 50%;
    margin-right: 0;
  }
}

.search-document-dd.button {
  width: calc(22% - 32px);
  margin-right: 32px;
}

@media (max-width: 768px) {
  .search-document-dd.button {
    width: 50%;
    margin-right: 0;
  }
}

.search-document-dd.text {
  width: 50%;
}

@media (max-width: 768px) {
  .search-document-dd.text {
    width: 100%;
  }
}

.search-document-dd-btn, .search-document-dd-btn:link, .search-document-dd-btn:visited {
  display: block;
  position: relative;
  width: 100%;
  padding: 9px 32px 9px 15px;
  box-sizing: border-box;
  background-color: var(--color-brand);
  color: #fff;
  font-size: 1.5rem;
  line-height: 2.3rem;
  text-decoration: none;
  transition-property: background-color;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
}

@media (max-width: 768px) {
  .search-document-dd-btn, .search-document-dd-btn:link, .search-document-dd-btn:visited {
    font-size: 1.3rem;
    line-height: 2.1rem;
  }
}

.search-document-dd-btn:after, .search-document-dd-btn:link:after, .search-document-dd-btn:visited:after {
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url(/images/ico_arrow_right_white.svg);
  content: "";
  transition-property: right;
  transition-duration: .3s;
  transition-timing-function: ease-in-out;
}

.search-document-dd-btn:hover, .search-document-dd-btn:active, .search-document-dd-btn:link:hover, .search-document-dd-btn:link:active, .search-document-dd-btn:visited:hover, .search-document-dd-btn:visited:active {
  background-color: var(--color-hover);
}

.search-document-dd-btn:hover::after, .search-document-dd-btn:active::after, .search-document-dd-btn:link:hover::after, .search-document-dd-btn:link:active::after, .search-document-dd-btn:visited:hover::after, .search-document-dd-btn:visited:active::after {
  right: 11px;
}

.search-document-new {
  position: relative;
  top: -.3rem;
  margin-left: 12px;
  padding: 6px 9px 6px 9px;
  border-radius: 2px;
  background-color: var(--color-secondary);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.3rem;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .search-document-new {
    font-size: 1.3rem;
    line-height: 2.1rem;
  }
}

.search-document-tag {
  padding: 7px 9px 6px 9px;
  border: 1px solid var(--color-brand);
  border-radius: 2px;
  background-color: var(--color-background);
}

.search-document-bg {
  padding: 13px 12px 13px 12px;
  background-color: #e9e9e9;
}

.notice-year {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .notice-year {
    margin-bottom: 32px;
  }
}

.notice-year::after {
  width: 100%;
  content: "";
}

.notice-year-list {
  margin-right: 24px;
}

@media (max-width: 768px) {
  .notice-year-list {
    margin: 8px;
  }
}

.notice-year-list:nth-child(n+6) {
  order: 1;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .notice-year-list:nth-child(n+6) {
    order: 0;
    margin: 8px;
  }
}

.notice-year-list:nth-of-type(5n), .notice-year-list:last-child {
  margin-right: 0;
}

@media (max-width: 768px) {
  .notice-year-list:nth-of-type(5n), .notice-year-list:last-child {
    margin: 8px;
  }
}

.notice-year-list a,
.notice-year-list a:link,
.notice-year-list a:visited {
  display: block;
  padding: 6px 20px 9px 20px;
  border: 1px solid var(--color-brand);
  border-radius: 0 5px 0 5px;
  color: #222;
  font-weight: 500;
  font-size: 2.3rem;
  line-height: 3.5rem;
  text-decoration: none;
  transition-property: background-color, color, border-radius;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
}

@media (max-width: 768px) {
  .notice-year-list a,
  .notice-year-list a:link,
  .notice-year-list a:visited {
    padding: 4px 10px 4px 10px;
    font-size: 2.1rem;
    line-height: 3.3rem;
  }
}

.notice-year-list a:hover, .notice-year-list a:active,
.notice-year-list a:link:hover,
.notice-year-list a:link:active,
.notice-year-list a:visited:hover,
.notice-year-list a:visited:active {
  border-radius: 5px 0 5px 0;
  background-color: var(--color-brand);
  color: #fff;
}

.notice-indicator-list {
  padding-top: 13px;
  padding-bottom: 13px;
  border-bottom: 1px solid #707070;
}

@media (max-width: 768px) {
  .notice-indicator-list {
    padding-top: 8px;
    padding-bottom: 12px;
  }
}

.notice-indicator-dl {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .notice-indicator-dl {
    display: block;
  }
}

.notice-indicator-dl.w-auto dt,
.notice-indicator-dl.w-auto dd {
  width: auto;
  min-width: 85px;
}

.notice-indicator-dt {
  color: var(--color-brand);
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .notice-indicator-dt {
    display: inline-block;
    margin-right: 4px;
    margin-bottom: 6px;
    font-size: 1.3rem;
  }
}

.notice-indicator-dd {
  margin-left: 24px;
}

@media (max-width: 768px) {
  .notice-indicator-dd {
    display: inline-block;
    margin-left: 0;
  }
  .notice-indicator-dd:last-child {
    display: block;
    width: 100%;
  }
}

.notice-indicator-dd a,
.notice-indicator-dd a:active,
.notice-indicator-dd a:visited {
  color: #222;
  text-decoration: none;
}

.notice-indicator-dd a:hover, .notice-indicator-dd a:active,
.notice-indicator-dd a:active:hover,
.notice-indicator-dd a:active:active,
.notice-indicator-dd a:visited:hover,
.notice-indicator-dd a:visited:active {
  text-decoration: underline;
}

.notice-indicator-tag {
  display: inline-block;
  width: 124px;
  padding: 4px 0;
  border: 1px solid #707070;
  box-sizing: border-box;
  color: #222;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
}

@media (max-width: 768px) {
  .notice-indicator-tag {
    width: 100px;
    font-size: 1.3rem;
  }
}

.notice-detail .bread {
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  .notice-detail .bread {
    margin-bottom: 60px;
  }
}

.notice-deta {
  margin-top: -17px;
  margin-bottom: 25px;
  text-align: right;
}

.notice-deta-category {
  display: inline-block;
  width: 124px;
  margin-right: 12px;
  padding: 1px 6px 1px 6px;
  border: 1px solid #707070;
  box-sizing: border-box;
  font-size: 1.5rem;
  line-height: 2.3rem;
  text-align: center;
}

.notice-deta-date {
  color: var(--color-brand);
  font-size: 1.5rem;
  line-height: 2.3rem;
}

.notice-more {
  margin-top: 8px;
  text-align: right;
}

.notice-more a,
.notice-more a:active,
.notice-more a:visited {
  text-decoration: none;
}

.notice-more a::before,
.notice-more a:active::before,
.notice-more a:visited::before {
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 8px;
  background-image: url(/images/ico_arrow_left_blue.svg);
  background-size: 1.8rem;
  background-repeat: no-repeat;
  vertical-align: text-top;
  content: "";
}

.notice-more a:hover,
.notice-more a:active,
.notice-more a:active:hover,
.notice-more a:active:active,
.notice-more a:visited:hover,
.notice-more a:visited:active {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .notice-more a {
    font-size: 1.3rem;
  }
  
  .notice-more a::before,
  .notice-more a:active::before,
  .notice-more a:visited::before {
    width: 1.3rem;
    height: 1.3rem;
    margin-right: 4px;
    background-size: 1.3rem;
  }
}

.notice-article-txt {
  margin-bottom: 32px;
}

.notice .general-table {
  font-size: 1.8rem;
  line-height: 2.8rem;
}

@media (max-width: 768px) {
  .notice .general-table {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}

.notice-pageback-btn {
  max-width: 290px;
  margin: 0 auto 40px auto;
  padding: 20px 20px 20px 50px;
  justify-content: center;
}

@media (max-width: 768px) {
  .notice-pageback-btn {
    margin: 0 auto 32px auto;
  }
}

.notice-pageback-btn::after {
  left: 16px;
  background-image: url(/images/ico_arrow_left_white.svg);
  transition-property: left;
  transition-duration: .3s;
  transition-timing-function: ease-in-out;
}

.notice-pageback-btn:hover::after, .notice-pageback-btn:active::after {
  left: 11px;
}

.category-top-indicator {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: -24px;
  padding-left: 0;
}

.category-top-list {
  list-style: none;
  width: calc(33.3% - 16px);
  margin-right: 24px;
  margin-bottom: 24px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .category-top-list {
    width: 100%;
    margin-right: 0;
  }
}

.category-top-list:nth-child(3n) {
  margin-right: 0;
}

.category-top-list .general-link-img-item {
  width: 100%;
}

.category-top-list-txt {
  padding-right: 12px;
  padding-left: 12px;
}

.tag-page-notice {
  margin-bottom: 62px;
}

.tag-page-series {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .tag-page-series {
    margin-bottom: 64px;
  }
}

.tag-page-series-indicator {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin: -20px -20px 0 -20px;
  padding-left: 0;
}

@media (max-width: 768px) {
  .tag-page-series-indicator {
    display: block;
    margin: -12px -12px 0 -12px;
  }
}

.tag-page-series-item {
  list-style: none;
  width: 25%;
}

@media (max-width: 768px) {
  .tag-page-series-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 19px;
  }
  .tag-page-series-item:last-child {
    margin-bottom: 0;
  }
}

.tag-page-series-link, .tag-page-series-link:link, .tag-page-series-link:visited {
  display: block;
  height: 100%;
  padding: 20px;
  border: 1px solid #fff;
  box-sizing: border-box;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0);
  color: #222;
  text-decoration: none;
  transition-property: border, box-shadow;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
}

@media (max-width: 768px) {
  .tag-page-series-link, .tag-page-series-link:link, .tag-page-series-link:visited {
    padding: 12px;
  }
}

.tag-page-series-link:hover, .tag-page-series-link:active, .tag-page-series-link:link:hover, .tag-page-series-link:link:active, .tag-page-series-link:visited:hover, .tag-page-series-link:visited:active {
  border: 1px solid #707070;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.3);
}

.tag-page-series-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 193px;
  margin-bottom: 23px;
  border: 1px solid var(--color-brand);
  border-radius: 0 5px 0 5px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .tag-page-series-img {
    margin-bottom: 21px;
  }
}

.tag-page-series-img img {
  max-width: 80%;
  max-height: 80%;
}

.tag-page-series-title {
  color: var(--color-brand);
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 3.5rem;
}

@media (max-width: 768px) {
  .tag-page-series-title {
    font-size: 2.1rem;
    line-height: 3.3rem;
  }
}

.tag-page-list-indicator {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: calc(100% + 24px);
  padding-left: 0;
}

@media (max-width: 768px) {
  .tag-page-list-indicator {
    justify-content: center;
    width: 100%;
    margin: 0 -6px 21px -6px;
  }
}

.tag-page-list-item {
  list-style: none;
  margin-right: 24px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .tag-page-list-item {
    margin-right: 6px;
    margin-bottom: 12px;
    margin-left: 6px;
  }
}

.tag-page-list-item:last-child {
  margin-right: 0;
}

.tag-page-list-item a,
.tag-page-list-item a:active,
.tag-page-list-item a:visited {
  display: block;
  padding: 5px 19px 5px 19px;
  border: 1px solid var(--color-brand);
  border-radius: 0 5px 0 5px;
  color: #222;
  font-weight: 500;
  font-size: 2.3rem;
  line-height: 3.5rem;
  text-decoration: none;
  cursor: pointer;
  transition-property: background-color, border-radius, color;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
}

@media (max-width: 768px) {
  .tag-page-list-item a,
  .tag-page-list-item a:active,
  .tag-page-list-item a:visited {
    padding: 3px 9px 3px 9px;
    font-size: 2.1rem;
    line-height: 3.3rem;
  }
}

.tag-page-list-item a:hover,
.tag-page-list-item a:active:hover,
.tag-page-list-item a:visited:hover {
  border-radius: 5px 0 5px 0;
  background-color: var(--color-brand);
  color: #fff;
}

.product-top-box {
  margin-bottom: 60px;
}

.product-top-btn-area {
  margin-top: 28px;
  margin-bottom: 60px;
  text-align: center;
}

.form article {
  min-height: calc(100vh - 474px);
}

.form .l-header .logo {
  top: 37px;
}

.form p {
  word-wrap: break-word;
}

.form .general-title-h1 {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .form .general-title-h1 {
    margin-top: 60px;
  }
}

.form-block {
  margin-top: 76px;
}

@media (max-width: 768px) {
  .form-block {
    margin-top: 50px;
  }
}

.form-required {
  position: relative;
  top: -.15rem;
  margin-right: 8px;
  padding: 6px 9px 7px 9px;
  border-radius: 2px;
  background: var(--color-brand);
  color: #fff;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.3rem;
  vertical-align: baseline;
}

@media (max-width: 768px) {
  .form-required {
    font-size: 1.3rem;
    line-height: 2.1rem;
  }
}

.form-item {
  display: flex;
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #707070;
}

@media (max-width: 768px) {
  .form-item {
    display: block;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

.form-head {
  width: 20%;
  min-width: 250px;
  padding-top: 8px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.8rem;
}

@media (max-width: 768px) {
  .form-head {
    width: auto;
    margin-bottom: 15px;
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}

.form-head.no-input {
  padding-top: 0;
}

.form-body {
  width: 80%;
}

@media (max-width: 768px) {
  .form-body {
    width: auto;
  }
}

.form-input, .form-txtarea {
  width: 100%;
  padding: 8px 13px 8px 13px;
  border: 1px solid #707070;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: .05em;
}

@media (max-width: 768px) {
  .form-input, .form-txtarea {
    font-size: 1.6rem;
    line-height: 2.6rem;
    letter-spacing: .025em;
  }
}

.form-input-3digit, .form-txtarea-3digit {
  width: 70px;
}

.form-input-4digit, .form-txtarea-4digit {
  width: 80px;
}

.form-input:disabled, .form-txtarea:disabled {
  background: #e6e6e6;
}

.form-select {
  width: 100%;
  padding: 13px;
  border: 1px solid #707070;
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: .05em;
  appearance: none;
}

@media (max-width: 768px) {
  .form-select {
    font-size: 1.6rem;
    line-height: 2.6rem;
    letter-spacing: .025em;
  }
}

.form-select-box {
  position: relative;
}

.form-select-box:after {
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
  color: #222;
  font-size: 1.6rem;
  line-height: 2.6rem;
  letter-spacing: .025em;
  content: "▼";
  pointer-events: none;
}

.form-note {
  margin-top: 11px;
  margin-bottom: 0;
  color: #707070;
  font-size: 1.5rem;
  line-height: 2.3rem;
}

@media (max-width: 768px) {
  .form-note {
    font-size: 1.3rem;
    line-height: 2.1rem;
  }
}

.form .error {
  margin-top: 11px;
  margin-bottom: 0;
  color: #de3131;
  font-size: 1.5rem;
  line-height: 2.3rem;
}

@media (max-width: 768px) {
  .form .error {
    font-size: 1.3rem;
    line-height: 2.1rem;
  }
}

.form-policie {
  margin-top: 32px;
  text-align: center;
}

.form-btn {
  display: block;
  position: relative;
  width: 100%;
  padding: 20px 50px 20px 20px;
  border: 0;
  box-sizing: border-box;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
  background: var(--color-brand);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition-property: background-color;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
}

@media (max-width: 768px) {
  .form-btn {
    padding: 20px 50px 20px 50px;
    text-align: center;
  }
}

.form-btn-prev {
  padding: 20px 20px 20px 50px;
}

@media (max-width: 768px) {
  .form-btn-prev {
    padding: 20px 50px 20px 50px;
  }
}

.form-btn:hover, .form-btn:active {
  background-color: var(--color-hover);
}

.form-btn-box {
  position: relative;
  width: 290px;
  margin-right: auto;
  margin-left: auto;
}

.form-btn-box:hover::after, .form-btn-box:active::after {
  right: 11px;
}

.form-btn-box::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url(/images/ico_arrow_right_white.svg);
  content: "";
  transition-property: right;
  transition-duration: .3s;
  transition-timing-function: ease-in-out;
}

.form-btn-area {
  margin-top: 30px;
}

.form .l-footer {
  padding-top: 31px;
  padding-bottom: 31px;
  background: var(--color-brand);
}

.form .l-footer .copy {
  padding: 0;
  background: none;
  color: #fff;
}

.form-confirm-btn-area {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .form-confirm-btn-area {
    display: block;
  }
}

.form-confirm-btn-box {
  position: relative;
  width: 250px;
  margin-right: 40px;
}

@media (max-width: 768px) {
  .form-confirm-btn-box {
    margin-top: 32px;
    margin-right: auto;
    margin-left: auto;
  }
}

.form-confirm-btn-box:hover::after, .form-confirm-btn-box:active::after {
  right: 11px;
}

.form-confirm-btn-box:last-child {
  margin-right: 0;
}

@media (max-width: 768px) {
  .form-confirm-btn-box:last-child {
    margin-right: auto;
  }
}

.form-confirm-btn-box::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url(/images/ico_arrow_right_white.svg);
  content: "";
  transition-property: right;
  transition-duration: .3s;
  transition-timing-function: ease-in-out;
}

.form-confirm-btn-box-prev:hover::after, .form-confirm-btn-box-prev:active::after {
  left: 11px;
}

.form-confirm-btn-box-prev::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url(/images/ico_arrow_left_white.svg);
  content: "";
  transition-property: left;
  transition-duration: .3s;
  transition-timing-function: ease-in-out;
}

.case-factory {
  display: flex;
  flex-wrap: wrap;
}

.case-factory-dl-block {
  width: calc(66.6% - 8px);
  margin-bottom: 64px;
}

.case-factory-dl-block dl:first-child {
  padding-top: 0;
}

.case-factory-3col-block {
  flex-shrink: 0;
  width: calc(33.3% - 16px);
  margin-left: 24px;
}

.case-factory-3col-block {
  /* max-width: 300px; */
}

.case-factory-3col-block:nth-child(3n) {
  margin-left: 0;
}

.case-factory-3col-block img {
  width: 100%;
}

.case-factory-3col-img {
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .case-factory-dl-block {
    width: 100%;
    margin-bottom: 24px;
  }
  .case-factory-3col-block {
    width: 100%;
    margin-left: 0;
    margin-bottom: 19px;
  }
}

.case-bg-block {
  margin-bottom: 40px;
}

.case-bg-block .general-2col-left-img {
  width: 180px;
}

.case-bg-block .general-col-title {
  font-size: 2.0rem;
}

@media (max-width: 980px) {
  .case-bg-block .general-2col-left-img {
    width: 30%;
  }
}

@media (max-width: 768px) {
  .case-bg-block {
    margin-bottom: 32px;
  }

  .case-bg-block .general-2col-left-img {
    width: 100%;
  }

  .case-bg-block .general-2col-left-txt {
    margin-bottom: 0;
  }

  .case-bg-block .general-col-title {
    font-size: 1.8rem;
  }
}

.case-data {
  margin-top: -17px;
  margin-bottom: 25px;
}

.case-data-category {
  display: inline-block;
  width: 124px;
  margin-right: 12px;
  padding: 1px 6px 1px 6px;
  border: 1px solid #707070;
  box-sizing: border-box;
  font-size: 1.5rem;
  line-height: 2.3rem;
  text-align: center;
}

.case-data-equipment {
  font-size: 1.5rem;
  line-height: 2.3rem;
}

@media (max-width: 768px) {
  .case-data {
    text-align: right;
  }

  .case-data-category {
    font-size: 1.3rem;
  }

  .case-data-equipment {
    font-size: 1.3rem;
  }
}