@charset "UTF-8";
/*   

https://hama-ro.co.jp/

2025/06/25


*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');
/* WP -------------------------- */
body.admin-bar .p-page-visual, body.admin-bar .p-page-sub-visual {
  top: 62px; /* PC時。スマホはメディアクエリで調整 */
}

@media screen and (max-width: 782px) {
  body.admin-bar .p-page-visual, body.admin-bar .p-page-sub-visual {
    top: 14px;
  }
}
/* BASE -------------------------- */
html {
  background-color: #fff;
  font-size: 62.5%;
  scroll-behavior: auto;
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: var(--main-color);
  overflow-x: hidden;
}
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}

:root {
  --main-color: #222;
  --blue-color: #0066cc;
  --gray-color: #666;
  --light-gray-color: #999;
  --font-base: 16px;
}


/* ================== TOP PAGE LOADING ================== */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 0; 
  height: 100%;
  background-color: var(--blue-color); 
  z-index: 10000;
  transition: width 1.2s cubic-bezier(0.85, 0, 0.15, 1), transform 0.8s ease-out;
}
.loading-overlay.loaded {
  width: 100%;
}
.loading-overlay.hidden {
  transform: translateX(100%);
  transition: transform 0.8s ease-in-out;
}

/* ================== LOGO LOADING ================== */
.logo-icon,.logo-icon2 {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  z-index: 10000; 
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.logo-icon.visible, .logo-icon2.visible {
  opacity: 1;
}
.logo-icon.hidden, .logo-icon2.hidden {
  opacity: 0;
  display: none;
}
/* ================== TOP PAGE CONTENT ================== */
.p-main-visual,
.l-header {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.p-main-visual.visible,
.l-header.visible {
  opacity: 1;
}
/* ================== SUB PAGE LOADING ================== */
.loading-screen {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}
.logo-icon2 {
  transition: opacity 1s ease;
}
/* ================== SUB PAGE CONTENT ================== */
#container {
  opacity: 0;
  transition: opacity 1s ease;
}
#container.show {
  opacity: 1;
}


/* HEADER -------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 1000;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  background: linear-gradient(rgba(76, 118, 213, .6), rgba(76, 118, 213, 0));
  overflow: hidden;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 4.16% 0;
}
.c-logo {
  width: 280px;
  height: 35px;
  transition: all .3s ease-out;
}
.c-image img {
  width: 100%;
  height: auto;
  transition: all .3s ease-out;
}
.l-header .c-logo a {
  transition: all 0.4s ease;
}
.l-header .c-logo a:hover {
  opacity: .7;
  transition: all 0.4s ease;
}

.l-header {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.l-header.visible {
  opacity: 1;
}

/* G-NAVI */
.c-nav {
  display: flex;
  flex-direction: column
}
.c-subnav__list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  color: var(--main-color);
  margin-top: 10px; 
}
.c-subnav__list li {
  font-size: 1.3rem;
  margin: 0 10px;
}
.c-subnav__item a {
  color: #FFF;
  font-weight: 500;
  transition: .4s;
}
.c-subnav__item a:hover {
  color: var(--blue-color);
  ransition: all 0.4s ease;
}
.c-subnav__button {
  display: flex !important;
  justify-content: center;
  align-items: center;
  background: var(--blue-color);
  border: 2px solid var(--blue-color);
  border-radius: 60px;
  width: 126px;
  height: 36px;
  padding: 15px 0;
  text-align: center;
}
.slide, .reslide {
  background: var(--blue-color);
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.slide::after, .reslide::after {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.slide:hover {
  color: var(--blue-color)!important;
}
.slide:hover::after, .reslide:hover::after {
  transform: scale(1, 1);
}
.reslide {
  background: #fff;
  color: var(--blue-color);
}
.reslide::after {
  background: var(--blue-color);
}
.reslide:hover {
  color: #fff!important;
}


.c-nav__list {
  position: sticky;
  top: 0;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  z-index: 999;
  padding: 10px 0 10px;
}
.c-nav__item {
  overflow: hidden;
  color: transparent;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  text-shadow: 0 1.5em 0 #fff, 0 0 0 #fff;
  transition: text-shadow 0.3s;
  cursor: pointer;
  padding: 0 5px;
}
.c-nav__item:hover {
  text-shadow: 0 0 0 var(--blue-color), 0 -1.5em 0 var(--blue-color);
}
.c-nav__item a {
  padding: 0 5px;
}
.c-nav-down::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  line-height: 2;
  width: .4em;
  height: .4em;
  border: 2px solid #fff;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  margin: 0 0 2px 7px;
}
.scrolled-header .c-nav-down::after {
  border: 2px solid var(--main-color);
  border-left: 0;
  border-bottom: 0;
}
.c-meganav__list {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 1);
  border-radius: 10px;
  color: var(--main-color);
  margin: 5px 4.16%;
  padding: 3px 14px 34px 40px;
  z-index: 2;
  text-align: left;
  transition: all 0.4s ease;
  justify-content: space-between;
  transform: translateY(30px);
  box-shadow: 0px 3px 12px rgba(5, 102, 204, 0.2);
}
.c-meganav__list.is-meganav-open {
  visibility:visible;
  opacity: 1;
  display: flex!important;
  flex-direction: column;
  transform: translateY(0);
}
.c-meganav__list.meganav-minimum {
  top: 60px;
}
.c-meganav__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-right: 30px;
}
.c-meganav__item-main {
  width: 18%;
  font-size: 2.4rem;
  font-weight: 600;
  padding-top: 20px;
}
.c-meganav__item-main a {
  display: flex;
  justify-content: space-between;
  color: var(--blue-color);
}

.c-meganav__item-main .c-icon {
  margin-right: 10px;
}
.c-meganav__item-main a:hover .c-icon {
  margin-right: 0;
}

.c-meganav__item-submenu {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  width: 76%;
  gap: 8%;
}
.c-meganav__item {
  width: 28%;
  margin: 0;
}
.c-meganav__item a {
  padding: 24px 0;
  color: var(--blue-color);
}
 .c-meganav__item-main a:hover .c-icon {
  border: solid 1px var(--blue-color);
  background: var(--blue-color)!important;
}
 .c-meganav__item-main a:hover .c-icon::after {
  content: '';
  background: url("../img/arrow-right.svg") center center / contain no-repeat;
  transition: all .3s ease-out;
}
.c-meganav__item a:hover, .c-meganav__item-main a:hover {
  color: #0090ff;
}
.link-border {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .3s ease-out;
}
.link-border .c-icon {
  margin-right: 10px;
}
.link-border::before {  
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: #dbdbdb;
  z-index: 1;
}
.link-border::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--blue-color);
  transform-origin: left top;
  transform: scaleX(0);
  z-index: 2;
  transition: all .3s ease-out;
}
.link-border:hover {
  color: var(--blue-color);
  transition: all .3s ease-out;
}
.link-border:hover::after {
  transform: scaleX(1);
}
.link-border:hover.link-border .c-icon::after {
  content: '';
  background: url("../img/arrow-right.svg") center center / contain no-repeat;
  transition: all .3s ease-out;
}
.link-border:hover.link-border .c-icon {
  margin-right: 0;
  border: solid 1px var(--blue-color);
  background: var(--blue-color)!important;
  transition: all .3s ease-out;
}

.c-meganav__close {
  display: block;
  text-align: right;
  width: 100%;
  cursor: pointer;
}
.ico-close {
  display: inline-block;
  vertical-align: middle;
  color: var(--main-color);
  ine-height: 1;
  width: 1em;
  height: 0.1em;
  background: currentColor;
  order-radius: 0.1em;
  position: relative;
  transform: rotate(45deg);
}
.ico-close::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}


/* MINIMUM HEADER */
.l-header.scrolled-header {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(0);
  opacity: 1;
  height: 60px;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out, background 0.4s ease-in-out;
  box-shadow: 0px 3px 12px rgba(5, 102, 204, 0.2);
}
.scrolled-header .header-container{
  align-items: center;
  margin: 0 4.16% 0;
  height: 100%;
}
.scrolled-header .c-subnav__list {
  margin-top: 0;
}
.scrolled-header .c-nav__item  {
  font-size: 1.4rem;
  overflow: hidden;
  color: transparent;
  text-shadow: 0 1.5em 0 var(--main-color), 0 0 0 var(--main-color);
  transition: text-shadow 0.3s;
}
.scrolled-header .c-nav__item:hover {
  text-shadow: 0 0 0 var(--blue-color), 0 -1.5em 0 var(--blue-color); 
}
.scrolled-header .c-logo {
  width: 220px;
  height: auto;
}
.scrolled-header .c-nav {
  flex-direction: row-reverse;
}
.scrolled-header .c-subnav__button {
  width: 114px;
  height: 30px;
}
.scrolled-header .c-subnav__item a {
  color: var(--gray-color);
  margin-left: 10px;
}
.scrolled-header .c-subnav__item a:hover {
  color: var(--blue-color);
}
.scrolled-header .c-nav__list {
  gap: 8px;
}



/* TOP -------------------------- */
/* MAIN VISUAL SLIDER */
.p-main-visual {
  position: relative;
  height: 100vh;
}
.p-main-visual__slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100%;
  overflow: hidden;
}
.p-main-visual__image {
  position: absolute;
  width: 100%;
  height: 100vh;
}
.p-main-visual__slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-main-visual__content {
  position: absolute;
  bottom: 10%;
  left: 6.666%;
  max-width: 100%;
  z-index: 1;
}
.p-main-visual__title {
  font-size: 4.6rem;
  line-height: 6.7rem;
  color: #fff;
}

/* SLIDE ZOOM */
@keyframes zoom {
  0% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
.zoom-out {
  animation: zoom 7s linear 0s normal both;
}


/* TOP SECTION BASE */
.corners {
  border-radius: 10px;
  overflow: hidden;
}
.l-container {
  margin: 60px auto;
  width: 80.5%;
  min-width: 1160px;
  max-width: 1600px;
}
.c-section-title {
  text-align: left;
}
.l-container p a {
  color: var(--blue-color);
  text-decoration: underline;
}
.l-container p a:hover {
  color: #0090ff;
  text-decoration: none;
}
.c-section-title-en {
  color: var(--blue-color);
  font-family: "Montserrat", sans-serif;
  font-size: 5.8rem;
  line-height: 6.3rem;
  font-weight: 700;
  letter-spacing: .2rem;
}
.c-section-title-jp {
  color: var(--main-color);
  font-size: 2.2rem;
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 30px;
  letter-spacing: .1rem;
}
.c-read {
  font-size: 1.8rem;
  line-height: 3.4rem;
  font-weight: 500;
}

.c-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 300px;
  height: 70px;
  border-radius: 10px;
  padding: 20px;
  letter-spacing: .1rem;
  background: var(--blue-color);
  color: #FFF!important;
  text-decoration: none!important;
  border: 2px solid var(--blue-color);
}
.c-button-icon {
  display: inline-block;
  background: url("../img/arrow-right.svg") center center / 18px 18px no-repeat;
  width: 18px;
  height: 18px;
}

.c-button.slide:hover .c-button-icon {
  background: url("../img/arrow-right-blue.svg") center center / 18px 18px no-repeat;
}
.c-icon.c-button-icon {
  background: url("../img/arrow-right-blue.svg") center center / 18px 18px no-repeat;
}
.c-button-text {
  font-size: 1.8rem;
}
.c-button-text {
  display: flex;
  color: #fff;
  margin-top: 50px;
}
.c-button-text span:hover {
  opacity: .7;
  transition: all .3s ease;
}
.c-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #fff !important;
  vertical-align: middle;
  margin-left: 10px;
  border: 1px solid #ccc;
  transition: all .3s ease;
}
.c-icon::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url("../img/arrow-right-blue.svg") center center / contain no-repeat;
  transition: all .3s;
}

/*一覧ボタン*/

.c-list-button .c-button  {
  background: #fff;
  color: var(--main-color)!important;
  border: 1px solid #ccc;
  margin: 60px auto;
  text-decoration: none;
}
.c-list-button .c-button:hover {
  color: #fff!important;
}
.c-list-button .c-icon {
  background-color: var(--blue-color) !important;
  border: 1px solid var(--blue-color);
}
.c-list-button .c-icon::after {
  background: url("../img/arrow-right.svg") center center / contain no-repeat;
}
.c-list-button:hover .c-icon {
  background-color: #fff !important;
  border: 1px solid #fff;
}
.c-list-button:hover .c-icon::after {
  background: url("../img/arrow-right-blue.svg") center center / contain no-repeat;
}
.c-list-button .c-button:hover .c-icon {
   transform: translate(10px, 0);
}
sub {
    font-size: 1.2rem;
}
.fade {
  transform: translateY(50px);
  transition: all 1s ease-in-out;
  opacity: 0;
}
.fade.is-move {
  transform: translateY(0);
  opacity: 1;
}
.fade.is-move:nth-of-type(1) { transition-delay: 0s; }
.fade.is-move:nth-of-type(2) { transition-delay: 0.1s; }
.fade.is-move:nth-of-type(3) { transition-delay: 0.2s; }
.fade.is-move:nth-of-type(4) { transition-delay: 0.3s; }
.fade.is-move:nth-of-type(5) { transition-delay: 0.4s; }
.fade.is-move:nth-of-type(6) { transition-delay: 0.5s; }
.fade.is-move:nth-of-type(7) { transition-delay: 0.6s; }
.fade.is-move:nth-of-type(8) { transition-delay: 0.7s; }
.fade.is-move:nth-of-type(9) { transition-delay: 0.8s; }
.fade.is-move:nth-of-type(10) { transition-delay: 0.9s;}
.fade.is-move:nth-of-type(11) { transition-delay: 1.0s; }
.fade.is-move:nth-of-type(12) { transition-delay: 1.1s; }
.fade.is-move:nth-of-type(13) { transition-delay: 1.2s; }
.fade.is-move:nth-of-type(14) { transition-delay: 1.3s; }
.fade.is-move:nth-of-type(15) { transition-delay: 1.4s; }
.fade.is-move:nth-of-type(16) { transition-delay: 1.5s; }
.fade.is-move:nth-of-type(17) { transition-delay: 1.6s; }
.fade.is-move:nth-of-type(18) { transition-delay: 1.7s; }
.fade.is-move:nth-of-type(19) { transition-delay: 1.8s; }
.fade.is-move:nth-of-type(20) { transition-delay: 1.9s; }


