@charset "UTF-8";
/* ------------------------------------------
アニメーション
------------------------------------------- */
/* タイトルスライドイン
========================================= */
.slide-in {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

.slide-in_inner {
  display: inline-block;
  vertical-align: top;
}

.leftAnime {
  opacity: 0;
}

.slideAnimeLeftRight {
  -webkit-animation-name: slideTextX100;
          animation-name: slideTextX100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  -webkit-animation-name: slideTextX-100;
          animation-name: slideTextX-100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/* svg 線を描くアニメーション */
.stroke path {
  stroke: transparent;
}

.is-stroke path {
  -webkit-animation: stroke 3s ease-in-out forwards;
          animation: stroke 3s ease-in-out forwards;
  stroke: #fff;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: 2.5;
}

@-webkit-keyframes stroke {
  0% {
    stroke-dashoffset: 2000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes stroke {
  0% {
    stroke-dashoffset: 2000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/* ぼかしフェードイン
======================================== */
.blur {
  opacity: 0;
}

.is-blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translate(20px, -20px) scale(1.02);
            transform: translate(20px, -20px) scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translate(20px, -20px) scale(1.02);
            transform: translate(20px, -20px) scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}
/* ふわふわ
======================================== */
.anime-upDown {
  -webkit-animation: 3s upDown infinite;
          animation: 3s upDown infinite;
}

@-webkit-keyframes upDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes upDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
/* フェードイン（基本）
======================================== */
.fadeIn, .fadeUpDown, .fadeLeftRight, .fadeRightLeft, .fadeInOpacity, .fv_fadeRightLeft, .fv_fadeInOpacity,
.fadeInSP, .fadeUpDownSP, .fadeLeftRightSP, .fadeRightLeftSP {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}

.fadeIn_PC_TB {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}
@media (max-width: 768px) {
  .fadeIn_PC_TB {
    opacity: 1;
  }
}

.is-fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeInSP {
  -webkit-animation-name: fadeInAnimeSP;
          animation-name: fadeInAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeUpDown {
  -webkit-animation-name: fadeUpDownAnime;
          animation-name: fadeUpDownAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpDownAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpDownAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeUpDownSP {
  -webkit-animation-name: fadeUpDownAnimeSP;
          animation-name: fadeUpDownAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpDownAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpDownAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeLeftRight {
  -webkit-animation-name: fadeLeftRightAnime;
          animation-name: fadeLeftRightAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftRightAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftRightAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeLeftRightSP {
  -webkit-animation-name: fadeLeftRightAnimeSP;
          animation-name: fadeLeftRightAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftRightAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftRightAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeRightLeft {
  -webkit-animation-name: fadeRightLeftAnime;
          animation-name: fadeRightLeftAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightLeftAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightLeftAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeRightLeftSP {
  -webkit-animation-name: fadeRightLeftAnimeSP;
          animation-name: fadeRightLeftAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightLeftAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightLeftAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeInOpacity {
  -webkit-animation-name: fadeInOpacityAnime;
          animation-name: fadeInOpacityAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInOpacityAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInOpacityAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* フェードイン（時間差）
======================================== */
.delayScroll > * {
  opacity: 0;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeUpSP {
  -webkit-animation-name: fadeUpAnimeSP;
          animation-name: fadeUpAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnimeSP {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnimeSP {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*　遅延時間
======================================== */
.delay-time_05s {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-time_1s {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-time_2s {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time_3s {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.delay-time_n1 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-time_n2 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.delay-time_n3 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.delay-time_n4 {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

@font-face {
  font-family: "Tsukushi A Round Gothic";
  src: url("../fonts/TsukushiARoundGothic_B.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_SB.woff2") format("woff2");
}
html {
  margin-top: 0 !important;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.1111111vw, 16px);
  color: #3E3F41;
  background-color: #fff;
  line-height: 1.8;
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
}
body.top {
  overflow-x: inherit;
}

main {
  overflow: hidden;
  background-color: #fff;
  margin-top: 96px;
}
@media (max-width: 1280px) {
  main {
    margin-top: 64px;
  }
}
main.top {
  overflow: inherit;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: #3E3F41;
}

li {
  list-style: none;
}

img, video, iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* utility 
====================================== */
@media (max-width: 1280px) {
  .xl_only {
    display: none;
  }
}

@media (max-width: 1024px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media (max-width: 768px) {
  .sp_only {
    display: block;
  }
}

.tb_only {
  display: none;
}
@media (max-width: 1024px) {
  .tb_only {
    display: block;
  }
}
@media (max-width: 768px) {
  .tb_only {
    display: none;
  }
}

@media (max-width: 768px) {
  .pc_tb {
    display: none;
  }
}

.tb_sp {
  display: none;
}
@media (max-width: 1024px) {
  .tb_sp {
    display: block;
  }
}

.full-size {
  margin: 0 calc(50% - 50vw);
}

.page__columns-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4em 5.33%;
}
@media (max-width: 1024px) {
  .page__columns-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.page__columns-main {
  width: 66.67%;
}
@media (max-width: 1024px) {
  .page__columns-main {
    width: 100%;
  }
}
.page__columns-side {
  width: 28%;
  min-width: 300px;
}
@media (max-width: 1024px) {
  .page__columns-side {
    width: 100%;
  }
}

/* section common
====================================== */
.section__inner {
  width: 90%;
  padding: 4em 0;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .section__inner {
    width: 89.333333%;
    padding: 2.5em 0;
  }
}
.section__inner.--l {
  max-width: 1400px;
}
.section__inner.--s {
  max-width: 960px;
}
.section__inner.--xs {
  max-width: 900px;
}
.section__title {
  position: relative;
  z-index: 0;
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .section__title {
    margin-bottom: 2.5rem;
  }
}
.section__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 50vw);
  z-index: -1;
  width: 100vw;
  height: 4rem;
}
@media (max-width: 768px) {
  .section__title::after {
    height: 2.5rem;
  }
}
.section__title.--l::after {
  height: 6rem;
}
@media (max-width: 768px) {
  .section__title.--l::after {
    height: 3.5rem;
  }
}
.section__title.--blue::after {
  background-color: #0B41A0;
}
.section__title.--orange::after {
  background-color: #FA6806;
}
.section__lead {
  font-weight: 700;
  line-height: 2;
}
@media (max-width: 768px) {
  .section__lead {
    font-size: 0.9375em;
  }
}
.section__lead.--center {
  text-align: center;
}
.section__lead > span {
  background: -webkit-linear-gradient(transparent calc(100% - 10px), #FFEA7D 0%);
  background: linear-gradient(transparent calc(100% - 10px), #FFEA7D 0%);
  background-size: 100% 10px;
  background-position: bottom;
  background-repeat: no-repeat;
}

.breadcrumbs {
  background-color: #FBFBFB;
  width: 100%;
  font-size: 0.75em;
  line-height: 1.8;
  color: #787878;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (max-width: 768px) {
  .breadcrumbs {
    font-size: 0.875em;
  }
}
.breadcrumbs.--blue .breadcrumbs__inner > span:nth-of-type(1) a {
  color: #008DE0;
}
.breadcrumbs__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 2px;
  padding: 0.75rem 8.333%;
}
@media (max-width: 768px) {
  .breadcrumbs__inner {
    font-size: 0.875em;
    padding: 0.75rem 5.333%;
  }
}
.breadcrumbs__inner > span:nth-of-type(1) a {
  text-decoration: underline;
  color: #F68956;
}
.breadcrumbs span {
  display: block;
}
.breadcrumbs span[property=name] {
  padding: 0;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* cases
======================================= */
.cases__item {
  background-color: #fff;
}
.cases__item-image {
  position: relative;
}
.cases__item-image::before {
  content: "";
  display: block;
  padding-top: 66.576%;
}
.cases__item-image img, .cases__item-image video, .cases__item-image iframe, .cases__item-image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cases__item-contents {
  padding: 1em 1.5em;
}
.cases__item-title {
  font-size: 1.125em;
  font-weight: bold;
  line-height: 1.45;
  margin-bottom: 0.75rem;
}
.cases__item-area, .cases__item-detail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
}
.cases__item-area-item {
  font-weight: 500;
}
.cases__item-detail-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
}
.cases__item-detail-item {
  font-weight: 500;
}

.cases {
  background-color: #F3EFE4;
}
.cases-inner {
  padding-top: 3em;
  padding-bottom: 4em;
}
@media (max-width: 768px) {
  .cases-inner {
    padding-top: 2em;
    padding-bottom: 2em;
  }
}
.cases-title {
  margin-bottom: 3em;
}
@media (max-width: 768px) {
  .cases-title {
    margin-bottom: 2em;
  }
}
.cases-title img {
  max-width: 637px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cases-title img {
    max-width: 179px;
  }
}
.cases-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em 4%;
}
@media (max-width: 768px) {
  .cases-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cases-item-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  background-color: #fff;
  position: relative;
}
.cases-item-image::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background: url(../img/menus/repair/icon_case_image.svg) no-repeat center center/contain;
}
.cases-item-image-before, .cases-item-image-after {
  width: 50%;
  position: relative;
  position: relative;
}
.cases-item-image-before::before, .cases-item-image-after::before {
  content: "";
  display: block;
  padding-top: 112.5%;
}
.cases-item-image-before img, .cases-item-image-before video, .cases-item-image-before iframe, .cases-item-image-before svg, .cases-item-image-after img, .cases-item-image-after video, .cases-item-image-after iframe, .cases-item-image-after svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cases-item-image-before::after {
  content: "BEFORE";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375em;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  padding: 0.5rem 0.75rem;
  background-color: #3E3F41;
}
.cases-item-image-after::after {
  content: "AFTER";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375em;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  padding: 0.5rem 0.75rem;
  background-color: #FA6806;
}
.cases-item-year {
  background-color: #3E3F41;
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.25rem 1.5rem;
}
.cases-item-text {
  font-size: 0.9375em;
  line-height: 2.1333;
  font-weight: 500;
  background-color: #fff;
  padding: 1rem 1.5rem 1.5rem;
}

/* column
======================================= */
.column__item {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100% !important;
  border-radius: 12px;
  background-color: #fff;
  overflow: hidden;
}
.column__item a:hover .column__item-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.column__item a:hover .column__item-title {
  color: #00337B;
}
.column__item-image {
  overflow: hidden;
  position: relative;
}
.column__item-image::before {
  content: "";
  display: block;
  padding-top: 53.9563%;
}
.column__item-image img, .column__item-image video, .column__item-image iframe, .column__item-image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .column__item-image::before {
    padding-top: 39.667%;
  }
}
.column__item-image img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.column__item-contents {
  padding: 1.5em;
}
@media (max-width: 768px) {
  .column__item-contents {
    padding: 1em 1.5em;
  }
}
.column__item-date {
  font-size: 0.8125em;
  color: #888888;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .column__item-date {
    font-size: 0.75em;
    margin-bottom: 0.5rem;
  }
}
.column__item-title {
  font-size: 1.125em;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .column__item-title {
    margin-bottom: 0.5rem;
  }
}
.column__item-text {
  font-size: 0.9375em;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .column__item-text {
    font-size: 0.875em;
  }
}
.column__item-cats {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.column__item-cat {
  font-size: 0.875em;
  color: #00337B;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  border: 1px solid #00337B;
  border-radius: 11px;
  padding: 3px 0.75rem;
}
@media (max-width: 768px) {
  .column__item-cat {
    font-size: 0.8125em;
  }
}

/* e_news
======================================= */
.news__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}
@media (max-width: 768px) {
  .news__item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
}
.news__item a:hover .news__item-title {
  color: #FA6806;
}
.news__item-image {
  width: 35.21%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.news__item-image::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.news__item-image img, .news__item-image video, .news__item-image iframe, .news__item-image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .news__item-image {
    width: 100%;
  }
}
.news__item-contents {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .news__item-contents {
    -webkit-box-flex: inherit;
    -webkit-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
  }
}
.news__item-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  margin-bottom: 0.75em;
}
@media (max-width: 768px) {
  .news__item-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.25rem;
  }
}
.news__item-date {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375em;
  font-weight: 600;
  color: #777777;
}
.news__item-category {
  font-size: 0.875em;
  color: #FA6806;
  line-height: 1;
  font-weight: bold;
  padding: 0.25rem 1rem;
  background-color: #fff;
  border: 1px solid #FA6806;
  border-radius: 24px;
}
.news__item-title {
  font-size: 1.125em;
  font-weight: bold;
  line-height: 1.6111;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .news__item-title {
    font-size: 0.9375em;
    line-height: 2;
  }
}

/* headline
========================================= */
.headline__inner {
  position: relative;
  height: 100%;
}
.headline__title {
  font-size: 4em;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 0 6px rgb(0, 0, 0);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .headline__title {
    font-size: 2em;
  }
}
.headline__title.--no_shadow {
  text-shadow: none;
}
.headline__image {
  height: 310px;
}
@media (max-width: 768px) {
  .headline__image {
    height: 160px;
  }
}

.pagination1 {
  margin-top: 5em;
}
@media (max-width: 768px) {
  .pagination1 {
    margin-top: 2em;
  }
}
.pagination1 .nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.pagination1 .page-numbers {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-align: center;
  position: relative;
  z-index: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #FFEFE7;
}
.pagination1 .page-numbers:hover {
  color: #FA6806;
}
.pagination1 .page-numbers.current {
  color: #fff;
  background-color: #FA6806;
}
.pagination1 .page-numbers.prev, .pagination1 .page-numbers.next {
  border: 2px solid #FA6806;
  border-radius: 20px;
  background-color: #FA6806;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .pagination1 .page-numbers.prev, .pagination1 .page-numbers.next {
    font-size: 0;
  }
}
.pagination1 .page-numbers.prev::after, .pagination1 .page-numbers.next::after {
  display: none;
}
.pagination1 .page-numbers.prev::before, .pagination1 .page-numbers.next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination1 .page-numbers.prev:hover, .pagination1 .page-numbers.next:hover {
  color: #fff;
  background-color: #fff;
}
.pagination1 .page-numbers.prev:hover::before, .pagination1 .page-numbers.next:hover::before {
  border-right: 2px solid #FA6806;
  border-bottom: 2px solid #FA6806;
}
.pagination1 .page-numbers.prev::before {
  -webkit-transform: translate(-25%, -50%) rotate(135deg);
          transform: translate(-25%, -50%) rotate(135deg);
}
.pagination1 .page-numbers.next::before {
  -webkit-transform: translate(-65%, -50%) rotate(-45deg);
          transform: translate(-65%, -50%) rotate(-45deg);
}

.pagination2 {
  margin-top: 5em;
}
@media (max-width: 768px) {
  .pagination2 {
    margin-top: 2em;
  }
}
.pagination2 .nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.pagination2 .page-numbers {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-align: center;
  position: relative;
  z-index: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #EAF7FF;
}
.pagination2 .page-numbers:hover {
  color: #00337B;
}
.pagination2 .page-numbers.current {
  color: #fff;
  background-color: #04A7FC;
}
.pagination2 .page-numbers.prev, .pagination2 .page-numbers.next {
  border: 2px solid #0B41A0;
  border-radius: 20px;
  background-color: #0B41A0;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .pagination2 .page-numbers.prev, .pagination2 .page-numbers.next {
    font-size: 0;
  }
}
.pagination2 .page-numbers.prev::after, .pagination2 .page-numbers.next::after {
  display: none;
}
.pagination2 .page-numbers.prev::before, .pagination2 .page-numbers.next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination2 .page-numbers.prev:hover, .pagination2 .page-numbers.next:hover {
  color: #fff;
  background-color: #fff;
}
.pagination2 .page-numbers.prev:hover::before, .pagination2 .page-numbers.next:hover::before {
  border-right: 2px solid #0B41A0;
  border-bottom: 2px solid #0B41A0;
}
.pagination2 .page-numbers.prev::before {
  -webkit-transform: translate(-25%, -50%) rotate(135deg);
          transform: translate(-25%, -50%) rotate(135deg);
}
.pagination2 .page-numbers.next::before {
  -webkit-transform: translate(-65%, -50%) rotate(-45deg);
          transform: translate(-65%, -50%) rotate(-45deg);
}

/* contact
======================================= */
.contact {
  background-color: #F5DD67;
}
.contact__inner {
  padding: 2em 0;
}
.contact__container {
  max-width: 974px;
  margin: auto;
  position: relative;
  z-index: 0;
  background-color: #fff;
  border-radius: 4px;
}
@media (max-width: 1024px) {
  .contact__container {
    max-width: 600px;
  }
}
.contact__container img {
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  height: auto;
}
.contact__upper {
  padding: 1.5em;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .contact__upper {
    padding: 1.5em 1em;
  }
}
.contact__catch {
  font-size: 1.6875em;
  font-weight: 900;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .contact__catch {
    font-size: 1.5em;
    text-align: center;
    line-height: 1.4;
  }
}
@media (max-width: 768px) {
  .contact__catch .wrapper {
    display: inline-block;
    margin-bottom: 4px;
  }
}
.contact__catch .red {
  display: inline-block;
  background-color: #D42C2C;
  color: #fff;
  line-height: 1;
  border-radius: 4px;
  padding: 6px;
  margin-right: 4px;
}
@media (max-width: 768px) {
  .contact__catch .red {
    width: 98px;
    text-align: center;
    padding: 6px 0;
  }
}
@media (max-width: 768px) {
  .contact__catch .red:nth-child(3) {
    margin-right: 0;
  }
}
.contact__catch .udl {
  position: relative;
  z-index: 0;
}
.contact__catch .udl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  z-index: -1;
  width: 100%;
  height: 6px;
  background-color: #FA6806;
}
.contact__middle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .contact__middle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .contact__middle {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.contact__tel {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .contact__tel {
    max-width: 303px;
  }
}
.contact__tel:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .contact__tel img {
    width: 100%;
  }
}
.contact__links {
  width: 264px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5em;
}
@media (max-width: 768px) {
  .contact__links {
    width: 100%;
    max-width: 303px;
  }
}
.contact__link {
  width: 100%;
}
.contact__text {
  height: 2.25em;
  background-color: #0B41A0;
  padding: 0 1em;
  color: #fff;
  font-weight: bold;
  font-size: 1.5em;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .contact__text {
    font-size: 1.25em;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .contact__text {
    font-size: 1.125em;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
  }
}
.contact__person {
  position: absolute;
  right: 1.1679em;
  bottom: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .contact__person {
    display: none;
  }
}

.footer__inner {
  padding-top: 6em;
  padding-bottom: 4em;
}
@media (max-width: 768px) {
  .footer__inner {
    padding-top: 3em;
    padding-bottom: 2em;
  }
}
.footer__upper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 4em;
}
@media (max-width: 1024px) {
  .footer__upper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 768px) {
  .footer__upper {
    margin-bottom: 3em;
  }
}
.footer__upper-left {
  width: 25%;
  max-width: 275px;
}
@media (max-width: 1024px) {
  .footer__upper-left {
    width: 100%;
    max-width: inherit;
    margin-bottom: 2.5em;
  }
}
.footer__upper-right {
  width: 65%;
  max-width: 772px;
}
@media (max-width: 1024px) {
  .footer__upper-right {
    width: 100%;
  }
}
.footer__logo {
  max-width: 234px;
  margin-bottom: 0.375rem;
}
@media (max-width: 1024px) {
  .footer__logo {
    max-width: 160px;
  }
}
@media (max-width: 768px) {
  .footer__logo {
    margin: 0 auto 1em;
  }
}
.footer__info {
  font-size: 0.875em;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .footer__info {
    text-align: center;
    margin-bottom: 1.5rem;
  }
}
.footer__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
}
@media (max-width: 768px) {
  .footer__sns {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2em;
  }
}
.footer__sns-icon {
  width: 2rem;
  height: 2rem;
}
@media (max-width: 768px) {
  .footer__sns-icon {
    width: 3rem;
    height: 3rem;
  }
}
.footer__sns-icon a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__sns-icon a:hover {
  opacity: 0.7;
}
.footer__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 7.25%;
}
@media (max-width: 768px) {
  .footer__columns {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 768px) {
  .footer__column:first-child .footer__link:first-child .footer__link-title a {
    border-top: 1px solid #dbdbdb;
  }
}
.footer__link:nth-child(n+2) {
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .footer__link:nth-child(n+2) {
    margin-top: 0;
  }
}
.footer__link-title {
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .footer__link-title {
    margin-bottom: 0;
  }
}
.footer__link-title > a, .footer__link-title > span.title {
  display: block;
  font-size: 0.8125em;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .footer__link-title > a, .footer__link-title > span.title {
    font-size: 0.9375em;
    padding: 1.25rem 1rem;
    border-bottom: 1px solid #dbdbdb;
  }
}
.footer__link-title > a::before, .footer__link-title > span.title::before {
  content: "";
  background: url(../img/common/footer/icon_house-orange.svg) center center/contain;
  width: 0.625rem;
  height: 0.625rem;
  display: inline-block;
  margin-right: 1em;
}
.footer__link-title > a:hover {
  color: #FA6806;
}
@media (max-width: 768px) {
  .footer__link-title > span.title {
    cursor: pointer;
  }
  .footer__link-title > span.title:hover {
    color: #FA6806;
  }
}
.footer__link-title.--accordion {
  position: relative;
}
.footer__link-title.--accordion > span.icon {
  display: none;
  position: absolute;
  right: 1.25em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .footer__link-title.--accordion > span.icon {
    display: block;
  }
}
.footer__link-title.--accordion > span.icon.is-open::after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.footer__link-title.--accordion > span.icon::before, .footer__link-title.--accordion > span.icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  width: 0.75rem;
  height: 2px;
  display: block;
  background-color: #3E3F41;
  border-radius: 4px;
}
.footer__link-title.--accordion > span.icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__link-list {
  padding-left: 1rem;
}
@media (max-width: 768px) {
  .footer__link-list {
    display: none;
    padding-left: 0;
  }
}
.footer__link-item {
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .footer__link-item {
    margin-bottom: 0;
  }
}
.footer__link-item:last-child {
  margin-bottom: 0;
}
.footer__link-item a {
  font-size: 0.8125em;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .footer__link-item a {
    font-size: 0.9375em;
    color: #fff;
    display: block;
    background-color: #FA6806;
    padding: 1.25rem 1rem;
    border-bottom: 1px solid #dbdbdb;
  }
}
.footer__link-item a:hover {
  color: #FA6806;
}
@media (max-width: 768px) {
  .footer__link-item a:hover {
    background-color: #fff;
    color: #FA6806;
  }
}
.footer__link-item a::before {
  content: "";
  width: 12px;
  height: 2px;
  background-color: #EDDB93;
  display: inline-block;
  margin-right: 1em;
}
@media (max-width: 768px) {
  .footer__link-item a::before {
    display: none;
  }
}
.footer__lower {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .footer__lower {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }
}
.footer__offices {
  width: 80%;
  max-width: 712px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5em;
}
@media (max-width: 768px) {
  .footer__offices {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-bottom: 2.5em;
  }
}
.footer__offices-item {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1em;
}
@media (max-width: 768px) {
  .footer__offices-item {
    width: 100%;
  }
}
.footer__offices-item-img {
  width: 100px;
  border-radius: 8px;
  overflow: hidden;
}
.footer__offices-item-contents {
  width: calc(100% - 100px - 1em);
}
.footer__offices-item-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
.footer__offices-item-title-name {
  font-size: 1.25em;
  color: #F68956;
  font-weight: 700;
}
.footer__offices-item-title-map a {
  font-size: 0.875em;
  color: #F68956;
  font-weight: 500;
  padding: 0.25em 1em;
  border: 1px solid #F68956;
  border-radius: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__offices-item-title-map a:hover {
  background-color: #F68956;
  color: #fff;
}
.footer__offices-item-address {
  font-size: 0.9375em;
  font-weight: 500;
  line-height: 1.4467;
}
.footer__copy {
  font-size: 0.8125em;
  text-align: center;
  background-color: #0B41A0;
  color: #fff;
  padding: 0.875rem;
  margin-bottom: 7rem;
}
@media (max-width: 768px) {
  .footer__copy {
    margin-bottom: 5rem;
  }
}
.footer__pageTop a {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.9375em;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  padding: 0.875rem 1rem 0.875rem 2rem;
  border: 1px solid #3E3F41;
  border-radius: 32px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media (max-width: 768px) {
  .footer__pageTop a {
    padding: 0.6875rem 1rem 0.6875rem 2rem;
  }
}
.footer__pageTop a::before {
  content: "";
  position: absolute;
  right: calc(1.875rem - 5.835px + 0.5px);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-bottom: 5.83px solid #ffffff;
  border-top: 0;
}
.footer__pageTop a::after {
  content: "";
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  background-color: #F68956;
  border-radius: 50%;
}
.footer__pageTop a:hover {
  background-color: #3E3F41;
  color: #fff;
}
.footer__fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  background-color: #1266D4;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.footer__fixed-inner {
  padding: 1rem 0;
  width: 95%;
  max-width: 1077px;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media (max-width: 1280px) {
  .footer__fixed-inner {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.5rem;
  }
}
.footer__fixed-left {
  text-align: center;
  font-weight: 500;
  font-size: 0.9375em;
  color: #fff;
}
@media (max-width: 1280px) {
  .footer__fixed-left {
    display: none;
  }
}
.footer__fixed-left span {
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
  color: #FFEA7D;
}
.footer__fixed-center {
  text-align: center;
  position: relative;
}
.footer__fixed-center::before, .footer__fixed-center::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #fff;
}
.footer__fixed-center::before {
  left: 0;
  -webkit-transform: translateX(-12px);
          transform: translateX(-12px);
}
.footer__fixed-center::after {
  right: 0;
  -webkit-transform: translateX(12px);
          transform: translateX(12px);
}
.footer__fixed-center-upper a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__fixed-center-upper img {
  width: 42.6px;
  margin-right: -7.1px;
}
.footer__fixed-center-upper span {
  font-family: "Montserrat", sans-serif;
  font-size: 2.75em;
  font-weight: 600;
  line-height: 1.22;
  color: #fff;
}
@media (max-width: 1024px) {
  .footer__fixed-center-upper span {
    font-size: 2.4em;
  }
}
.footer__fixed-center-lower {
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.footer__fixed-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.footer__fixed-right-reserve {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.footer__fixed-right-reserve a {
  background-color: #FA6806;
  border-radius: 11.36px;
  color: #fff;
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7.84px;
  height: 100%;
  border: 2px solid #FA6806;
  padding: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .footer__fixed-right-reserve a {
    font-size: 1.5em;
    padding: 0.5rem;
  }
}
.footer__fixed-right-reserve a img {
  width: 1.775rem;
  height: 1.42rem;
}
.footer__fixed-right-reserve a img.orange {
  display: none;
}
.footer__fixed-right-reserve a:hover {
  background-color: #fff;
  color: #FA6806;
}
.footer__fixed-right-reserve a:hover img.orange {
  display: block;
}
.footer__fixed-right-reserve a:hover img.white {
  display: none;
}
.footer__fixed-right-line {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__fixed-right-line:hover {
  opacity: 0.7;
}
.footer__fixed-sp {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.footer__fixed-sp__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 3.5em;
}
.footer__fixed-sp__item {
  width: 33.3333333333%;
}
.footer__fixed-sp__item.--tel {
  background-color: #1266D4;
}
.footer__fixed-sp__item.--tel a {
  gap: 0;
}
.footer__fixed-sp__item.--reserve {
  background-color: #FA6806;
}
.footer__fixed-sp__item.--line {
  background-color: #06C755;
}
.footer__fixed-sp__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  height: 100%;
}
.footer__fixed-sp__item img {
  width: 2rem;
  height: 2rem;
}
.footer__fixed-sp__item span {
  font-size: 0.9375em;
  font-weight: bold;
  color: #fff;
}
.footer__fixed-sp__lower {
  background-color: #FFEA7D;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  padding: 0.25em;
}

.is-scrolled .footer__fixed {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.is-scrolled .footer__fixed-sp {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* gallery
======================================= */
.gallery {
  position: relative;
  z-index: 0;
}
.gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background: url(../img/common/gallery/gallery_bg.jpg) no-repeat center center/cover;
}
.gallery::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
}
.gallery__inner {
  padding: 1em 0;
}
.gallery__item {
  border-radius: 16px;
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 96px;
}
@media (max-width: 1280px) {
  .header {
    height: 64px;
  }
}
.header__inner {
  height: 100%;
}
.header__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  position: relative;
  z-index: 10;
  padding: 0.75em 1.25em;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1280px) {
  .header__container {
    padding: 0 0 0 1em;
  }
}
@media (max-width: 1440px) {
  .header__logo {
    width: 160px;
  }
}
.header__logo a {
  display: block;
  width: 100%;
}
.header__logo a:hover {
  opacity: 0.8;
}
.header__logo a img {
  height: auto;
}
.header__right {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
.header__nav {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(16px, 2.222vw, 32px);
}
.header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(12px, 1.667vw, 24px);
  height: 100%;
}
@media (max-width: 1280px) {
  .header__nav-list {
    display: none;
  }
}
.header__nav-item {
  position: relative;
  padding: 1rem 0;
}
.header__nav-item:hover > .header__nav-item-links {
  opacity: 1;
  pointer-events: all;
}
.header__nav-item:hover .header__nav-item-title a::before, .header__nav-item:hover .header__nav-item-title span::before {
  opacity: 1;
}
.header__nav-item-title {
  height: 100%;
}
.header__nav-item-title a, .header__nav-item-title span {
  height: 100%;
  font-size: clamp(12px, 1.041667vw, 15px);
  font-weight: bold;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 0.25rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header__nav-item-title a, .header__nav-item-title span {
    display: block;
  }
}
.header__nav-item-title a::before, .header__nav-item-title span::before {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  content: "";
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  width: 100%;
  height: 2px;
  background-color: #FA6806;
}
.header__nav-item-title.--sub span::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
  border-top: 3.75px solid #fa6806;
  border-bottom: 0;
}
.header__nav-item-links {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  min-width: 215px;
  padding: 0.75em 2.25em 0.75em 1.25em;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 8px rgba(66, 66, 66, 0.15);
          box-shadow: 0 0 8px rgba(66, 66, 66, 0.15);
  position: absolute;
  top: 100%;
  left: 0;
}
.header__nav-item-link a {
  font-size: 0.8125em;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 0;
  white-space: nowrap;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__nav-item-link a:hover {
  color: #FA6806;
}
.header__nav-item-link a::before {
  content: "";
  width: 1rem;
  height: 1rem;
  display: block;
  background: url(../img/common/icons/icon_circle-orange.svg) no-repeat center center/contain;
}
.header__nav-banners {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(10px, 1.3889vw, 20px);
}
.header__nav-banner {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__nav-banner:hover {
  opacity: 0.7;
}
@media (max-width: 1280px) {
  .header__nav-banner.--tel {
    display: none;
  }
}
@media (max-width: 1280px) {
  .header__nav-banner.--line img.main {
    display: none;
  }
}
.header__nav-banner.--line img.sp {
  display: none;
}
@media (max-width: 1280px) {
  .header__nav-banner.--line img.sp {
    display: block;
  }
}
.header__btn {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 10;
  width: 4rem;
  height: 4rem;
  background: #FA6806;
}
@media (max-width: 1280px) {
  .header__btn {
    display: block;
  }
}
.header__btn-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 3px;
  background-color: #fff;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__btn-bar:nth-child(1) {
  -webkit-transform: translate(-50%, calc(-50% - 7px));
          transform: translate(-50%, calc(-50% - 7px));
}
.header__btn-bar:nth-child(2) {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header__btn-bar:nth-child(3) {
  -webkit-transform: translate(-50%, calc(-50% + 7px));
          transform: translate(-50%, calc(-50% + 7px));
}
.header__menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 64px);
  overflow: scroll;
  background-color: #fff;
}
.header__menu-inner {
  padding: 0 0 2.5em;
}
.header__menu-banners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75em;
  background-color: #F8F8F8;
  padding: 1.5em 0.625em;
}
@media (max-width: 768px) {
  .header__menu-banners {
    grid-template-columns: repeat(2, 1fr);
  }
}
.header__menu-list {
  padding: 2em 1.25em;
}
.header__menu-item:first-child .header__menu-item-title > a, .header__menu-item:first-child .header__menu-item-title > span.title {
  border-top: 1px solid #dbdbdb;
}
.header__menu-item-title > a, .header__menu-item-title > span.title {
  font-size: 0.9375em;
  font-weight: 500;
  display: block;
  padding: 1.25rem 1rem;
  border-bottom: 1px solid #dbdbdb;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__menu-item-title > a:hover, .header__menu-item-title > span.title:hover {
  color: #FA6806;
}
.header__menu-item-title > a::before, .header__menu-item-title > span.title::before {
  content: "";
  background: url(../img/common/footer/icon_house-orange.svg) center center/contain;
  width: 0.625rem;
  height: 0.625rem;
  display: inline-block;
  margin-right: 1em;
}
.header__menu-item-title.--accordion {
  position: relative;
}
.header__menu-item-title.--accordion .icon {
  position: absolute;
  right: 1.25em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
}
.header__menu-item-title.--accordion .icon.is-open::after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header__menu-item-title.--accordion .icon::before, .header__menu-item-title.--accordion .icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  width: 0.75rem;
  height: 2px;
  display: block;
  background-color: #3E3F41;
  border-radius: 4px;
}
.header__menu-item-title.--accordion .icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__menu-item-list {
  display: none;
}
.header__menu-item-item > a, .header__menu-item-item > span {
  font-size: 0.9375em;
  color: #fff;
  display: block;
  background-color: #FA6806;
  padding: 1.25rem 1rem;
  border-bottom: 1px solid #dbdbdb;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__menu-item-item > a:hover, .header__menu-item-item > span:hover {
  background-color: #fff;
  color: #FA6806;
}
.header__menu-tel {
  background-color: #FA6806;
  padding: 0.75em 0;
  margin-bottom: 2em;
}
.header__menu-tel a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 0.25rem;
}
.header__menu-tel a img.icon {
  width: 3rem;
}
.header__menu-tel a img.tel {
  width: auto;
}
.header__menu-tel-text {
  font-size: 0.875em;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.header__menu-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5em;
}
.header__menu-link {
  width: 100%;
  max-width: 335px;
}

.is-open .header__menu {
  display: block;
}
.is-open .header__btn-bar {
  width: 26px;
}
.is-open .header__btn-bar:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.is-open .header__btn-bar:nth-child(2) {
  opacity: 0;
}
.is-open .header__btn-bar:nth-child(3) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.sidebar__title {
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 6px;
  border-bottom: 4px solid #dbdbdb;
  margin-bottom: 1.5rem;
}
.sidebar__title::before {
  content: "";
  background: url(../img/common/icons/icon_house-orange.svg) center center/contain;
  width: 0.625rem;
  height: 0.625rem;
  display: inline-block;
  margin-right: 0.5rem;
}
.sidebar__categories-item {
  margin-bottom: 3.5em;
}
.sidebar__categories-item-list {
  padding: 0 1rem;
}
.sidebar__categories-item-item:nth-child(n+2) {
  margin-top: 1.5rem;
}
.sidebar__categories-item-item a {
  font-size: 0.875em;
  font-weight: 600;
  line-height: 1.4479;
}
.sidebar__categories-item-item a:hover {
  color: #FA6806;
}
.sidebar__articles {
  margin-bottom: 3.5em;
}
.sidebar__articles-item:nth-child(n+2) {
  margin-top: 1.5rem;
}
.sidebar__articles-item a:hover .sidebar__articles-item-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.sidebar__articles-item a:hover .sidebar__articles-item-title {
  color: #FA6806;
}
.sidebar__articles-item-num {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.sidebar__articles-item-num.--01 {
  background: -webkit-gradient(linear, left top, left bottom, from(#C18922), color-stop(#F3C15B), to(#C18922));
  background: -webkit-linear-gradient(top, #C18922, #F3C15B, #C18922);
  background: linear-gradient(to bottom, #C18922, #F3C15B, #C18922);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sidebar__articles-item-num.--02 {
  background: -webkit-gradient(linear, left top, left bottom, from(#9B9791), color-stop(#9B9791), to(#9B9791));
  background: -webkit-linear-gradient(top, #9B9791, #9B9791, #9B9791);
  background: linear-gradient(to bottom, #9B9791, #9B9791, #9B9791);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sidebar__articles-item-num.--03 {
  background: -webkit-gradient(linear, left top, left bottom, from(#F68956), color-stop(#F2A683), to(#F68956));
  background: -webkit-linear-gradient(top, #F68956, #F2A683, #F68956);
  background: linear-gradient(to bottom, #F68956, #F2A683, #F68956);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sidebar__articles-item-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.sidebar__articles-item-image {
  width: 31%;
  position: relative;
  overflow: hidden;
}
.sidebar__articles-item-image::before {
  content: "";
  display: block;
  padding-top: 59.239%;
}
.sidebar__articles-item-image img, .sidebar__articles-item-image video, .sidebar__articles-item-image iframe, .sidebar__articles-item-image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sidebar__articles-item-image img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sidebar__articles-item-contents {
  width: 69%;
  padding: 0 1rem;
}
.sidebar__articles-item-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.sidebar__articles-item-info-date {
  font-family: "Roboto", sans-serif;
  font-size: 0.875em;
  color: #787878;
  font-weight: 400;
}
.sidebar__articles-item-info-cats {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.sidebar__articles-item-info-cat {
  font-size: 0.875em;
  color: #F68956;
  background-color: #FFEFE7;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  border: 1px solid #F68956;
  line-height: 1;
}
.sidebar__articles-item-title {
  font-size: 0.9375em;
  line-height: 1.4;
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sidebar__line a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sidebar__line a:hover {
  opacity: 0.7;
}

/* btn 
========================================= */
.btn {
  position: relative;
  height: 100%;
  margin: auto;
}
.btn a, .btn input {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 32px;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.btn__orange a, .btn__orange input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625em;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  background-color: #FA6806;
  border: 2px solid #3E3F41;
  border-radius: 50px;
  padding: 0.75rem 1rem 0.75rem 2rem;
  position: relative;
  z-index: 0;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn__orange a::after, .btn__orange input::after {
  content: "";
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: url(../img/common/icons/icon_circle-white-orange.svg) no-repeat center center/contain;
}
.btn__orange a:hover, .btn__orange input:hover {
  opacity: 0.7;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn__green a, .btn__green input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625em;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  background-color: #06C755;
  border: 2px solid #3E3F41;
  border-radius: 50px;
  padding: 0.75rem 1rem 0.75rem 2rem;
  position: relative;
  z-index: 0;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn__green a::after, .btn__green input::after {
  content: "";
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: url(../img/common/icons/icon_circle-white-green.svg) no-repeat center center/contain;
}
.btn__green a:hover, .btn__green input:hover {
  opacity: 0.7;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn__white a, .btn__white > span, .btn__white input {
  font-size: 0.9375em;
  font-weight: 700;
  line-height: 1;
  padding: 0.75rem 1rem 0.75rem 2rem;
  border: 2px solid #FA6806;
  background-color: #fff;
}
@media (max-width: 768px) {
  .btn__white a, .btn__white > span, .btn__white input {
    font-size: 0.875em;
  }
}
.btn__white a::after, .btn__white > span::after, .btn__white input::after {
  content: "";
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: url(../img/common/icons/icon_circle-orange.svg) no-repeat center center/contain;
}
.btn__white a:hover, .btn__white > span:hover, .btn__white input:hover {
  color: #fff;
  background-color: #FA6806;
}
.btn__white a:hover::after, .btn__white > span:hover::after, .btn__white input:hover::after {
  background: url(../img/common/icons/icon_circle-white-orange.svg) no-repeat center center/contain;
}
.btn__white.--blue a, .btn__white.--blue input {
  border: 2px solid #008DE0;
}
.btn__white.--blue a::after, .btn__white.--blue input::after {
  background: url(../img/common/icons/icon_circle-skyblue.svg) no-repeat center center/contain;
}
.btn__white.--blue a:hover, .btn__white.--blue input:hover {
  background-color: #008DE0;
}
.btn__white.--blue a:hover::after, .btn__white.--blue input:hover::after {
  background: url(../img/common/icons/icon_circle-white-blue.svg) no-repeat center center/contain;
}

/* category-list
========================================= */
.category-list {
  min-width: 320px;
  display: inline-block;
  border: 2px solid #888888;
  margin-bottom: 4em;
  position: relative;
  cursor: pointer;
}
@media (max-width: 768px) {
  .category-list {
    margin-bottom: 2em;
  }
}
.category-list::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 1.5em;
  right: 2em;
  border-right: 4px solid #3E3F41;
  border-bottom: 4px solid #3E3F41;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .category-list::after {
    width: 0.75rem;
    height: 0.75rem;
    border-right: 3px solid #3E3F41;
    border-bottom: 3px solid #3E3F41;
  }
}
.category-list.is-open .category-item {
  pointer-events: inherit;
}
.category-list.is-open .category-item.is-active a {
  background-color: #F0F0F0;
}
.category-list.is-open .category-item.is-active a::after {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 2rem;
  height: 2rem;
  display: block;
  background: url(../img/common/icons/icon_check-blue.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .category-list.is-open .category-item.is-active a::after {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.category-list.is-open .category-item:first-child.is-active a::after {
  display: none;
}
.category-list.is-open::after {
  -webkit-transform: translateY(0.25rem) rotate(225deg);
          transform: translateY(0.25rem) rotate(225deg);
}
.category-item {
  display: none;
  pointer-events: none;
}
.category-item a {
  font-size: 1.5em;
  font-weight: bold;
  display: block;
  border: 1px solid #888888;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 1rem 5.5rem 1rem 2rem;
  position: relative;
}
@media (max-width: 768px) {
  .category-item a {
    font-size: 1.25em;
  }
}
.category-item a:hover {
  background-color: #F0F0F0;
}
.category-item.is-active {
  display: block;
}

/* TOP FV
========================================= */
.fv-swiper {
  overflow: visible !important;
  margin-left: 0 !important;
}
.fv-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

/* TOP CASES
========================================= */
.cases-swiper .swiper-button-prev, .cases-swiper .swiper-button-next {
  width: 3em;
  height: 3em;
  top: inherit;
  bottom: 0;
  background-color: #3E3F41;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 11;
}
.cases-swiper .swiper-button-prev::after, .cases-swiper .swiper-button-next::after {
  display: none;
}
.cases-swiper .swiper-button-prev::before, .cases-swiper .swiper-button-next::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(../img/common/icons/icon_arrow-white.svg) no-repeat center center/contain;
}
.cases-swiper .swiper-button-prev:hover, .cases-swiper .swiper-button-next:hover {
  background-color: #1266D4;
}
.cases-swiper .swiper-button-prev {
  left: 50%;
  -webkit-transform: translateX(-132px);
          transform: translateX(-132px);
}
.cases-swiper .swiper-button-prev::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.cases-swiper .swiper-button-next {
  right: 50%;
  -webkit-transform: translateX(132px);
          transform: translateX(132px);
}
.cases-swiper .swiper-pagination-bullet {
  margin: 0 6px !important;
}
.cases-swiper .swiper-pagination-bullet-active {
  background-color: #FA6806;
}

/* COMMON GALLERY
========================================= */
.gallery-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

/* COMPANY HISTORY
========================================= */
.history-swiper {
  overflow: visible !important;
}
.history-swiper .swiper-wrapper {
  overflow: visible !important;
  padding-bottom: 5.625em;
}
.history-swiper .swiper-button-prev, .history-swiper .swiper-button-next {
  width: 3.5em;
  height: 3.5em;
  top: inherit;
  bottom: 0;
  background-color: #3E3F41;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 11;
}
.history-swiper .swiper-button-prev::after, .history-swiper .swiper-button-next::after {
  display: none;
}
.history-swiper .swiper-button-prev::before, .history-swiper .swiper-button-next::before {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background: url(../img/common/icons/icon_arrow-white.svg) no-repeat center center/contain;
}
.history-swiper .swiper-button-prev:hover, .history-swiper .swiper-button-next:hover {
  background-color: #1266D4;
}
.history-swiper .swiper-button-prev {
  left: inherit;
  right: 5em;
}
.history-swiper .swiper-button-prev::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.history-swiper .swiper-button-next {
  right: 0;
}

/* tab
========================================= */
.tab, .tab3, .all, .all3 {
  cursor: pointer;
}
.panel, .panel2, .panel3 {
  display: none;
}
.panel.is-active, .panel2.is-active, .panel3.is-active {
  display: block;
}

.page__contents h2, .page__contents h3, .page__contents h4 h5, .page__contents h6 {
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  line-height: 1.7857;
  margin-top: 1.725em;
}
.page__contents p {
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  line-height: 1.7857;
  margin-bottom: 1em;
}
.page__contents ol li, .page__contents ul li {
  line-height: 1.625;
}
.page__contents ol {
  padding-left: 1.5rem;
}
.page__contents ol li {
  list-style: auto;
}
.page__contents ol li::marker {
  font-weight: bold;
}
.page__contents ul li {
  padding-left: 1.5rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page__contents ul li::before {
  content: "●";
  position: absolute;
  left: 0.7em;
  top: 0.5em;
  font-size: 0.55em;
  display: block;
}
.page__contents img, .page__contents video {
  display: block;
  margin: 1em auto;
}
.page__contents img.alignleft, .page__contents video.alignleft {
  float: left;
}
.page__contents img.aligncenter, .page__contents video.aligncenter {
  margin: 20px auto;
}
.page__contents img.alignright, .page__contents video.alignright {
  float: right;
}
@media (max-width: 768px) {
  .page__contents .wp-block-columns.is-layout-flex {
    gap: 0;
  }
  .page__contents .wp-block-columns.is-layout-flex img {
    margin: 0;
  }
}
.page__contents figure {
  margin: 0 auto 2em;
}
@media (max-width: 1024px) {
  .page__contents figure.size-full {
    width: 100%;
  }
}
.page__contents figure figcaption {
  font-size: 0.5em;
  line-height: 2;
}
.page__contents .is-type-video, .page__contents .is-type-rich {
  margin: 60px auto;
}
.page__contents .is-type-video .wp-block-embed__wrapper, .page__contents .is-type-rich .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  text-align: center;
}
.page__contents .is-type-video .wp-block-embed__wrapper iframe, .page__contents .is-type-rich .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page__contents .wp-block-media-text {
  -webkit-column-gap: 2%;
     -moz-column-gap: 2%;
          column-gap: 2%;
}
.page__contents .wp-block-media-text__content {
  padding: 0 !important;
}
.page__contents .wp-block-media-text__content p {
  margin-bottom: 1em;
}
.page__contents .wp-block-media-text__content img {
  margin: 0;
}
.page__contents cite {
  font-size: 0.8em;
  font-style: normal;
  display: block;
  background-color: #F8F8F8;
  padding: 2em 3.5em;
  margin-bottom: 2em;
  position: relative;
}
.page__contents a {
  color: #FA6806;
}
.page__contents a:hover {
  color: #777777;
  text-decoration: underline;
}