/* TOP ABOUT */
.p-about .l-container {
  height: 560px;
  display: flex;
  justify-content: space-between;
}
.p-about {
  position: relative;
  padding: 20px 0 20px;
  overflow-x: hidden;
}
.p-about-left {
  position: relative;
  width: 35%;
}
.p-about__image-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 270px;
  height: auto;
  z-index: -1;
}
.p-about .c-section-title {
  position: inherit;
  margin: 30px 0 0;
  z-index: 2;
}
.p-about .c-read {
  position: inherit;
  z-index: 2;
}
.p-about__text {
  margin-bottom: 80px;
}
.p-about-right {
  position: relative;
  width: 65%;
}
.p-about__image {
  position: absolute;
  top: 40px;
  right: -20%;
  width: 100%;
  object-fit: cover;
}
.top-about__image-list {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
}

/* -- TOP WORKS -- */
.p-works {
  background: #dbf1ff;
  padding: 30px 0 60px;
}
.p-works__text {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.p-works__list {
  display: flex;
  justify-content: space-between;
  margin: 50px auto;
}
.p-works__item {
  width: 31%;
}

/* -- IMAGE ZOOM -- */
.item-zoom {
  position: relative;
  overflow: hidden;
  transition: all .3s ease-out;
}
.item-image, .item-image2 {
  width: 100%;
  overflow: hidden;
  transition: all .3s ease;
}
.item-image img, .item-image2 img {
  width: 100%;
  height: auto;
  transition: all .3s ease-out;
}
.item-image:after, .item-image2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 50%;
  transform: translate(-50%, 0);
}
.item-zoom:hover .item-image, .item-zoom:hover .item-image2 img  {
  transform: scale(1.08);
  transition: all .3s ease-out;
  overflow: hidden; 
}
.item-zoom:hover .c-icon {
  transform: translate(10px, 0);
  transition: all .3s ease-out;
  border: solid 1px var(--blue-color);
  background-color: var(--blue-color) !important;
}
.item-zoom:hover .c-icon::after {
  content: '';
  background: url("../img/arrow-right.svg") center center / contain no-repeat;
}


.p-works-text {
  position: absolute;
  text-align: left;
  color: #fff;
  bottom: 0;
  padding: 50px 30px 30px 30px;
  letter-spacing: .1rem;
  background: linear-gradient(to bottom, rgba(19, 96, 173, 0), rgba(19, 96, 173, .8));
  border-radius: 0 0 10px 10px;
}
.p-works-title {
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  line-height: 3.4rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.p-works-read {
  font-size: 1.7rem;
}

/* -- TOP COMPANY -- */
.p-top-company {
  position: relative;
  height: 520px;
}
.p-top-company__image {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.p-top-company img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.p-top-company .l-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 76%;
}
.p-top-company .c-section-title {
  width: 50%;
  padding: 30px 0;
  color: #fff;
  display: inline-block;
}
.p-top-company .c-section-title-en {
  color: #fff;
  font-size: 4.6rem;
}
 .p-top-company .c-section-title-jp {
  color: #fff;
}
.p-top-company__item {
  background: #fff;
}
.c-button-text:hover .c-icon {
  transform: translate(10px, 0);
  transition: all .2s ease-out;
  border: solid 1px var(--blue-color);
  background-color: var(--blue-color) !important;
}
.c-button-text:hover .c-icon::after {
  content: '';
  background: url("../img/arrow-right.svg") center center / contain no-repeat;
}
.p-top-company__list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 49%;
  gap: 10px;
}
.p-top-company__item {
  display: flex;
  width: 48%;
}
.p-top-company__item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 110px;
  padding: 20px 20px 20px 28px;
  color: var(--blue-color);
}
.p-top-company__item.slide {
  background: #fff;
  color: var(--blue-color);
}
.p-top-company__item.slide::after {
  background: var(--blue-color);
}
.p-top-company__item.slide {
  background: #fff;
  color: var(--blue-color);
}
.p-top-company__item.slide a:hover {
  color: #fff;
}


/* -- TOP CASE STUDIES -- */
.p-case-studies {
  padding: 30px 0 30px;
}
.p-case-studies .l-container {
  width: 100%;
  max-width: 100%;
}
.p-case__text {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 80.5%;
  min-width: 1160px;
  max-width: 1600px;
  margin: 0 auto 60px;
}
.p-case-studies .c-section-title-en {
  font-size: 4.8rem;
}


.p-case__item {
  display: flex;
  flex-direction: column;
  width: 21.94%;
  flex-grow: 1;
}
.p-case__image {
  width: 100%;
  overflow: hidden;
}
.p-case__image img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  transition: all .3s ease-in;
}

.p-case__image:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 50%;
  transform: translate(-50%, 0);
}
.p-case__item:hover .p-case__image img {
  transform: scale(1.09);
  transition: all .3s ease-out;
}




.p-case__detail { 
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 10px;
  padding: 0 5%;
}
.p-case__detail-title {
  font-size: 1.6rem;
  line-height: 2.8rem;
  font-weight: 600;
  margin-bottom: 10px;  
}
.p-case__item:hover .p-case__detail-title {
  color: var(--blue-color);
}
.p-case__date {
  font-size: 1.2rem;
  color: var(--light-gray-color);
  margin-top: auto;
  margin-bottom: 10px;
}
.p-case__category {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.8rem;
  color: var(--light-gray-color);
  padding: 4px 10px;
  border: solid 1px #ccc;
  border-radius: 20px;
  flex-grow: 1; 
}
.p-case__detail .p-case__category > * {
  flex-shrink: 0; 
}


/* slide arrow*/
.c-slide-arrow .slick-dots {
  display: flex;
  justify-content: center;
  padding: 50px 0 40px;
  bottom: inherit;
  width: 74%;
  max-width: 1600px;
  left: 0;
  right: 10%;
  margin: auto;
}
.c-slide-arrow .slick-dots li {
  width: 100%;
  height: 3px;
  margin: 0 auto;
  transition: all .3s ease-out;
}
.c-slide-arrow .slick-dots li button {
  width: 100%;
  height: 3px;
  padding: 1px;
  transition: all .3s ease-out;
}
.c-slide-arrow .slick-dots li button:before {
  content: '';
  line-height: 0;
  width: 100%;
  height: 3px;
  background: var(--gray-color);
  transition: all .3s ease-out;
}
.c-slide-arrow .slick-dots li.slick-active button:before {
  opacity: .75;
}
.c-slide-arrow .slick-prev:before, .c-slide-arrow .slick-next:before {
  content: '';
}
.c-slide-arrow .slick-prev {
  right: 12%;
  left: inherit;
  bottom: -60px;
}
.c-slide-arrow .slick-next {
  right: 8%;
  margin: 20px 0;
}
.slick-prev, .slick-next {
  top: auto;
  width: 40px;
  height: 40px;
  padding: 0;
  -webkit-transform: inherit;
  -ms-transform: inherit;
  transform: inherit;
  display: flex !important;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.c-slide-arrow .slick-prev .c-icon::after {
  transform: scale(-1, 1);
}
.c-slide-arrow .slick-prev .c-icon, .c-slide-arrow .slick-next .c-icon {
  width: 40px;
  height: 40px;
  margin: 0;
}
.c-slide-arrow .slick-prev:hover .c-icon, .c-slide-arrow .slick-next:hover .c-icon {
  transition: all .2s ease-out;
  border: solid 1px var(--blue-color);
  background-color: var(--blue-color) !important;
}
.c-slide-arrow .slick-prev:hover .c-icon::after, .c-slide-arrow .slick-next:hover .c-icon::after {
  content: '';
  background: url("../img/arrow-right.svg") center center / contain no-repeat;
}

.p-space-image { 
  width: 100%;
  min-height: 380px;
  padding: 60px 0;
}
.p-space-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}


/* -- TOP NEWS -- */
.p-news .l-container {
  margin: 20px auto 100px;
  display: flex;
  justify-content: space-around;
  padding:  0 2.58%;
}
.p-news__text {
  width: 25%;
  padding-top: 30px;
}
.p-news .c-section-title-en {
  font-size: 4.0rem;
}
.p-news .c-button-text {
  color: var(--blue-color);
  font-size: 1.6rem;
}
.p-news__text a {
  transition: all .4s ease-out;
}
.c-button-text:hover .c-icon {
  opacity: 1;
}
.p-news__list {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  width: 75%;
}
.p-news__item {
  width: 100%;
}
.p-news__item a {
  width: 100%;
  padding: 28px 0;
  color: var(--main-color);
  transition: all .4s ease-out;
}
.p-news__detail {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 18px;
}
.p-news__timeline { 
  font-size: 1.4rem;
  color: var(--gray-color);
}
.p-news__category {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1.6rem;
  color: var(--gray-color);
  width: 86px;
  padding: 5px;
  border-radius: 18px;
  background: #ededed;
}
.p-news__list-title {
  font-size: 1.6rem;
  line-height: 2.8rem;
  font-weight: 400;
}


/* -- TOP RECRUIT -- */
.p-recruit {
  background: linear-gradient(180deg, var(--blue-color) 0%, var(--blue-color) 70%, #fff 30%, #fff 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 30px 0;
}
.p-recruit__text {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #fff;
  margin-bottom: 40px;
}
.p-recruit .c-section-title-en, .p-recruit .c-section-title-jp {
  color: #fff;
}
.p-interview__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -3.27%;
  transition: all .3s ease-in;
}
.p-recruit .slick-track {
  display: flex!important;
  justify-content: space-between;
  gap: 3.27%;
}
.p-interview__item {
  width: 22.06%;
}
.p-interview__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 10px;
  transition: all .3s ease-out;
}
.interview__image:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 50%;
  transform: translate(-50%, 0);
}
.p-interview__item:hover .p-interview__image img {
  transform: scale(1.08);
  transition: all .3s ease-out;
}
.p-interview__detail { 
  padding: 0 4%;
}
.p-interview__detail-title {
  font-size: 1.5rem;
  line-height: 2.4rem;
  font-weight: 400;
  color: var(--main-color);
  margin: 20px 0 10px;
  text-wrap: auto;
}
.p-interview__item:hover .p-interview__detail-title {
  color: var(--blue-color);
}
.p-interview__group {
  font-size: 1.3rem;
  color: var(--light-gray-color);
  margin-top: 10px;
}
.p-interview__button {
  display: flex;
  justify-content: space-around;
  gap: 60px;
}
.p-interview__button:hover .c-icon, .p-interview__button .c-icon {
  border: solid 1px #fff;
}
.p-interview__list .slick-list {
  margin: auto;
}

/* -- TOP CONTACT -- */
.p-contact {
  margin: 60px auto;
}
.p-contact__text {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 68.05%;
  min-width: 980px;
  max-width: 1600px;
  margin: auto;
  z-index: 1;
}
.p-contact .c-section-title-en {
  font-size: 4.8rem;
  line-height: 5.3rem;
  color: #fff;
}
.p-contact .c-section-title-jp {
  font-size: 1.8rem;
  color: #fff;
}
.p-contact .c-read {
  color: #fff;
}
.p-contact__container {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-contact__item { 
  width: 25%;
  height: auto;
  background-size: cover;
}
.p-contact .c-button {
  background: #fff;
  color: var(--blue-color);
  border: solid 2px #fff;
}
.p-contact .c-button-icon {
  background: url("../img/arrow-right-blue.svg") center center / 18px 18px no-repeat;
}
.p-contact .c-button.slide:hover .c-button-icon {
  background: url("../img/arrow-right.svg") center center / 18px 18px no-repeat;
}
.p-contact .slide {
  background: #fff;
  color: var(--blue-color)!important;
}
.p-contact .slide::after {
  background: var(--blue-color);
}
.p-contact .slide:hover {
  color: #fff!important;
  border: solid 2px var(--blue-color);
  border-radius: 9px;
}

/* -- BANNER -- */
.p-banner .l-container {
  margin: 80px auto;
}
.p-banner__list {
  display: flex;
  justify-content: space-between;
}
.p-banner__item {
  width: 48.27%;
  transition: all .3s ease-out;
}
.p-banner__item a:hover {
  opacity: .7;
  transition: all .3s ease-out;
}

/* -- FOOTER -- */
.l-footer .l-container {
  margin: 60px auto 20px!important;
  border-top: solid 1px #ddd;
  padding: 30px 4% 0;
}
.l-footer__logo {
  text-align: left;
  width: 268px;
  height: auto;
}
.l-footer__logo img {
  margin-bottom: 10px;
}
.l-footer__list {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 30px;
  border-bottom: solid 1px #ddd;
  }
.l-footer__item dt {
  font-weight: 600;
}
.l-footer__item dd {
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.l-footer a:hover {
  opacity: .7;
  transition: all .3s ease-in-out;
}
.l-footer__menu {
  display: flex!important;
  justify-content: center;
  gap: 20px;
  margin: 20px 0 0;
}
.l-footer__nav { 
  font-size: 1.3rem;
  line-height: 2.3rem;
}
.l-footer__submenu {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--light-gray-color);
  margin: 20px 0 10px;
  font-size: 1.2rem;
  line-height: 1.8rem;
}
.copyright { 
  font-size: 1.1rem;
  line-height: 1.6rem;
  color: var(--light-gray-color);
  text-align: center;
}

/* ---- SUB PAGE BASE ------*/
.p-page_header .l-header {
  opacity: 1;
  background: #fff;
  height: auto;
  z-index: 999;
  box-shadow: 0px 3px 12px rgba(5, 102, 204, 0.2);
}
.p-page_header .c-subnav__item a {
    color: var(--main-color);
}
.p-page_header .c-nav__item {
  text-shadow: 0 1.5em 0 var(--main-color), 0 0 0 var(--main-color); 
}
.p-page_header .c-nav-down::after {
  border: 2px solid var(--main-color);
  border-left: 0;
  border-bottom: 0;
}
.p-page-visual {
  position: relative;
  width: auto;
  height: 400px;
  top: 94px;
  transition: opacity 1s ease;;
}
.p-page-sub-visual {
  position: relative;
  width: auto;
  height: 180px;
  top: 94px;
  background: #f5f5f5;
}
.p-page-visual.visible {
  opacity: 1;
}
.p-page-visual__image { 
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.p-page-visual__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 3.s ease-out;
}
.p-page-visual__inner {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 80.5%;
  min-width: 1160px;
  max-width: 1600px;
}
.p-page-sub-visual .p-page-visual__inner {
  top: 57px;
}
.p-page-visual__title {
  display: flex;
  flex-direction: column;
  text-shadow: 0 0 20px rgb(255, 255, 255, 0.8);
}
.p-page__title {
  color: var(--blue-color);
  font-size: 2.4rem;
  line-height: 3.4rem;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
.p-page__title-en {
  font-family: "Montserrat", sans-serif;
  font-size: 6.2rem;
  line-height: 7.0rem;
  color: var(--blue-color);
  font-weight: 700;
  letter-spacing: .2rem;
}
.p-page-sub-visual .p-page__title-en {
  font-size: 4.2rem;
  line-height: 5.0rem;
}
.p-page__title-jp {
  font-size: 2.0rem;
  font-weight: 600;
  letter-spacing: .2rem;
  padding-top: 20px;
  margin-left: 5px;
}
.p-page-sub-visual .p-page__title-jp {
  font-size: 1.6rem;
  padding-top: 10px;
}
.p-page-visual__text {
  position: absolute;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(19,96,173,0),rgba(19,96,173,.9));
  width: 100%;
  height: 30%;
}
.p-page-visual__read {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom:20px;
  color: #fff;
  font-weight: 500;
  width: 80.5%;
  min-width: 1160px;
  max-width: 1600px;
  font-size: 2.2rem;
  line-height: 3.2rem;
  letter-spacing: .2rem;
}
.p-page .l-container {
  margin: 80px auto;
}
.p-page .c-section-title-en {
  font-size: 4.2rem;
}
.p-page .c-read {
  font-size: 1.6rem;
  line-height: 2.8rem;
}

.breadcrumb {
  padding: 94px 0 0;
  margin: 14px auto 0;
  list-style: none;
  text-align: left;
  min-width: 1160px;
  max-width: 1600px;
  width: 80.5%;
}
.breadcrumb li {
  display: inline-block;
  list-style: none;
  font-size: 1.3rem;
  color: var(--light-gray-color);
}
.breadcrumb li:after {
  content: '/';
  padding: 0 8px;
  color: var(--gray-color);
  font-size: 1.2rem;
}
.breadcrumb li:last-child:after {
  content: '';
}
.breadcrumb li a {
  color: #CCC;
  transition: 0.3s;
}
.breadcrumb li a:hover {
  color: var(--blue-color);
  transition: 0.3s;
}

/* ------ POST BASE PAGE ------*/
.p-case-article {
}
.p-post {
  max-width: 840px;
  width: 100%;
  margin: 0 auto 80px;
}
.p-post__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}
.p-post__category {
  font-size: 1.2rem;
  line-height: 1.8rem;
  padding: 5px 15px;
  background: #f5f5f5;
  border-radius: 20px;
  color:var(--blue-color);
}
.p-post__data {
  width: 65%;
  color: var(--light-gray-color);
  font-size: 1.4rem;
  line-height: 1.6rem;
}
.p-post__timeline {
  color: var(--light-gray-color);
  font-size: 1.4rem;
  line-height: 1.6rem;
}
.p-post__header {
  margin-bottom: 24px;
}
.p-post__title {
  font-size: 2.8rem;
  line-height: 3.8rem;
  margin-bottom: 20px;
}
.p-post__area {
  color: var(--light-gray-color);
  font-size: 1.3rem;
  line-height: 1.6rem;
}
.p-post__thumbnail {
  width: 100%;
  margin-bottom: 60px;
}
.p-post__thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.p-post__content {
  width: 100%;
}
.p-post__content figure {
  margin: 3.8rem auto;
}
.p-post .fade, .p-news-article .fade {
  transition: all .5s ease-in-out;
}
.p-post p {
  margin: 0 0 3.2rem;
}
.p-post a {
  color: var(--blue-color);
  text-decoration: underline;
  }
.p-post a:hover {
  color: #0090ff;
  text-decoration: none;
}
.p-post__info {
  width: 78.5714%;
  margin: 0 auto 60px;
  border-top: solid 1px #dbdbdb;
}
.p-post__row {
  display: flex;
  align-items: center;
  padding: 18px 0;
  border-bottom: solid 1px #dbdbdb;
}
.p-post__label {
  width: 35%;
  font-size: 1.4rem;
  line-height: 1.8rem;
  padding: 0 10px;
}
.p-post__subtitle {
  font-size: 2.2rem;
  line-height: 3.2rem;
  margin: 5.0rem 0 3.6rem;
  padding-left: 28px;
  border-left: solid 6px var(--blue-color);
  font-weight: 600;
}
.p-post__note {
  font-size: 2.0rem;
  line-height: 3.0rem;
  font-weight: 600;
  margin: 2.8rem 0 1.8rem;
}
.p-post__image-list { /*2カラム画像*/
  display: flex;
  flex-wrap: wrap; 
  gap: 30px;
  margin: 40px 0;
  word-wrap: a
}
.p-post__images { /*2カラム画像*/
  width: 48%;
}
.p-post__images img, .p-post__image-wide img {
  width: 100%;
  height: auto;
}
.p-post__image-wide { /*幅いっぱい画像*/
  width: 100%;
  margin: 40px 0 8px;
}
.p-post__image { /*通常画像*/
  margin: 40px 0 8px;
}
.p-post-caption { 
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: var(--gray-color);
}
.p-post-comment__title {
  position: relative;
  border-top: solid 1px #dbdbdb;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 20px 0 18px;
  margin-top: 60px;
}
.p-post-comment__title:after {
  position: absolute;
  content: " ";
  display: block;
  border-top: solid 5px var(--blue-color);
  top: -2px;
  width: 13.3%;
}
.p-post-comment__text {
  font-size: 1.5rem;
  line-height: 2.8rem;
  color: var(--gray-color);
  margin-bottom: 2.8rem;
}
.u-text-bold {
  font-weight: bold;
}
.u-text-catch {
  font-size: 3.4rem;
  line-height: 4.44rem;
  color: var(--blue-color);
  font-weight: bold;
  margin-bottom: 50px;
  letter-spacing: 0.3rem;
}
.p-note {
  margin: 80px auto 0;
}

/* ------ ABOUT PAGE ------*/
/* -- PHOLOSOPHY --*/
.p-philosophy__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 5%;
}
.p-philosophy__title {
  width: 45%;
  font-size: 3.4rem;
  line-height: 5.6rem;
  font-weight: 600;
}
.p-philosophy__text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 52%;
  border: solid 1px #dbdbdb;
  padding: 30px;
  border-radius: 10px;
  margin-top: 10px;
}
.p-philosophy__logo {
  width: 20%;
}
.p-philosophy__logo-text { 
 width: 73%;
  color: var(--gray-color);
  font-size: 1.4rem;
  line-height: 2.4rem;
}

/* -- MANAGEMENT POLICY --*/
.p-management-policy {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background: #f5f5f5;
}
.p-management-policy__text { 
  font-size: 2.1rem;
  line-height: 4.2rem;
  font-weight: 600;
  padding: 40px 0 0 5%;
}
.p-management-policy .l-container { 
  display: flex;
  justify-content: space-between;
}
.p-management-policy__list {
  display: flex;
  justify-content: space-around;
  width: 45%;
}
.p-management-policy__image {
  width: 45%;
}
.p-management-policy__image .simpleParallax {
    border-radius: 10px;
}
.p-management-policy__image:first-child {
  margin-top: 80px;
}
/* -- CODE OF CONDUCT --*/
.p-code-of-conduct__list {
  margin: 50px 7% 0;
  background: #f2f9ff;
  padding: 60px 5.3%; 
}
.p-code-of-conduct__item {
  margin-bottom: 30px;
}
.p-code-of-conduct__title { 
  color: var(--blue-color);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 3.2rem;
  margin-bottom: 10px;
}

/* -- TEAM HAMA --*/
.p-team-hama {
  display: flex;
  background: #fff url("../img/about-team-hama.jpg") 0 0 no-repeat;
  background-size: cover;
  width: 100%;
}
.p-team-hama .l-container { 
  display: flex;
  justify-content: space-around;
}
.p-team-hama .c-section-title-jp {
  margin: 20px 0 10px;
}
.p-team-hama__read {
  color: var(--blue-color);
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 30px;
}
.p-team-hama__list {
  width: 58.33%;
}

/* -- MESSAGE --*/
.p-message {
  margin-bottom: 40px;
}
.p-message__list {
  display: flex;
  justify-content: space-between;
  margin: 60px 3.33% 80px 0;
}
.p-message__image {
  width: 26.666%;
  margin-left: 5%;
}
.p-message__text {
  display: flex;
  flex-direction: column;
  width: 56.6%;
}
.president__text {
  font-weight: 600;
  margin-top: 30px;
  letter-spacing: .1rem;
}
.president__name {
  font-weight: 600;
  font-size: 1.9rem;
  letter-spacing: .1rem;
}
.bnr-president {
  width: 66.666%;
  border-radius: 10px;
  margin: auto;
  transition: all .3s ease-out;
}
.bnr-president a:hover {
  opacity: .5;
  transition: all .3s ease-out;
}

/* ------ WORKS PAGE ------ */
.p-works-catch .l-container {
  margin: 40px auto 60px
}
.p-works-read__text { 
  font-size: 1.7rem;
  line-height: 3.0rem;
}

/* FLOW */
.p-flow__container {   
  display: flex;
  justify-content: space-between;
  align-items: flex-start
}

.p-flow__nav {
  position: sticky;
  top: 70px;
  width: 23.666%;
  background: #fff;
  margin-top: 50px;
  padding: 10px 30px 40px;
  border-radius: 10px;
  box-shadow: 0px 3px 12px rgba(5, 102, 204, 0.2);
}
.p-flow__nav-list { 
  display: flex;
  flex-direction: column;
}
.p-flow__link {
  display: flex;
  align-items: center;
}
.p-flow__link a {
  width: 100%;
  color: var(--blue-color);
  padding: 20px 0;
  border-bottom: solid 1px #dbdbdb;
}
.p-flow__link a:hover {
  color: #0090ff;
}
.p-flow__link a .ordinal-numbers {
  color: var(--main-color);
}
.ordinal-numbers { 
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-right: 10px;
  color: var(--main-color);
}
.p-flow__list {
  width: 64%;
  display: flex;
  flex-direction: column;
}
.p-flow__item {
  width: 100%;
}
.p-flow__image {
  margin-bottom: 24px;
  border-radius: 10px;
  overflow: hidden;
}
.p-flow__title{
  color: var(--blue-color);
  font-size: 2.2rem;
  line-height: 3.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.p-flow__text {
  margin-bottom: 60px;
}

/* PRODUCTS */
.p-products-slide {
  display: flex;
  flex-direction: column;
  background: #f5f5f5;
}
.p-products-slide .l-container {
  margin: 80px auto 100px;
  width: 100%;
  max-width: 100%;
}
.p-products-slide .c-section-title {
  width: 80.5%;
  min-width: 1160px;
  max-width: 1600px;
  margin: 0 auto 60px;
}
.c-slide-arrow .slick-dots {
  padding: 40px 0 40px;
}
.p-products-slide__list {
  width: 100%;
  height: auto;
}
.p-products-slide__item {
  width: 340px;
  border-radius: 10px;
  margin: 0 10px 30px;
}
.p-products-slide__title {
  position: absolute;
  font-size: 2.1rem;
  line-height: 3.0rem;
  font-weight: 600;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(19,96,173,0),rgba(19,96,173,.9));
  color:#fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
.p-products-slide__text {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
.p-products-slide__item.item-zoom:hover .c-icon {
  transform: translate(0, 10px);
}
.p-products-slide__item .c-icon::after {
  background: url(../img/arrow-right-blue.svg) center center / contain no-repeat;
   background-size: cover;
  transform: rotate(90deg);
}
.p-products-slide__item.item-zoom:hover .p-products-slide__item.c-icon::after {
  content: '';
  background: url("../img/arrow-right.svg") center center / contain no-repeat;
  background-size: cover;
  transform: rotate(90deg);
}

/* PRODUCTS LIST*/
.p-products__title {
  color:var(--blue-color);
  font-size: 3.2rem;
  line-height: 4.2rem;
  margin-bottom: 20px;
}
.p-products__text p {
  font-weight: 600;
}
.p-products__text { 
  margin-bottom: 40px;
}
.p-products__list {
  display: flex;
  justify-content: space-between;
}
.p-products__list01 {
  width: 40.33%;
}
.p-products__list01 .p-products__image {
  width: 100%;
  margin-bottom: 20px;
}

.p-products__list01 .p-products__detail {
  width: 100%;
}
.p-products__list01 .p-products__detail-title {
  font-size: 2.4rem;
  line-height: 3.4rem;
  margin-bottom: 20px;
}
.p-products__list02 {
  width: 54.31%;
  margin-bottom: 50px;
}
.p-products__item02 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  align-items: flex-start;
}
.p-products__image {
  width: 42.857%;
  border-radius: 10px;
  overflow: hidden;
}
.p-products__detail {
  width: 50.793%;
}
.p-products__detail-title {
  color:var(--blue-color);
  font-size: 2.0rem;
  line-height: 3.2rem;
  margin-bottom: 10px;
}
.p-products__list03 {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.p-products__item03 { 
  width: 47.4%;
  display: flex;
  justify-content: space-between;
}
.p-products-order-showcase, .p-products-kitchen {
  background: #eaf3fc;
  display: flex;
}

/*PLANNING AND DESIGN*/
.p-planning {
  display: flex;
  padding: 0 0 40px;
}
.p-planning__list {
  display: flex;
  margin-top: 40px;
}


/* ----- COMPANY PAGE ----- */
.p-company__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-company__list a {
  text-decoration: none;
  color: var(--main-color);
}
.p-company__item { 
  width: 31.89%;
  margin-bottom: 60px
}
.p-company__image {
  margin-bottom: 20px;
}
.p-company__title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transition: all .3s ease-out;
}
.p-company__title .c-icon {
  margin-right: 10px;
}
.p-company__item:hover .p-company__title {
  color: #0090ff;
}
/*pamphlet*/
.c-section-subtitle {
  /* width: 94%; */
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--main-color);
  padding: 8px 0 8px 20px;
  margin: 50px auto 40px;;
  border-left: solid 10px var(--blue-color);
}
.p-pamphlet__item, .c-section-item  {
  width: 95%;
  margin: 0 auto 80px;
}
.c-section-item a {
  color: var(--blue-color)!important;
}
.p-pamphlet__item a {
  display: flex;
  width: 50%;
  color: var(--blue-color)!important;
}
.p-pamphlet__item a:hover, .c-section-item a:hover {
  color: #0090ff!important;
}
.p-pamphlet__image {
  width: 90px;
}
.p-pamphlet__image img {
  width: 100%;
  height: auto
}
.p-pamphlet__item a .p-pamphlet__text {
  margin-left: 30px;
  color:var(--blue-color);
}
.p-pamphlet__item a:hover .p-pamphlet__text {
    color:#0090ff;
}
.p-pamphlet__item a:hover .p-pamphlet__image {
  opacity: .5;
}

/* ----- PROFILE PAGE ----- */
.p-company-nav .l-container {
  margin: 60px auto;  
}
.p-company-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.p-company-nav__item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3px;
  font-size: 1.4rem;
  padding: 12px 18px 12px 20px;
  border-radius: 50px;
}
.p-company-nav__item .c-icon {
  background-color: var(--blue-color) !important;
  border: 1px solid var(--blue-color);
}
.p-company-nav__item .c-icon::after {
  background: url("../img/arrow-right.svg") center center / contain no-repeat;
}
.p-company-nav__item a:hover .c-icon {
  border: solid 1px var(--blue-color);
  background: #fff!important;
  transform: translate(10px, 0);
}
.p-company-nav__item a:hover .c-icon::after {
  content: '';
  background: url("../img/arrow-right-blue.svg") center center / contain no-repeat;
}
.p-company-nav__item .slide {
  background: #eaf3fc;
  color: var(--main-color);
}
.p-company-nav__item .slide::after {
  background: var(--blue-color);
}
.p-company-nav__item .slide:hover {
  color: #fff!important;
}
.p-profile .c-section-title {
  margin-bottom: 60px;
}
.c-table {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.p-profile .fade {
  transition: all .7s;
}
.c-table__title, .c-table__text {
  padding: 28px 20px;
  display: flex;
  align-items: center;
}
.c-table__title {
  width: 22.5%;
  color:var(--blue-color);
  letter-spacing: .2rem;
  border-top: solid 1px var(--blue-color);
}
.c-table__text {
  padding: 28px 50px;
  width: 77%;
  color:var(--main-color);
  letter-spacing: .1rem;
  border-top: solid 1px #dbdbdb;
}
.c-table__text-indent {
  padding-left: 1.6rem;
  margin-bottom: 20px;
}
.c-table-sub {
  display: flex;
  flex-wrap: wrap;
}
.c-table-sub__title {
  width: 32%;
 margin-bottom: 18px;
}
.c-table-sub__text {
  width: 68%;
   margin-bottom: 18px;
}
.p-profile-slide { 
  margin: 30px 0 120px;
}

/* ----- ACCESS PAGE ----- */
.p-access-list {
  padding-bottom: 20px;
}
.p-access__detaile {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 94%;
  margin: 0 auto 50px;
}
.p-access__text {
  width: 60%;
}
.p-access__image {
  width: 28%;
}
.p-access__image-top {
  width: 37%;
}
.p-access__map {
  width: 94%;
  margin: auto;
}
/* ----- CLIENT PAGE ----- */
.p-cliet-table {
  margin-top: 50px;
}
.c-note {
  font-size: 1.4rem;
  color: var(--light-gray-color);
  margin-left: 2%;
  margin-bottom: 20px;
}
.p-cliet__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.p-cliet__item {
  width: 46%;
  padding: 18px 5px;
  margin: 0 2%;
  border-bottom: solid 1px #dbdbdb;
}
/* ----- PARTNER PAGE ----- */

.c-section__subtext {
  width: 94%;
  margin: auto;
}
.c-section__subtext a {
  color: var(--blue-color);
}
.c-section__subtext a:hover {
  color: #0090ff;
}
.p-partner-section {
  margin: 60px auto;
  width: 94%;  
}
.p-partner__title {
  font-size: 2.1rem;
  line-height: 3.2rem;
  padding: 12px 0;
  border-bottom: solid 1px #dbdbdb;
}
.p-partner__item { 
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 40px auto;
}
.p-partner__text {
  width: 60%;
}
.p-partner__text dd {
  margin-bottom: 30px;
}
.p-partner__image {
  width: 33%;
}
.p-partner__subtitle {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.p-partner-contact .l-container {
  background: #eaf3fc;
  border-radius: 10px;
  padding: 40px 0!important;
  margin: 80px auto;
}
.p-partner-contact__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-partner-contact__title {
  font-size: 2.1rem;
  color:var(--blue-color);
  margin-bottom: 30px;
  letter-spacing: .1rem;
}
.p-partner-contact__item .c-button {
  width: 360px;
  height: 80px;
  justify-content: center;
}
.p-partner-contact__item span {
  font-size: 1.8rem;
}
.p-partner-contact__item .c-icon {
  margin-left: 12px;
}
.p-partner-contact__item a:hover .c-icon {
  border: solid 1px var(--blue-color);
  background: var(--blue-color)!important;
  transform: translate(10px, 0);
}
.p-partner-contact__item a:hover .c-icon::after {
  background: url("../img/arrow-right.svg") center center / contain no-repeat; 
}

.p-partner-company {
  background: #f5f5f5;
  display: flex;
  margin-bottom: 100px;
}
.p-partner-company__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1%;
  margin: 50px auto 0;
}
.p-partner-company__card {
  width: 24%;
  background: #fff;
  padding: 22px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.p-partner-company__image a {
  display: flex;
  align-items: center;
  height: 160px;
  border-bottom: solid 1px #dbdbdb;
  transition: all .3s ease-out;
}
.p-partner-company__image a:hover {
  opacity: .5;
  transition: all .3s ease-out;
}
.p-partner-company__title {
  font-size: 1.8rem;
  color:var(--blue-color);
  line-height: 2.8rem;
  padding: 20px 0;
}
.p-partner-company__text {
  margin-bottom: 20px;
}
.p-partner-company__link a {
  font-size: 1.4rem;
  line-height: 2.4rem;
  color:var(--blue-color);
}
.p-partner-company__link a:hover {
  color: #0090ff;
}

/* ----- SPONSOR PAGE ----- */
.p-sponsor__image { 
  display: flex;
  height: auto;
  margin: 30px 0 30px 3%;
  justify-content: space-between;
}

.p-sponsor__image img {
  width: 48%;
  height: auto;
}


/* ----- HISTORY PAGE ----- */
.p-history-nav__link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #f5f5f5;
  padding: 50px;
  gap: 2.2%;
  border-radius: 10px;
  margin-bottom: 50px
}
.p-history-nav__item {
  width: 31.6%;
}
.p-history-nav__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 30px 0;
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: 600;
  border: solid 1px #dbdbdb;
  border-radius: 10px;
  margin: auto;
  color: var(--main-color);
}
.p-history-nav__item .c-icon {
  border: solid 1px var(--blue-color);
  background: var(--blue-color)!important;
}
.p-history-nav__item .c-icon::after {
  background: url("../img/arrow-right.svg") center center / contain no-repeat;
  transform: rotate(90deg);
}
.p-history-nav__item .c-icon {
  margin-left: 18px;
}
.p-history-nav__item a:hover .c-icon {
  border: solid 1px var(--blue-color);
  background: #fff!important;
  transform: translate(0, 10px);
}
.p-history-nav__item a:hover .c-icon::after {
  background: url("../img/arrow-right-blue.svg") center center / contain no-repeat; 
}
.p-history-nav__item .slide {
  background: #fff;
  color: var(--main-color);
}
.p-history-nav__item .slide::after {
  background: var(--blue-color);
}
.p-history-nav__item .slide:hover {
  color: #fff;
}
.p-history-section {
  margin-bottom: 100px;
}
.p-history__category {
  font-size: 2.1rem;
  margin: 0 0 50px 4%;
}
.p-history-table__item {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-bottom: 20px;
}

.p-history-table__year {
  margin-left: 6%;
  letter-spacing: .2rem;
  width: 19.4%;
  padding-top: 5px;
}
.p-history-table__year::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  top: 23px;
  left: 20.5%;
  border-left: 1px solid #dbdbdb;
  z-index: 1;
}
.p-history-table__year::before {
  content: '';
  width: 13px;
  height: 13px;
  background: #dbdbdb;
  position: absolute;
  left: 20%;
  top: 10px;
  border-radius: 100%;
  z-index: 3;
  transition: all .3s ease-out;
}

.p-history-timeline-date {
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color:var(--blue-color);
}
.era-name {
  font-size: 1.3rem;
  color:var(--blue-color);
  letter-spacing: .1rem;
}
.p-history-table__detaile {
  width: 70%;
  margin-right: 5.5%;
}
.p-history-table__text {
  margin-bottom: 24px;
}
.p-history-table__image01, .p-history-table__image02 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}
.p-history-table__image01 img {
  width: 36%;
  height: auto;
}
.p-history-table__image02 img {
  width: 18%;
  height: auto;
}
.p-history-table__year.vertical-line::after {
  content: "";
  border-left: 1px solid var(--blue-color);
  z-index: 2;
  transition: all .4s ease-out;
  top: 10px;
  height: 0;
}
.p-history-table__year.vertical-line.is-active::after {
  content: "";
  border-left: 1px solid var(--blue-color);
  z-index: 2;
  transition: all .4s ease-out;
  height: 100%;
}
.p-history-table__year.vertical-line.is-active::before {
  content: '';
  background: var(--blue-color);
  z-index: 4;
  transition: all .4s ease-out;
}

/* ----- CASE STUDIES PAGE ----- */
.p-page-link__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.p-page-link__item {
  font-size: 1.4rem;
}
.p-page-link__item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px 12px 20px;
  border-radius: 50px;
}

.p-page-link__item .slide {
  background: #eaf3fc;
  color: var(--main-color);
}
.p-page-link__item.current .slide  {
    background: var(--blue-color);
    color: #fff;
}
.p-page-link__item .slide::after  {
  background: var(--blue-color);
}
.p-page-link__item .slide:hover, .p-page-link__item.current {
  color: #fff!important;
}
.p-case-table__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 4%;
}
.p-case-table__item {
  width: 48%;
  margin-bottom: 60px;
}
.p-case-table__image {
  margin-bottom: 24px;
}
.p-case-table__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.p-case-table__spec {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.p-case-table__title {
  font-size: 2.2rem;
  line-height: 3.0rem;
  font-weight: 600;
  margin-bottom: 16px;
  transition: all .3s ease-out;
}
.p-case-table__title:hover .p-case-table__image .item-image2 img  {
  transform: scale(1.08);
  transition: all .3s ease-out;
  overflow: hidden; 
}
.p-case-table__item a:hover .p-case-table__title {
  color: var(--blue-color);
  transition: all .3s ease-out;
}
.pagination-link a,.pagination-link.current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
}
.pagination-link a {
  background: #fff;
  border: solid 1px #dbdbdb;
}
.pagination-link a:hover {
  background: var(--blue-color);
  color: #fff;
  border: solid 1px var(--blue-color);
  transition: all .3s ease-out;
}

.pagination ul { 
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.pagination-link.current  {
  background: var(--blue-color);
  color: #fff;
  border: solid 1px var(--blue-color);
}


/* ----- NEWS PAGE ----- */
.l-column {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.l-column.l-container {
  margin: 60px auto 80px;
}
.p-news-nav {
  position: sticky;
  top: 70px;
  width: 17.24%;
  margin-bottom: 30px;
}
.p-news-nav nav {
  margin-bottom: 30px;
}
.p-news-nav__item{
  display: flex;
  align-items: center;
  }
.p-news-nav__item a {
  width: 100%;
  color:var(--blue-color);
  padding: 16px 0;
  border-bottom: solid 1px #dbdbdb;
}
.p-news-nav__item a::before {
  content: '・';
  font-size: 2rem;
  padding-right: 12px;
  color: #ccc;
}
.p-news-nav__item a:hover {
  color:#0090ff;
}

.p-news-article, .p-main-news {
  width: 74.48%
}
.p-news-list {
  margin-bottom: 60px;
  border-top: solid 1px #dbdbdb;
}
.p-news-subtitle {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--blue-color);
    padding: 8px 0 8px 20px;
    margin: 0 auto 40px;
    border-left: solid 10px var(--blue-color);
}
.p-news__card a {
   width: 100%; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  transition: all .4s ease-out;
}
.p-news-card__content {
  width: 94%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
}
.p-news-card__image {
  width: 19.27%;
}
.p-news-card__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.p-news-card__body {
  display: flex;
  flex-direction: column;
  width: 77.1%;
}
.p-news__meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}
.p-news-card__title {
  font-size: 1.6rem;
  font-weight: 400; 
  color: var(--main-color);
}

.c-select-box {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.c-select-box::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: var(--light-gray-color);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
  pointer-events: none;
}
.c-select-box select {
  appearance: none;
  width: 100%;
  padding: 12px 22px;
  border: 1px solid #dbdbdb;
  border-radius: 50px;
  background-color: #fff;
  color: #333333;
  cursor: pointer;
  outline: none;
}
.p-post-button {
  margin: 60px 0;
  display: flex;
  justify-content: space-between;
}
.c-button__previous a, .c-button__next a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.4rem;
  line-height: 2.0rem;
  color: var(--gray-color);
}
.c-button__previous .c-icon::after {
  transform: rotate(180deg);
}
.c-button__previous .c-icon, .c-button__next .c-icon {
  margin: 0 10px;
}
.c-button__previous a:hover, .c-button__next a:hover {
  color: var(--blue-color);
}
.c-button__previous a:hover .c-icon {
  border: solid 1px var(--blue-color);
  background: var(--blue-color)!important;
  transform: translate(-10px, 0);
}
.c-button__next a:hover .c-icon {
  border: solid 1px var(--blue-color);
  background: var(--blue-color)!important;
  transform: translate(10px, 0);
}
.c-button__previous a:hover .c-icon::after, .c-button__next a:hover .c-icon::after {
  background: url("../img/arrow-right.svg") center center / contain no-repeat; 
}


/* ----- SUPPORT PAGE ----- */
.p-important .c-section-title-en, .p-faq .c-section-title-en {
  font-size: 3.6rem;
  line-height: 4.6rem;
}
.p-important .c-section-title-jp, .p-faq .c-section-title-jp {
  font-size: 1.8rem;
  margin-top: 12px;
}
.p-important__list {
  width: 100%;
  max-width: 960px;
  margin: 40px auto;
}
.p-important__item a {
  font-size: 1.8rem;
  letter-spacing: .1rem;
  color: var(--main-color);
  font-weight: 600;
  padding: 30px 0;
  border-top: solid 1px #dbdbdb;
}

/* ----- FAQ ----- */
.p-faq-nav__list {
  width: 100%;
  max-width: 960px;
  margin: 30px auto;
  display: flex;
  gap: 10px;
}
.p-faq-nav__item {
  width: 100%;
}
.p-faq-nav__item a {
  display: flex;
  justify-content: center;
  border: solid 1px #dbdbdb;
  padding: 20px;
  border-radius: 10px;
  color: var(--main-color);
}
.p-faq-nav__item .c-icon {
  border: solid 1px var(--blue-color);
  background: var(--blue-color)!important;
}
.p-faq-nav__item .c-icon::after {
  background: url("../img/arrow-right.svg") center center / contain no-repeat;
}
.p-faq-nav__item .c-icon::after {
  transform: rotate(90deg);
}
.p-faq-nav__item a:hover .c-icon {
  border: solid 1px #fff;
  background: #fff!important;
  transform: translate(0, 10px);
}
.p-faq-nav__item a:hover .c-icon::after {
  background: url("../img/arrow-right-blue.svg") center center / contain no-repeat;
}
.p-faq-category__title {
  margin: 80px 0 10px;
  font-size: 2.2rem;
  line-height: 3.2rem;
  font-weight: 600;
  letter-spacing: .1rem;
}
.p-faq-section {
  width: 100%;
  max-width: 960px;
  margin: 40px auto 40px;
}
.p-faq-section a {
  color: var(--blue-color);
  text-decoration: underline;
  }
.p-faq-section  a:hover {
 color: #0090ff;
  text-decoration: none;
  }
.p-faq-item {
  border-bottom: solid 1px #dbdbdb;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
.p-faq-question {
  display: flex;
  align-items: center;
  min-height: 8.5rem;
  padding: 34px 50px 34px 90px;
  cursor: pointer;
  position: relative;
  font-size: 1.8rem;
  line-height: 3.0rem;
  font-weight: 600;
}
.p-faq-question::before,.p-faq-answer::before {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  width: 60px;
  height: 60px;
}
.p-faq-question::before {
  content: "Q.";
  font-size: 3.0rem;
  color: var(--blue-color);
  position: absolute;
  top: 14px;
  left: 10px;
}
.p-faq-answer::before {
  content: "A.";
  border-radius: 100%;
  font-size: 3.0rem;
  color: #fff;
  background: var(--blue-color);
  float: left;
  margin-right: 20px;
}
.c-toggle { 
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  display: block;
  padding: 16px;
  border: solid 1px #dbdbdb;
  border-radius: 100%;
}
.c-toggle::before,
.c-toggle::after{
  position:absolute;
  content:'';
  top:1px;
  right:8px;
  bottom:0;
  width:15px;
  height:2px;
  margin:auto;
  background:var(--blue-color);
}
.c-toggle::after{
  transform:rotate(-90deg);
  transition:transform 0.3s;
}
.p-faq-question.active .c-toggle::after{transform:rotate(0deg);}
.p-faq-answer {
  display: none;
  align-items: center;
  overflow: hidden;
  background: #eaf3fc;
  transition: transform .3s ease;
  padding: 34px 50px 34px 20px;
}

/* ----- RECURIT PAGE ----- */
.p-recurit-step .c-section__subtext {
  font-size: 2.2rem;
  line-height: 3.2rem;
}
.p-recurit-step .c-section__subtext.saiyo {
  color:var(--blue-color);
}
.p-recurit-step__list {
  width: 94%;
  margin: 30px auto 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color:var(--blue-color);
}
.p-recurit-step__item {
  width: 20.68%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  border-radius: 5px;
  height: 200px;
  background: #eaf3fc;
  position: relative;
}
.p-recurit-step__item::after{
  content: '';
  display: inline-block;
  vertical-align: middle;
  color: var(--light-gray-color);
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 1em 1em;
  border-left-color: currentColor;
  border-right: 0;
  position: absolute;
  right: -17%;
}
.p-recurit-step__item:nth-child(4)::after {
  display: none;
}
.p-recurit-step__list span {
  font-family: "Montserrat", sans-serif;
  font-size: 2.1rem;
  line-height: 3.1rem;
  font-weight: 700;
}
.p-recurit-step__text {
  font-size: 2.2rem;
  line-height: 3.2rem;
  font-weight: 600;
  margin-top: 10px;
  letter-spacing: .1rem;
  text-align: center;
}
.p-recurit-step__list.nyusha {
  color: var(--main-color);  
}
.nyusha .p-recurit-step__item {
  background: #f5f5f5;
}
.p-recurit-section__read {
  width: 94%;
  margin: auto;
}
.p-recurit-nav {
  width: 94%;
  margin: 40px auto 60px;
}
.p-recurit-nav .p-page-link__item {
  font-size: 1.6rem;
}
.p-recurit-nav .p-page-link__item a {
  padding: 12px 30px 12px 30px;
}
.p-recurit-section__content {
  width: 94%;
  margin: 0 auto 100px;
}
.p-recurit-section__content .p-page-link__list {
  margin: 10px 0 60px;
}
.p-recurit-job { 
  margin: 30px 0 30px;
  display: flex;
  flex-wrap: wrap;
}
.p-recurit-job_item { 
margin: 0 20px 10px 0;
  padding-right: 20px;
  border-right: solid 1px #ccc;
  
}
.p-recurit-job_item:nth-of-type(1) {
  border-left: solid 1px #ccc;
   padding-left: 20px;
}
.p-recurit-job_item a {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  color:var(--main-color); 
}
.p-recurit-job_item a:hover {
  color:var(--blue-color);
}
.anchor {
    display: block;
    padding-top: 50px;
    margin-top: -50px;
}

.p-recurit-section__subcontent {
  margin-bottom: 80px;
}
.c-section-note {
  font-size: 2.2rem;
  line-height: 3.2rem;
  padding: 12px 0;
  border-bottom: solid 1px #dbdbdb;
  margin-bottom: 24px;
}

.p-recurit-section__title {
  font-size: 2.4rem;
  line-height: 3.0rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: .3rem;
  padding: 50px 0 20px;
  border-bottom:  solid 1px #dbdbdb;
}

.p-recurit-section__detail {
  font-weight: 600;
  margin-bottom: 10px;
}
.p-recurit-section__text {
    width: 70%;
}
.p-recurit-section__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.p-table__content {
  border-top: solid 1px #dbdbdb;
}
.p-recurit-section__list .p-table__content {
  width: 70%;
  margin-top: 40px;
}
.p-recurit-section__image {
  width: 27%;
  margin-top: 40px;
}
.p-table__item {
  width: 100%;
  display: flex;
}
.p-table__primary {
  width: 24%;
  padding: 20px;
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-weight: 600;
  background: #eaf3fc;
  display: flex;
  align-items: center;
}
.p-table__detail {
  width: 76%;
  padding: 20px;
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.p-table__item {
  border-bottom: solid 1px #dbdbdb;
}
.material-symbols-outlined {
  margin: 0 5px 0 3px;
  font-size: 1.6rem;
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 20
}
.external-link  {
display: inline-block;
  margin-left: 3px;
}
.external-link a { 
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  color:var(--blue-color);
}
.external-link a:hover {
  color: #0090ff;
}

/* ----- RECURIT INTERVIEW PAGE ----- */
.p-interview-list .p-interview__item {
  width: 22.06%;
  margin-bottom: 60px;
}

.p-interview__name {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 10px;
  color: var(--main-color);
}
.p-interview-list .p-interview__list {
  justify-content: flex-start;
  gap: 3.7%;
  margin: 60px auto 0;
}
.p-interview-article {
  margin: auto;
}

.p-interview-post {
  max-width: 1100px;
  width: 91.666%;
  margin: 0 auto;
}
.p-interview-header__text {
  width: 90%;
  padding-bottom: 40px;
  border-bottom: solid 1px #dbdbdb;
  margin: 30px auto;
}
.p-interview-header__subtitle {
  color:var(--blue-color);
  margin-bottom: 22px;
}
.p-interview-header__title {
  font-size: 3.0rem;
  line-height: 3.8rem;
  font-weight: 600;
  margin-bottom: 22px;
  font-feature-settings: "palt";
  letter-spacing: .2rem;
}
.p-interview-header__detail {
  display: flex;
  align-items: center;
}
.p-interview-header__detail .p-interview__name {
  font-size: 2.4rem;
  font-weight: 600;
  margin: 0 0 0 30px;
}
.p-interview-header__detail .p-interview__group {
  font-size: 1.4rem;
}
.p-interview-post__content {
  margin: auto;
  width: 90%;
}
.p-interview-post__content p {
  margin: 3.2rem 0;
}
.p-interview-question {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin: 4.8rem 0 2.8rem!important;
  color: var(--blue-color);
  font-weight: 600;
  font-style:italic;
  letter-spacing: .1rem;
}
.p-interview-post__image {
  width: 84%;
  margin: 8.0rem auto;
}
.p-interview-profile {
  font-size: 1.4rem;
  background: #f5f5f5;
  border-radius: 5px;
  padding: 10px 20px;
  color: var(--gray-color);
}
.p-interview-profile__title {
  display: block;
  font-weight: 600;
}
.p-post__read {
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: #888;
  font-weight: 600;
  margin: 3.2rem 0 6.0rem;
  font-feature-settings: "palt";
}
.p-interview-post__catch {
  font-size: 2.8rem;
  line-height: 3.8rem;
  font-weight: 600;
  border-bottom: solid 1px var(--main-color);
  display: inline;
  font-feature-settings: "palt";
}
.c-image-wide {
  width: 100%;
}
.p-author {
  font-size: 1.3rem;
  margin: 3.2rem 0;
  text-align: right;
  color: var(--gray-color);
}
/* ----- SIMPLE PAGE ----- */

/* ----- CONTACT FORM PAGE ----- */
.p-contact-form__subtitle {
  font-size: 3.0rem;
  line-height: 4.0rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--blue-color);
  text-align: center;
}
.p-contact-form__read {
  font-size: 1.8rem;
  line-height: 2.8rem;
  margin-bottom: 20px;
  text-align: center;
}
.p-contact-form__content {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 60px 7.27%;
}

.p-contact-form__content label {
  display: block;
  font-weight: 600;
  margin-bottom: 14px;
}
.form-select input {
  width: 100%;
  background: #fff;
  border: solid 1px #dbdbdb;
  border-radius: 10px;
  padding: 18px;
}
.form-select {
  margin-top: 50px;
}
.form-required {
  background: #ff7070;
  color: #fff;
  padding: 2px 18px;
  border-radius: 30px;
  margin-left: 14px;
  font-size: 1.3rem;
  line-height: 1.8rem;
  font-weight: 400; 
}
.form-example {
  font-size: 1.4rem;
  line-height: 2.0rem;
  color: var(--light-gray-color);
  margin: 12px 0 16px;
}
.form-inquiry  {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 50%;
  margin-bottom: 36px;
}
.form-inquiry  p {
  width: 100%;
}
.form-inquiry select {
  display: block;
  background: #fff;
  border: solid 1px #dbdbdb;
  border-radius: 10px;
  padding: 18px;
  margin: 16px 0;
  cursor: pointer;
  outline: none;
  width: 100%;
}
.form-inquiry::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: var(--light-gray-color);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
  pointer-events: none;
}
.form-message textarea {
  width: 100%;
  display: block;
  background: #fff;
  border: solid 1px #dbdbdb;
  border-radius: 10px;
  padding: 18px;
  margin: 16px 0;
}
.form-message {
  margin-bottom: 36px;
}
.form-message placeholder {
  color: #ccc;
}
.checkbox-group {
  margin: 60px auto 60px;
  text-align: center;
}
.checkbox-group label {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
}
.checkbox-group a {
  color: var(--blue-color);
  text-decoration: underline;
}
.checkbox-group a:hover {
  color: #0090ff;
  text-decoration: none;
}
.checkbox-group input {
  border: solid 1px #dbdbdb;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  appearance: auto;
}
.form-button {
  width: 40%;
  margin: auto;
}
.form-button-send {
  width: 40%;
  margin: 30px auto;
}
.form-button button, .form-button-send button, .form-button input {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: var(--blue-color);
  padding: 20px;
  color: #fff;
  font-size: 2.0rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  margin: 20px auto;
  transition: all .3s ease-out;
}
.form-button-send button:hover, .form-button-send input:hover {
  background: #0090ff;
  transition: all .3s ease-out;
}

/* AGREE */
.submit-btn {
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
  color: #fff;
  padding: 8px 24px;
  background-color: #3abec1;
}
.submit-btn[disabled] {
  background-color: #ccc;
  cursor: not-allowed; 
}
.form-button button.submit-btn:hover {
  background: #ccc;
}
.form-confirm {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin: 20px 0 50px;
}
.p-contact-form__button {
  justify-content: center;
  align-items: center;
  margin: 20px auto;
}
.form-button-back {
  width: 20%;
  margin: 30px auto;
}
.form-button-back button {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--light-gray-color);
  width: 100%;
  border-radius: 10px;
  border: none;
  color: #fff;
  padding: 10px;
  transition: all .3s ease-out;
}
.form-button-back button:hover {
  background: #ccc;
  transition: all .3s ease-out;
}

/* @media SP -------------------------------------- */
@media (max-width: 1280px) {
.header-container {
  margin: 0 1.4%;
}
.c-logo {
  width: 230px;
  height: auto;
}
.c-nav__list {
 gap: 7px;
}
.c-nav__item {
font-size: 1.4rem;
padding: 0 2px;
}
.l-container {
  min-width: 100%;
  padding: 0 4.0%;
}
.scrolled-header .c-nav__list {
  gap: 12px;
}
.scrolled-header .c-nav__list li a {
  font-size: 1.3rem;
}
.scrolled-header .c-subnav__item a {
    margin-left: 0;
}
.c-subnav__list li {
  font-size: 1.2rem;
  margin: 0 0 0 10px;
}
.scrolled-header .c-subnav__button {
  width: 100px;
  height: 28px;
}
.breadcrumb { 
  width: 90%;
  min-width: initial;
}
.c-button {
  width: 280px;
}
.p-about-right {
  width: 60%;
}
.p-case-studies {
  padding: 0;
}
.p-case-studies .l-container {
  padding: 0;
  margin: 60px auto 30px;
}
.p-case__text { 
  min-width: 100%;
  padding: 0 4.0%;
}
.p-page-visual__inner, .l-container, .p-page .l-container {
  width: 90%;
  min-width: initial;
  padding: 0;
}
.p-page-visual__read {
  width: 90%;
  min-width: initial;
}
.p-contact__text {
  min-width: 90%;
}
.p-contact .c-section-title-jp {
  margin: 10px 0 14px;
}
.p-contact .c-read {
  margin-right: 30px;
  font-size: 1.4rem;
  line-height: 2.4rem
}
.l-footer .l-container  {
  padding: 30px 0 0;
}
}
@media (max-width: 1028px) {
.scrolled-header .header-container {
  margin: 0 2.2% 0;
}
.scrolled-header .c-logo, .c-logo {
  width: 200px;
  }
.scrolled-header .c-nav__list, .c-nav__list {
  gap: 5px;
}
.scrolled-header .c-nav__item, .c-nav__item {
    font-size: 1.3rem;
  }
}
/* @media SP -------------------------------------- */
@media (max-width: 768px) {
.pc {
  display: none !important;
}
.sp {
  display: block !important;
}
  
.logo-icon, .logo-icon2 {
  width: 20%;
  height: auto;
}
/* HEADER SP-------------------------- */
.l-header {
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px!important;
  z-index: 3;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  background: #fff;
}
.l-header {
  overflow: hidden;
}
.l-header.scrolled-header {
  background: rgba(255, 255, 255, 1);
}
.c-logo {
  z-index: 2;
  width: 50%;
  height: auto;
}
.l-header .c-logo a:hover {
  opacity: 1;
}
.header-container {
  margin: 0 4.16% 0;
  height: 100%;
}
.c-nav__list--sp {
  text-align: center;
}
  
/* hamburger menu */
.c-menu {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--blue-color);
  border-radius: 40px;
  z-index: 998;
  cursor: pointer;
}
.menu-button {
  width: 22px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all .3s ease-in-out;
}
  
/* MINIMUM HEADER */
.l-header.scrolled-header {
  transform: none;
}
.scrolled-header {
  background-color: #fff;
  transition: background-color 0.3s ease-in-out;
}
.scrolled-header .c-nav {
  flex-direction: inherit;
}
/* menu inner */
.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.4s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 1;
}
.menu.is-navi-open  {
  opacity: 1;
  visibility: visible;
  height: 100vh;
}
.menu-checkbox {
  display: none;
  z-index: 998;
}
.menu-button {
  position: relative;
  z-index: 999;
}
.menu-checkbox:checked + .menu-button span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-checkbox:checked + .menu-button span:nth-child(2) {
  opacity: 0;
}
.menu-checkbox:checked + .menu-button span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.menu-checkbox:checked ~ .menu {
  opacity: 1;
  visibility: visible;
}
.c-nav__list--sp {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  margin: 70px auto 90px;
}
.c-subnav__list { 
  margin-top: 0;
}
.c-nav__list--sp:first-child {
  border-top: 1px solid #e5e5e5;
}
.c-nav__item--sp {
  width: 100%;
  color: var(--main-color);
  font-size: 1.4rem;
  line-height: 2.0rem;
  font-weight: 500;
  padding: 9px 8%;
  border-bottom: 1px solid #e5e5e5;
}
.c-nav__item--sp a {
  color: var(--main-color);
}
.c-menu__item {
  font-family: "Montserrat", sans-serif;
  color: var(--blue-color);
  font-size: 1.7rem;
  line-height: 2.2rem;
  font-weight: 700;
  letter-spacing: .1rem;
}
.c-meganav__item-submenu {
  display: none;
  width: 100%;
  margin: 7px 0 0;
}  
.c-meganav__item--sp {
  width: 100%;
  margin-left: 5.3%;
  font-size: 1.4rem;
}
.c-meganav__item--sp a {
  display: block;
  padding: 4px 0;
  color: var(--main-color);
}
.c-meganav__itemsub--sp { 
  margin-top: 14px;
  width: 80%;
  padding: 7px 10%;
  text-align: center;
}
.c-meganav__itemsub--sp a {
  display: block;
  padding: 10px;
  background: var(--blue-color);
  border-radius: 30px;
  color: #fff;
  font-size: 1.4rem;
}
.c-meganav__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-nav-icon {
  display: inline-block;
  position: relative;
  width: 20px;
  margin-left: 6px;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.3s ease;
}
.c-nav-icon.is-rotated {
  transform: rotate(180deg);
}
.c-nav-icon::before, .c-nav-icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 13px;
  height: 3px;
  background-color: var(--main-color);
}
.c-nav-icon::before {
  left: 0;
  transform: rotate(45deg);
}
.c-nav-icon::after {
  right: 0;
  transform: rotate(-45deg);
}

  
/* TOP MAIN VISUAL SP */
.p-main-visual__content {
  bottom: 20%;
}
.p-main-visual__title {
  font-size: 2.7rem;
  line-height: 4.0rem;
}

  
/* SECTION BASE SP */
.l-container {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  padding: 30px 5.3% 30px 5.3%;
  margin: 0 auto;
   overflow: hidden;
}
.c-section-title-en {
  font-size: 3.4rem;
  line-height: 4.4rem;
}
.c-section-title-jp {
  font-size: 1.8rem;
  line-height: 2.8rem;
  margin-top: 10px;
  margin-bottom: 20px;
}
.c-button {
  width: 90%;
  height: 60px;
  margin: 0 auto 0;
  font-size: 1.4rem;
  padding: 15px;
}
.c-icon {
  width: 24px;
  height: 24px;
}
.c-read {
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.item-zoom:hover .c-icon {
  transform: translate(0, 0);
}
  
/* TOP ABOUT SP */
.p-about .l-container {
  flex-direction: column;
  height: inherit;
  margin: 0 auto;
  padding: 20px 5.3% 30px 5.3%;
}
.p-about-left {
  width: 89.4%;
  margin: 0 5.3%;
  min-height: inherit;
}
.p-about .c-section-title {
  margin: 0;
}
.p-about__image-icon {
  width: 60%;
}
.is-aboout {
  margin-top: auto;
}
.p-about__text {
  margin-bottom: 30px;
}
.p-about-right {
  width: 100%;
  min-height: 210px;
  margin-top: 40px;
}
.top-about__image-list {
  width: 38.8%;
}
.p-about__image {
  top: 0;
  right: 0;
  width: 94%;
}
/* TOP WORKS SP */
.p-works {
  padding: 0 0 20px;
}
.p-works .l-container {
  margin: 10px auto 0;
}
.p-works__text {
  padding: 0 5.3%;
  flex-direction: column;
}
.p-works__text .c-read, .p-case__text .c-read{
  margin-bottom: 30px;
}
.p-works__list {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin: 40px auto 20px;
}
.p-works__item {
  width: 90%
}
.p-works__image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.p-works-text {
  padding: 30px 18px 12px 18px;
}
.p-works-title {
  font-size: 2.0rem;
  line-height: 3.0rem
}
.p-works-read {
  font-size: 1.4rem;
  line-height: 2.0rem;
}


/* TOP COMPANY SP */
.p-top-company .l-container {
  flex-direction: column;
  justify-content: center;
  top: inherit;
  bottom: inherit;
  left: inherit;
  right: inherit;
}
.p-top-company__image img {
  object-fit: cover;
  min-height: 550px;
}
.p-top-company .c-section-title {
  width: 100%;
  padding: 0 0 30px;
}
.c-button-text {
  margin-top: 20px;
  font-size: 1.6rem;
}
.p-top-company .c-section-title-en {
  font-size: 3.2rem;
  }
.p-top-company__list {
  width: 100%;
}
.p-top-company__item span {
  width: 76%;
}
.p-top-company__item a {
  height: 74px;
  padding: 10px 10px 10px 10px;
  font-size: 1.4rem;
}
  
/* TOP CASE SP */ 
.p-case-studies {
  position: relative;
  margin: 0;
}
.p-case-studies .l-container {
  padding: 20px 0;
  margin: 20px auto 0;
}
.p-case__text { 
  padding: 30px 5.3% 40px;
  margin: 0 auto;
  min-width: inherit; 
  max-width: inherit;
  display: flex;
  flex-direction: column;
} 
.p-case-studies .c-section-title-en {
 font-size: 3.4rem;
}
.p-case__detail { 
  margin-top: 8px;
  padding: 0 5%;
}
.p-case__detail-title {
  font-size: 1.4rem;
  line-height: 2.2rem;
  margin-bottom: 5px;
}
.p-case-studies .c-button {
    width: 80.4%;
}
.p-case__date {
  font-size: 1.1rem;
  line-height: 2.1rem;
  margin-bottom: 8px;
}
.p-case__category {
  font-size: 1.1rem;
  line-height: 2.1rem;
  padding: 3px 8px;
  border-radius: 18px;
}
.c-slide-arrow .slick-dots {
  right: 0;
  width: 80%;
}
.c-slide-arrow .slick-dots li {
  margin: 0 2%;
}
.c-slide-arrow .slick-dots li button {
  height: 4px;
}
.c-slide-arrow .slick-dots li button:before {
  height: 4px;
}
.p-space-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-space-image img {
  height: 280px;
}

  
/* -- TOP NEWS SP -- */ 
.p-news .l-container {
  margin: 20px auto 50px;
  padding: 0 5.3%;
  flex-direction: column;
  justify-content: flex-start;
}
.p-news__text {
  width: 100%;
  padding: 0 0 20px;
}
.p-news__list {
  width: 100%;
}
.p-news__item a {
  padding: 16px 0;
}
.p-news__detail {
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 87%;
  gap: 10px;
}
.p-news__list-category {
  font-size: 1.2rem;
  line-height: 1.4rem;
  padding: 4px;
  width: 80px;
}
.p-news__list-title {
  width: 100%;
  text-wrap: auto;
  font-size: 1.4rem;
  line-height: 2.0rem;
}
.p-space-image {
  min-height: auto;
  padding: 30px 0;
}

  
/* -- FOOTER INTERVIEW SP -- */ 
.p-recruit {
  padding: 0;
}
.p-recruit .l-container {
  padding: 30px 0 10px;
}
.p-recruit__text {
  justify-content: flex-start;
  flex-direction: column;
  gap: inherit;
  padding: 0 5.3%;
}
.p-recruit__text {
  align-items: flex-start;
}
.p-interview__button {
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10%;
  width: 100%;
}
.p-recruit .slick-track {
  justify-content: flex-start;
  gap: 20px;
  margin: 0 30%;
}
.p-interview__list {
  margin: 0 -5.9%
}
  .p-recurit-job {
    flex-wrap: wrap;
    justify-content: space-around;
  }
.p-recurit-job_item {
margin: 0 auto 20px;
padding: 0 10px;
width: 33%;
font-size: 1.4rem;
line-height: 2.0rem;
display: flex;
justify-content: center;
  }
.p-recurit-job_item:nth-of-type(1), .p-recurit-job_item:nth-of-type(4) {
  border-left: solid 1px #ccc;
}


/* -- FOOTER CONTACT SP -- */
.p-contact { 
  margin: 30px auto;
}
.p-contact__text {
  flex-direction: column;
  justify-content: center;
  width: 68.05%;
  min-width: inherit;
  max-width: inherit;
}
.p-contact .c-section-title {
  text-align: center;
} 
.p-contact__text .c-section-title-en {
  font-size: 3.6rem;  
}
.p-contact .c-section-title-jp {
  font-size: 1.6rem;
  margin-top: 10px;
}

.p-contact .c-button {
  width: 100%;
  margin: 20px auto 0;
}
  
  
/* -- FOOTER BANNER SP -- */
.p-banner {
  padding: 10px 0 40px;
}
.p-banner .l-container {
   padding: 0 5.3%;
   margin: 0 auto;
}
.p-banner__list {
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.p-banner__item {
    width: 100%;
}
  
  
/* -- FOOTER SP -- */
.l-footer {
  margin: 0 5.3%;
}
.l-footer .l-container {
  margin: 0 auto!important;;
  padding: 20px 0!important;
}
.l-footer__logo {
    width: 60%;
}
.l-footer__list {
  justify-content: flex-start;
  flex-direction: column;
  padding: 10px 0 20px;
  border-bottom: solid 1px #ddd;
}
.l-footer__item dl {
  margin: 0 0 10px;
}
.l-footer__item dd {
  display: inline-block;
  margin-right: 8px;
} 
.l-footer__submenu {
  gap: 10px;
}
  
  
/* ---- SUB PAGE BASE SP ------*/
.p-page-visual {
  height: 280px;
  top: 60px;
}
.p-page-sub-visual {
  height: 80px;
  top: 60px;
}
.p-page-visual__image img {
  height: 280px;
}
.p-page-visual__inner {
  top: 40px;
  width: 90%;
}
.p-page-sub-visual .p-page-visual__inner {
    top: 20px;
}
.p-page__title-en {
  font-size: 3.4rem;
  line-height: 4.2rem;
}
.p-page-sub-visual .p-page__title-en {
  font-size: 2.4rem;
  line-height: 2.4rem;
}
.p-page__title-jp {
  font-size: 1.4rem;
  padding-top: 10px;
}
.p-page-sub-visual .p-page__title-jp {
  font-size: 1.3rem;
  padding-top: 5px;
}
.p-page-visual__text {
  height: 30%;
}
.p-page-visual__read {
  bottom:10px;
  width: 90%;
  font-size: 1.6rem;
  line-height: 2.2rem;
  letter-spacing: .1rem;
}
.p-page .c-read {
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.p-page .l-container {
  margin: 30px auto;
  padding: 0 5.3%;
  width: inherit;
}
.p-page .c-section-title-en {
  font-size: 2.6rem;
  line-height: 3.3rem;
}
.p-page__title {
  font-size: 2.0rem;
  line-height: 3.0rem;
  margin-bottom: 18px;
}
.breadcrumb {
  max-width: 100%;
  padding: 60px 0 5px 3%;
  overflow-x: auto;
  white-space: nowrap;
}
.breadcrumb li {
  font-size: 1.2rem;
}

  
/* ------ ABOUT PAGE SP ------*/
/* -- PHOLOSOPHY SP --*/
.p-philosophy__content {
  flex-direction: column;
  margin: 35px 5.35% 0;
}
.p-philosophy__title {
  width: 100%;
  font-size: 2.2rem;
  line-height: 4.2rem;
}
.p-philosophy__text {
  width: 100%;
  flex-direction: column;
  padding: 24px;
  margin-top: 35px;
}
.p-philosophy__logo {
  width: 30%;
}
.p-philosophy__logo-text {
  width: 100%;
  padding-top: 30px;
}
/* -- MANAGEMENT POLICY SP --*/
.p-management-policy .l-container {
  flex-direction: column;
}
.p-management-policy__text {
  width: 100%;
  font-size: 1.7rem;
  line-height:3.0rem;
  padding: 30px 4% 0;
}
.p-management-policy__list {
  width: 100%;
  margin-top: 30px;
}
  
/* -- CODE OF CONDUCT SP--*/
.p-code-of-conduct__list {
  margin: 20px auto 0;
  background: #f2f9ff;
  padding: 20px 5.3% 10px;
}
.p-code-of-conduct__item {
  font-size: 1.5rem;
  line-height: 2.8rem;
}
.p-code-of-conduct__title {
  color: var(--blue-color);
  font-size: 1.8rem;
  line-height: 2.6rem;
  margin-bottom: 10px;
}
  
/* -- TEAM HAMA SP --*/
.p-team-hama {
  background: #fff url("../img/about-team-hama-sp.jpg") 0 0 no-repeat;
  background-size: cover;
  width: 100%;
}  
.p-team-hama .l-container {
  flex-direction: column;
  margin: 30px auto 10px;
}
.p-team-hama .c-section-title-jp {
  margin: 0 0 10px;
}
.p-team-hama__list {
  width: 100%;
}
.p-team-hama__read {
  font-size: 1.4rem;
  margin: 10px 0 10px;
}

/* -- MESSAGE SP --*/
.p-message__list {
  flex-direction: column;
  margin: 30px auto 30px;
}
.p-message__text {
  width: 100%;
  margin: 30px 0 0;
}
.p-message__image {
  width: 65.217%;
  margin: auto;
}
.bnr-president {
  width: 100%;
}
  
/* ------ WORKS PAGE SP ------ */
.p-works-catch .l-container {
  margin: 30px auto 30px
}
.p-works-read__text { 
  font-size: 1.6rem;
  line-height: 2.8rem;
}

/* FLOW */
 .p-flow__container {
  flex-direction: column;
  width: 100%;
}
.p-flow__nav {
  position: inherit;
  width: 100%;
  margin: 30px auto 40px;
  padding: 10px 5% 20px;
 }
.p-flow__nav-list {
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
.p-flow__link { 
  width: 47.5%;
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.p-flow__link a {
  display: flex;
  height: 90px;
  padding: 20px 0 16px;
}
.p-flow__list {
   width: 100%;
}
.p-flow__title { 
  font-size: 2.0rem;
  line-height: 3.0rem;
  margin-bottom: 10px;
}
  
  
/* PRODUCTS LIST SP */
.p-products__title {
  font-size: 2.6rem;
  margin-bottom: 12px;
}
.p-products__list {
  flex-direction: column;
  }
.p-products__list01 {
  width: 100%;
  margin-bottom: 30px;
}
.p-products__list01 .p-products__detail-title {
  font-size: 2.0rem;
  line-height: 3.0rem;
  margin-bottom: 10px;
}
.p-products__list02, .p-products__list03 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.p-products__item02, .p-products__item03 {
    width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 0;
}
.p-products__detail {
  width: 100%;
}
.p-products__detail p {
  font-size: 1.4rem;
  line-height: 2.2rem;
}
.p-products__image {
  margin-bottom: 10px;
}
.p-products__detail-title{
  font-size: 1.6rem;
  line-height: 2.8rem;
}
.p-products-slide .l-container {
  padding: 0;
}
.p-products-slide .c-section-title {
  width: 80.5%;
  min-width: auto;
  max-width: 100%;
  margin: 0 auto 30px;
}
.p-products-slide__title {
  font-size: 1.6rem;
  line-height: 2.4rem;
  padding: 10px;
  height: 60%;
}
.p-products-slide__item {
  margin: 0 5px 0;
}
.p-products__image {
  width: 100%;
}
/*PLANNING AND DESIGN SP*/
.p-planning {
  padding: 0 0 40px;
}
.p-planning__list {
  flex-direction: column;
  margin-top: 20px;
}
.p-planning__list img {
  width: 90%;
  margin: auto;
}  
/* ----- COMPANY PAGE SP ----- */

.p-company__item { 
  width: 100%;
  margin-bottom: 30px
}
.p-company__title .c-icon {
    margin-right: 0;
}
.p-company__image {
    margin-bottom: 18px;
}
  .p-pamphlet__title {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }
  .p-pamphlet__item a {
    width: 100%;
  }
/* ----- PROFILE PAGE SP ----- */
.p-company-nav__item a {
  font-size: 1.3rem;
  padding: 9px 16px 8px 19px;
}
.p-profile .c-section-title {
    margin-bottom: 30px;
}
.c-table {
  font-size: 1.38rem;
  line-height: 2.2rem;
}

.c-table__title, .c-table__text {
  padding: 18px 0;
}
.c-table__text {
  padding: 18px 0 18px 7px;
  letter-spacing: 0;
}
.c-table-sub__text {
  width: 63%;
  margin-left: 5%;
}
.c-table__text-indent, .c-table-sub__title, .c-table-sub__text {
  margin-bottom: 16px;
 }
.p-profile-slide {
  margin: 20px 0 50px;
}
  
/* ----- ACCESS PAGE SP ----- */
.p-access-list .l-container {
  padding: 0;
}
.c-section-subtitle{
  font-size: 2.2rem;
  line-height: 3.2rem;
  margin-bottom: 20px;
}
.p-access__detaile {
  flex-direction: column-reverse;
  margin: 0 auto 30px;
}
.p-access__text {
  width: 100%;
}
.p-access__image-top,
.p-access__image {
  width: 100%;
  margin-bottom: 20px;
}
.p-cliet__item {
  width: 100%;
  padding: 12px 5px;
  margin: 0;
}
.p-cliet-table {
  margin-top: 20px;
}
.c-note {
  margin-bottom: 10px;
  }
  
/* ----- PARTNER PAGE SP ----- */
.p-partner .c-section-subtitle {
    margin-top: 30px;
}
.c-section__subtext {
  width: 100%;
}

.p-partner-section {
  margin: 20px auto;
  width: 100%;
}
.p-partner__item { 
 flex-direction: column-reverse;
  margin: 24px auto 20px;
} 
.p-partner__title {
  font-size: 2.0rem;
  line-height: 3.0rem;
  }
.p-partner__image {
  width: 90%;
  margin: 0 auto 24px;
}
.p-partner__text {
   width: 100%;
}
.p-partner__text dd {
    margin-bottom: 20px;
}
.p-partner-contact__title {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.p-partner-contact .l-container {
  width: 90%;
  min-width: auto;
  padding: 30px 0;
  margin: 30px auto 50px;
}
.p-partner-contact__item .c-button {
  width: 80%;
  height: 60px;
  }
.p-partner-contact__item span {
  font-size: 1.6rem;
}
.p-partner-company {
  margin-bottom: 50px;
}
.p-partner-company__list {
  gap:2.5%;
  margin: 30px auto 0;
}
.p-partner-company__card {
  width: 48.5%;
  padding: 12px;
  margin-bottom: 20px;
}  
.p-partner-company__image a {
  height: 90px;
}
.p-partner-company__title {
  font-size: 1.5rem;
  line-height: 2.2rem;
  padding: 10px 0;
}
.p-partner-company__text {
  font-size: 1.3rem;
  line-height: 2.0rem;
  margin-bottom: 10px;
}
.p-partner-company__link a{
  font-size: 1.2rem;
  line-height: 1.6rem;
}
  
/* ----- SPONSOR PAGE ----- */
.p-sponsor__image { 
  width: 80%;
  margin: 20px auto 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-sponsor__image img {
   width: 100%;
}
  
/* ----- HISTORY PAGE SP ----- */
.p-history-nav__link {
  justify-content: space-between;
  padding: 20px 5.3%;
  gap: initial;
  margin: 0 -5.3% 30px;
}
.p-history-nav__item a {
  flex-direction: column;
  font-size: 1.4rem;
  text-wrap: balance;
  padding: 12px 5px;
}
.p-history-nav__item .c-icon {
  margin-left: 0;
}
.p-history-nav__item {
  width: 32%;
}
.p-history__category {
  font-size: 2.0rem;
  margin: 0 0 30px 0;
}
.p-history-table__year {
  margin-left:0;
  width: 20%;
  letter-spacing: 0;
}
.p-history-table__year::before {
  left: 20.5%;
}
.p-history-table__year::after {
  left: 22.3%;
}
.p-history-timeline-date {
  font-size: 2.3rem;
}
.era-name {
  font-size: 1.1rem;
  line-height: 1.6rem;
  letter-spacing: .0rem;
}
.p-history-table__detaile {
  width: 73%;
  margin-right: 0;
}
.p-history-table__text {
  font-size: 1.4rem;
  line-height: 2.4rem;
  margin-bottom: 18px;
}
.p-history-table__image01 {
  flex-direction: column;
  gap:10px;
  margin-bottom: 18px;
}
.p-history-table__image01 img {
  width: 80%;
}
.p-history-table__image02 img {
  width: 40%;
}

/* ----- CASE STUDIES PAGE SP ----- */
.p-page-link__list {
  gap: 7px;
}
.p-page-link__item a {
  font-size: 1.3rem;
  padding: 9px 11px 8px 11px;
  border-radius: 30px;
}
.p-case-table__list {
  gap: 3%;
}
.p-case-table__item {
  margin-bottom: 30px;
}
.p-case-table__image {
    margin-bottom: 14px;
}
.p-case-table__image img {
  aspect-ratio: 1 / 1.4;
}
.p-post__meta {
  gap: 8px;
  margin-bottom: 10px;
  align-items: flex-start;
  flex-direction: column;
}
.p-post__category {
  font-size: 1.1rem;
  line-height: 1.4rem;
  padding: 4px 10px;
}
.p-case-table__title {
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin-bottom: 10px;
  text-wrap: auto ;
}
  
/* ------ POST BASE PAGE SP ------*/

.p-post {
  max-width: inherit;
  padding: 0 5.3%;
  margin: 30px auto;
}
.p-post__header {
  margin-bottom: 18px;
}
.p-post__title {
  font-size: 2.4rem;
  line-height: 3.4rem;
  margin-bottom: 10px;
}
.p-case-article .p-post__meta {
  flex-direction: row;
  align-items: center;
}
.p-post__thumbnail {
  margin-bottom: 30px;
}
.p-post__info {
  width: 100%;
  margin: 0 auto 30px;
}
.p-post__row {
  padding: 12px 0;
}
.p-post__label {
  width: 36%;
  font-size: 1.3rem;
  line-height: 1.6rem;
  padding: 0 10px 0 0;
}
.p-post__data {
  width: 64%;
  font-size: 1.3rem;
  line-height: 1.6rem;
}
.p-post__subtitle {
  font-size: 2.0rem;
  line-height: 3.0rem;
  margin: 30px 0 20px;
  padding-left: 18px;
  border-left: solid 6px var(--blue-color);
}
.p-post__content p {
  margin: 2.0rem 0;
}
.p-post__image-list {
  gap: initial;
  margin: 20px 0;
  justify-content: space-between;
}
.p-post-caption {
  display:block;
  font-size: 1.2rem;
  line-height: 2.1rem!important;
}
.p-post__image {
  margin: 30px 0 7px;
}
.c-list-button .c-button {
  margin: 30px auto;
}
.u-text-catch {
  font-size: 3.0rem;
  line-height: 4.0rem;
  margin-bottom: 30px;
}

  
/* ----- NEWS PAGE SP ----- */
.l-column {
  flex-direction: column;
  flex-wrap: nowrap
}
.p-news-article, .p-main-news {
  width: 100%
}
.p-news-subtitle {
  font-size: 2.0rem;
  margin-bottom: 20px;
}
.p-news-nav {
  position: initial;
  top:0;
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-news-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  transition: all .3s ease-out;
}
.p-news-nav__item {
  width: 47%;
}
.p-news-article {
  width: 100%
}
.p-news-article .p-post {
  padding: 0;
}
.p-news-nav__item a {
  width: 100%;
  padding: 10px 0;
  font-size: 1.4rem;
  line-height: 2.0rem;
}
.p-news-nav__item a::before {
  padding-right: 3px;
}
.c-select-box {
  width: 80%;
}
.p-news-list {
  margin-bottom: 30px;
}
.c-select-box select {
  padding: 8px 18px;
  margin: auto;
}
.p-news-card__image {
  width: 30%;
}
.p-news-card__content {
  gap: 4%;
}
.p-news-card__image img {
  aspect-ratio: 1/ 1;
}
.p-news__card a {
  padding: 14px 0;
}
.p-news-card__title {
  font-size: 1.4rem;
  line-height: 2.0rem;
}
.p-news__meta{
  gap: 10px;
  margin-bottom: 5px;
}
.p-post-button {
  margin: 30px auto;
}
  
/* ----- SUPPORT PAGE ----- */
.p-important .c-section-title-en, .p-faq .c-section-title-en {
  font-size: 2.6rem;
  line-height: 3.3rem;
}
.p-important .c-section-title-jp, .p-faq .c-section-title-jp {
  font-size: 1.6rem;
  margin-top: 10px;
}
.p-important__list {
  max-width: 90%;
  margin: 20px auto;
}
.p-important__item a {
  font-size: 1.4rem;
  line-height: 1.8rem;
  padding: 20px 0;
}

/* ----- FAQ ----- */
.p-faq-nav__list {
  max-width: 100%;
  margin: 20px auto;
  flex-wrap: wrap;
  justify-content: space-between
}
.p-faq-nav__item {
    width: 90%;
    margin: 0 auto 5px;
  }
.p-faq-nav__item a {
  padding: 16px;
}
.p-faq-category__title {
  margin: 40px 0 10px;
  font-size: 2.0rem;
  line-height: 3.0rem;
}
.p-faq-question {
  min-height: 8.5rem;
  padding: 18px 50px 18px 32px;
  font-size: 1.6rem;
  line-height: 2.8rem;
}
.p-faq-question::before {
  font-size: 2.4rem;
  width: 30px;
  height: 30px;
  left: 0;
}
.c-toggle {
  right: 0;
  padding: 14px;
}
.c-toggle::before, .c-toggle::after {
  top: 1px;
  right: 7px;
  bottom: 0;
  width: 14px;
  height: 2px;
}
.p-faq-answer {
  padding: 18px 10px 18px 20px;
  font-size: 1.6rem;
  line-height: 2.8rem;
}
.p-faq-answer::before {
  width: 40px;
  height: 40px;
  font-size: 2.2rem;
  margin-right: 14px;
}
/* ----- RECURIT PAGE SP----- */
.p-recurit-step__list {
  width: 100%;
  margin: 20px auto 30px;
}
.p-recurit-step .c-section__subtext {
  font-size: 2.0rem;
  line-height: 3.0rem;
}
.p-recurit-step {
    padding-bottom: 0;
  }
.p-recurit-step__item {
  width: 22.5%;
  height: 100px;
  padding: 2px;
}
.p-recurit-step__item::after{
  border-width: .4em .4em;
  right: -14%;
}
.p-recurit-step__list span {
  font-size: 1.3rem;
  line-height: 2.0rem;
}
.p-recurit-step__text {
  font-size: 1.5rem;
  line-height: 2.4rem;
  letter-spacing: 0;
}
.p-recurit-nav {
  width: 100%;
  margin: 30px auto 30px;
}
.p-recurit-section__content {
  width: 100%;
  margin: 0 auto 30px;
}
.p-recurit-section__subcontent {
  margin-bottom: 60px;
}
.p-recurit-section__list {
  flex-direction: column-reverse;
}
.c-section-note {
  font-size: 2.0rem;
  line-height: 3.0rem;
  margin-bottom: 14px;
}
.p-recurit-section__title {
  font-size: 1.8rem;
  line-height: 2.8rem;
  margin-bottom: 14px;
}
.p-recurit-section__text {
  width: 100%;
  margin-bottom: 20px;
}
.p-recurit-section__image {
  width: 100%;
}
.p-recurit-section__list .p-table__content {
  width: 100%;
}
.p-table__primary {
  width: 25%;
  padding: 10px;
}
.p-table__primary {
  justify-content: center;
  width: 25%;
  font-size: 1.3rem;
  padding: 10px 8px;
}
.p-table__detail {
  width: 75%;
  padding: 10px 8px 10px 12px;
}
  
/* ----- RECURIT INTERVIEW PAGE SP ----- */
.p-interview-list .p-interview__list {
  gap: 3.5%;
  margin: 30px auto 0;
  }
.p-interview-list .p-interview__item {
  width: 48%;
  margin-bottom: 30px;
}
.p-interview-post {
  max-width: 100%;
  width: auto;
  padding: 10px 5.3% 0;
  margin: 0 auto;
}
.p-interview-header__image.c-image img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.p-interview-header__text {
  width: 100%;
  padding-bottom: 14px;
  margin: 10px auto;
}
.p-interview-header__subtitle {
  margin-bottom: 10px;
}
.p-interview-header__title {
  font-size: 2.4rem;
  line-height: 3.4rem;
  margin-bottom: 10px;
  letter-spacing: .1rem;
}
.p-interview-header__detail .p-interview__name {
  font-size: 2.0rem;
  margin: 0 0 0 20px;
}
.p-interview-header__detail .p-interview__group {
  margin: 0;
  }
.p-interview-post__content {
  width: 100%;
}
.p-interview-question {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin: 2.2rem 0 1.8rem !important;
}
.p-interview-post__image {
  width: 100%;
  margin: 4.0rem auto;
  }
.p-interview-post__content p {
  margin: 2.0rem 0;
}
.p-post__read {
    font-size: 1.4rem;
    line-height: 2.4rem;
    margin: 1.6rem 0 3.0rem;
}
.p-interview-post__catch {
    font-size: 2.0rem;
    line-height: 3.0rem;
  }
  
/* ----- CONTACT FORM PAGE SP ----- */
.p-contact-form .l-container {
padding: 0;
  }
.p-contact-form__subtitle {
  font-size: 2.1rem;
  line-height: 3.0rem;
}
.p-contact-form__read {
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin: 0 5.3%;
}
.p-contact-form .c-list-button { 
  margin: 0 5.3%;
}
.p-contact-form__content {
    padding: 30px 5.3%;
  }
.form-example {
  margin: 8px 0 10px;
}
.form-select input {
  padding: 10px;;
}
.form-select {
  margin-top: 30px;
}
.form-required {
  font-size: 1.3rem;
}
.form-inquiry {
  width: 100%;
  margin-bottom: 24px;
}
.form-inquiry select {
      margin: 10px 0;
}
.checkbox-group {
  margin: 30px auto 30px;
}
.form-button {
  width: 90%;
}
.p-contact-form__button {
  flex-direction: column;
  gap: 10px;
  }
.form-button-back {
  display: block;
  width: 50%;
}
.form-button-send {
  width: 90%;
}
}