@charset "UTF-8";
/*------------------------
    共通
------------------------*/
/*** overall ***/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  color: #343434;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
}
section {
  position: relative;
  padding: 60px;
}
.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 10px;
}
h2.section-title {
  text-align: center;
}
h3.section-title {
  margin-bottom: 20px;
  font-size: 2rem;
  text-align: center;
}
.font-medium {
  font-weight: 500;
}
.color-red {
  color: #dd5c59;
}
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
.pc-only.media768 {
  display: block;
}
.sp-only.media768 {
  display: none;
}
.font-zenmaru {
  font-family: 'Zen Maru Gothic', sans-serif;
}
/*** header ***/
.header {
  background: #459dbc;
}
.header.thanks .sun {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.header.thanks .sun img {
  height: 100%;
  max-height: 250px;
}
.host {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
/*** kv ***/
section.kv {
  z-index: 0;
  margin-top: -125px;
  padding: 0 0 40px 0;
}
.kv img{
  width: 100%;
}
.kv .kv-item {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items: center;
  /* margin-top: -37px; */
  padding: 20px 40px;
  background: #feff89;
  text-align: center;
  gap: 20px;
}
.kv .kv-item .kv-item__btn {
  position: relative;
  width: calc( ( 100% - 20px ) / 2 );
  padding: 10px 0 20px 0;
  border-radius: 20px;
  line-height: 1.2;
  transition: .3s;
  overflow: hidden;
}
.kv .kv-item .kv-item__btn.btn-js {
  color: #e61e5c;
  background: #fff;
  border: 6px solid #e61e5c;
}
.kv .kv-item .kv-item__btn.btn-com {
  padding: 16px 10px 26px 10px;
}
.kv .kv-item .kv-item__btn.btn-js .kv-item__btn-icon {
  position: absolute;
  top:  50%;
  right: 20px;
  transform: translate(0,-50%);
  transition: .3s;
}
.kv .kv-item .kv-item__btn.btn-js:hover {
  color: #fff;
  background: #e61e5c;
  transition: .3s;
}
.kv .kv-item .kv-item__btn.btn-js:hover .kv-item__btn-icon {
  top: 52%;
  transition: .3s;
}
.kv .kv-item .kv-item__btn.btn-js:hover .kv-item__btn-icon svg {
  fill: #feff89;
}
.kv .kv-item .kv-item__btn .kv-item__btn-icon {
  max-width: 60px;
}
.kv .kv-item .kv-item__btn.btn-com .kv-item__btn-icon {
  position: absolute;
  right: 0;
  bottom: -5px;
  transform: translate(0,0);
  transition: .3s;
}
.kv .kv-item .kv-item__btn.btn-com {
  color: #fff;
  background: #e61e5c;
}
.kv .kv-item .kv-item__btn.btn-com:hover {
  color: #e61e5c;
  background: #fff;
}
.kv .kv-item .kv-item__btn.btn-com:hover .kv-item__btn-icon {
  transform: rotate(-5deg);
  transition: .3s;
}
.kv .kv-item .kv-item__btn-text p:first-of-type {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  font-size: 2.2vw;
  font-weight: 500;
}
.kv .kv-item .kv-item__btn-text p:first-of-type::before {
  content: "";
  position: absolute;
  top: 3px;
  left: -15px;
  height: 35px;
  width: 3px;
  border-radius: 3px;
  background: #e61e5c;
  transform: rotate(-30deg);
}
.kv .kv-item .kv-item__btn-text p:first-of-type::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -12px;
  height: 35px;
  width: 3px;
  border-radius: 3px;
  transform: rotate(30deg);
}
.kv .kv-item .kv-item__btn.btn-js p:first-of-type::before,
.kv .kv-item .kv-item__btn.btn-js p:first-of-type::after {
  background: #e61e5c;
  transition: .3s;
}
.kv .kv-item .kv-item__btn.btn-js:hover p:first-of-type::before,
.kv .kv-item .kv-item__btn.btn-js:hover p:first-of-type::after {
  top: 0;
  background: #fff;
  transition: .3s;
}
.kv .kv-item .kv-item__btn.btn-com p:first-of-type::before,
.kv .kv-item .kv-item__btn.btn-com p:first-of-type::after {
  background: #fff;
  transition: .3s;
}
.kv .kv-item .kv-item__btn.btn-com:hover p:first-of-type::before,
.kv .kv-item .kv-item__btn.btn-com:hover p:first-of-type::after {
  top: 0;
  background: #e61e5c;
  transition: .3s;
}
.kv .kv-item .kv-item__btn-text p:last-of-type {
  font-size: 2.65vw;
  font-weight: bold;
}

/*** nav ***/
.nav {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-left: 60px;
}
.nav .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav .main-heading {
  transition: .3s;
}
.nav .main-heading:hover {
  opacity: .7;
  transition: .3s;
}
/*** feature ***/
.feature .section-title {
  margin-bottom: 30px;
  font-size: 2.6rem;
  color: #209dc1;
}
.feature .feature-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.feature .feature-list {
  margin-bottom: 30px;
  font-size: 1.8rem;
  text-align: center;
}
.feature .feature-list span {
  position: relative;
  margin-left: 24px;
}
.feature .feature-list span::before {
  content: "";
  background: url("../images/feature-icon.png") top center / contain no-repeat;
  position: absolute;
  top: 0;
  left: -24px;
  width: 18px;
  height: 100%;
}
/*** overview ***/
.overview {
  padding: 0;
}
.overview .section-title {
  background: #dd5c59;
}
.overview .section-title img {
  width: 100%;
  margin: 0 auto;
}
.overview .overview-content {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 10px;
}
.overview .overview-content .content-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.overview .overview-content .text-wrap {
  display: flex;
  align-items: center;
}
.overview .overview-content .content-wrap .text-wrap {
  width: calc( ( 100% - 60px ) / 2 );
  display: flex;
  align-items: center;
}
.overview .def-term {
  width: 200px;
  height: 200px;
  background: #459dbc;
  margin-right: 40px;
  padding: 5px 20px;
  font-size: 2.6rem;
  line-height: 7;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  border-radius: 5px;
}
.overview .def-desc {
  max-width: 265px;
  font-size: 1.8rem;
  font-weight: normal;
}
.overview .def-desc.emphasis {
  font-size: 8rem;
  font-weight: 700;
}
.overview .def-desc.emphasis span {
  font-size: 2.6rem;
  font-weight: 300;
}
.overview .text-link {
  font-weight: bold;
}
/*** company ***/
.company {
  padding: 250px 20px;
  background: url("../images/company-bg.png");
  background-size: 50%;
}
.company .inner {
  max-width: 850px;
  background: #fff;
  border: 10px solid #f2e426;
  border-radius: 20px;
  padding: 90px 100px 70px;
  min-height: 830px;
}
.company .lead-item {
  display: flex;
  /* justify-content: space-between; */
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}
.company .lead-item .lead-item__link {
  width: calc( ( 100% - 20px ) / 2 );
}
.company .lead-item .lead-item__link:hover .lead-item__image {
  filter: none;
}
.company .lead-item .lead-item__link:hover .lead-item__btn {
  background: #e61e5c;
  color: #fff;
}
.company .lead-item .lead-item__image {
  max-width: 200px;
  margin: 0 auto 20px;
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.2));
  transition: .3s;
}
.company .lead-item .lead-item__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0 12px;
  border: 3px solid #e61e5c;
  border-radius: 20px;
  overflow: hidden;
  transition: .3s;
}
.company .lead-item .lead-item__btn-text {
  font-size: 2rem;
  text-align: center;
  line-height: 1.4;
}
.company .lead-item .lead-item__btn-text span {
  font-size: 1.4rem;
}
.company .lead-item .lead-item__btn-icon {
  max-width: 35px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, 2%);
}
.company .text-wrap .section-title {
  margin-bottom: 50px;
  font-size: 6rem;
  line-height: 1.3;
  color: #f68b00;
}
.company .text-wrap .section-title + p {
  margin-bottom: 45px;
  font-size: 1.4rem;
  line-height: 2.3;
}
/*** map ***/
.wpgmza_infowindow_description .content-heading a {
  line-height: 1;
}
.wpgmza_infowindow_description .content-heading a img {
  width: 17px;
}
/* @media print {
  .gm-style .gmnoprint, .gmnoprint {
    display:none;
  }
}
@media screen {
  .gm-style .gmnoscreen, .gmnoscreen {
    display:none;
  }
}
.gm-control-active {
  display: block !important;
} */
.company-map {
  margin-bottom: 50px;
}
.company-map .text-wrap .section-title {
  font-size: 4rem;
}
.company-map .wpgmza_map.wpgmza-auto-left {
  border-radius: 10px;
}
/*** category ***/
.company .cat-name {
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  display: block;
  padding: 20px 60px;
  text-align: center;
  color: #f68500;
  border-bottom: 2px solid #f2e426;
  width: max-content;
  margin: 0 auto 50px;
}
.company .cat-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.company .cat-item::after {
  content: "";
  display: block;
  max-width: 180px;
  width: 100%;
}
.company .cat-item .cat-item__list {
  width: calc( ( 100% - 30px ) / 3 );
  max-width: 180px;
  margin-bottom: 30px;
  transition: .3s;
  cursor: pointer;
}
.company .cat-item .cat-item__list:hover {
  opacity: .7;
  transition: .3s;
}
.company .cat-item .cat-item__listt img:hover {
  cursor: pointer;
}

/*** tab ***/
.company .tab {
  max-width: 530px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.company .tab .tab-name {
  font-size: 1.8rem;
  letter-spacing: 0.2em;
}
.company .tab .tab-name a {
  display: block;
  margin: 0 2px;
  padding: 0 60px;
  padding: 20px 60px;
  text-align: center;
  border-bottom: 2px solid #dbdbdb;
}
/* .company .tab .tab-name a:hover {
  cursor:auto;
} */
.company .tab .tab-name.active a {
  color: #f68500;
  /* font-size: 4rem; */
  border-bottom: 2px solid #f2e426;
}
.company .tab-content {
  display: none;
  opacity: 0;
  background: #fff;
  padding: 50px 0 0 0;
}
.company .tab-content.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.company .tab-content .tab-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.company .tab-content .tab-item::after {
  content: "";
  display: block;
  max-width: 180px;
  width: 100%;
}
.company .tab-content .tab-item .tab-item__list {
  width: calc( ( 100% - 30px ) / 3 );
  max-width: 180px;
  margin-bottom: 30px;
  transition: .3s;
}
.company .tab-content .tab-item .tab-item__list:hover {
  opacity: .7;
  transition: .3s;
}
.company .tab-content .tab-item .tab-item__list img:hover {
  cursor: pointer;
}
/*** modal ***/
.modal {
  display: none;
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.7);
  transition: all 1s ease-in-out;
}
.modal-content {
  width: 90%;
  max-width: 850px;
  max-height: 740px;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 40px 25px;
  background: #fff;
  border: 10px solid #f2e426;
  border-radius: 20px;
  overflow-y: auto;
  transform: translate(-50%, -50%);
  animation: show 0.6s linear 0s;
  filter: drop-shadow(0px 2px 6px #777);
}
.modal-close {
  max-width: 140px;
  margin: 60px auto 0;
}
.modal-close:hover, .modal-close:focus {
  text-decoration: none;
  cursor: pointer;
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-item .text-wrap {
  margin-bottom: 40px;
  padding-bottom: 40px;
  text-align: center;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #e7e7e7;
}
.modal-heading {
  font-size: 2.4rem;
  color: #2795b5;
}
.modal-heading + p {
  font-size: 1.8rem;
}
.modal .special {
  border-bottom: 1px solid #e7e7e7;
}
.modal .special:not(:last-of-type) {
  margin-bottom: 50px;
  padding-bottom: 50px;
}
.modal .special-item {
  margin-bottom: 40px;
}
.modal .special-item.special103 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.modal#industry111 .special-item {
  padding-top: 0;
}
.modal .special-item .border:not(:last-of-type) {
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 50px;
  padding-bottom: 50px;
}
.modal .special-heading {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 30px;
}
.modal .special-heading span {
  display: flex;
  align-items: center;
}

/* youthyell ユースエール 全企業 */
.modal .special-heading.youthyell + .content-group__list {
  margin-bottom: 30px;
}

/* erupla えるぼし+プラチナくるみん 全企業 */
.modal .special-heading.erupla {
  margin-bottom: 6px;
}
.modal .special-heading.erupla + h4.erupla {
  margin-bottom: 10px;
}
.modal .special-heading.erupla + .content-group__list {
  margin: 0 0 30px;
  margin: 0 auto 30px;
}

/* kurumin くるみん 全企業 */
.modal .kurumin {
  margin-bottom: 70px;
}
.modal .kurumin .content-group__list {
  float: left;
}
.modal .kurumin .content-group__list:nth-of-type(odd) {
  margin-right: 30px;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
/* kurumin くるみん エリア別 */
.modal .area-kurumin .special-item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.modal .area-kurumin .special-heading{
  padding-top: 30px;
}

.modal .special-heading img {
  max-width: 70px;
  margin-right: 20px;
}
.modal .content-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* padding-top: 40px; */
}
.modal .content-group__list {
  width: calc( ( 100% - 40px ) / 2 );
  margin-top: 70px;
  margin: 30px auto 0;
}
/* .modal .content-group__list .content-heading {
  display: inline-block;
  font-size: 2.2rem;
  height: 70px;
  line-height: 1.3;
}
.modal .content-group__list .content-heading a {
  position: relative;
} */
/* .modal .content-group__list .content-heading a::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  width: 20px;
  height: 20px;
  background: url("../images/external-link.png") top center / contain no-repeat;
} */
.modal .content-group__list .content-heading {
  font-size: 1.6rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  border: 3px solid #f2e426;
  border-radius: 20px;
  overflow: hidden;
  transition: .3s;
  height: 70px;
  line-height: 1.2;
}
.modal .content-group__list .content-heading-icon {
  max-width: 30px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, 2%);
}
.modal .content-group__list .content-heading:hover {
  background: #f2e426;
  color: #fff;
}
.modal .content-group__list-text .text-wrap {
  border-bottom: 1px dashed #e7e7e7;
  margin-bottom: 20px;
  padding: 0 0 5px 0;
  text-align: left;
}
.modal .content-group__list-text .def-term {
  color: #2795b5;
}
.modal .content-group__list-text .def-desc {
  font-size: 1.4rem;
}
/*** youtube ***/
.movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border: 3px solid #000;
}
.movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
/*** booth-content ***/
.company .booth-content {
  margin-top: 70px;
}
.company .booth-content .text-wrap .section-title {
  font-size: 4rem;
}
.company .booth {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.company .booth-list {
  width: calc( ( 100% - 150px ) / 2 );
  margin-bottom: 30px;
  border: 4px solid #f2e426;
  border-radius: 11px;
}
.company .booth-list:nth-of-type(odd) {
  margin-right: 30px;
}
.company .booth-list a {
  position: relative;
  min-height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #2795b5;
  font-size: 1.4rem;
  text-align: center;
  transition: .3s;
}
.company .booth-list a:hover {
  opacity: .7;
  transition: .3s;
}
.company .booth-list a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
  width: 20px;
  height: 20px;
  background: url("../images/external-link_orange.png") top center / contain no-repeat;
}
/*** footer ***/
.footer {
  background: #2e2e49;
  color: #fff;
}
.footer .inner {
  max-width: 860px;
  margin: 0 auto;
}
.footer .item-detail {
  display: block;
}
.footer .item-heading {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: normal;
  border: 1px solid #fff;
  margin-bottom: 5px;
  padding: 3px 30px;
}
.footer .item-detail h2 {
  font-size: 2.6rem;
}
.footer .item-detail p {
  font-weight: normal;
  line-height: 2;
}

@media screen and (max-width: 1080px) {
  /*** overall ***/
  section {
    padding: 60px 30px;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .host {
    max-width: 600px;
  }
  /*** kv ***/
  section.kv {
    margin-top: -91px;
  }
  .kv .kv-item {
    /* margin-top: -27px; */
  }
  .kv .kv-item .kv-item__btn.btn-com .kv-item__btn-icon {
    max-width: 50px;
  }
  .kv .kv-item .kv-item__btn-text p:first-of-type::before,
  .kv .kv-item .kv-item__btn-text p:first-of-type::after {
    height: 25px;
  }
  /*** nav ***/
  .nav {
    margin-left: 30px;
  }
  .nav img {
    max-width: 80%;
  }
  /*** feature ***/
  .feature .feature-content {
    max-width: 640px;
  }
  .feature .feature-content.pc-only {
    display: none;
  }
  /*** overview ***/
  .overview .overview-content {
    max-width: 750px;
  }
  .overview .overview-content .content-wrap {
    display: block;
  }
  .overview .overview-content .text-wrap {
    display: block;
  }
  .overview .overview-content .content-wrap .text-wrap .sp-only {
    display: none;
  }
  .overview .overview-content .content-wrap .text-wrap {
    justify-content: center;
  }
  .overview .overview-content .content-wrap .text-wrap:last-of-type {
    display: flex;
    width: 100%;
  }
  .overview .def-term {
    margin-bottom: 20px;
    padding: 10px 20px;
    font-size: 2rem;
    line-height: 9;
  }
  .overview .overview-content .content-wrap .text-wrap:first-of-type  {
    width: 100%;
    margin-bottom: 30px;
  }
  .overview .overview-content .content-wrap .text-wrap:first-of-type .def-term {
    margin-bottom: 0;
  }
  .overview .overview-content .content-wrap .text-wrap:last-of-type .def-term {
    max-width: 200px;
    margin-bottom: 0;
  }
  .overview .def-desc.emphasis {
    max-width: 265px;
    width: 100%;
    line-height: 0;
  }
  .overview .def-desc.emphasis span {
    font-size: 2.8rem;
  }
  /*** company ***/
  /*** modal ***/
  .modal-item .text-wrap {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  /* .modal .content-group__list .content-heading a::after {
    width: 18px;
    height: 18px;
    background: url(../images/external-link.png) center 2px / 16px no-repeat;
  } */
  .company .booth {
    flex-direction: column;
  }
  .company .booth-list {
    width: 100%;
    max-width: 300px;
  }
  .company .booth-list:nth-of-type(odd) {
    margin-right: 0;
  }
  /*** footer ***/
  .footer .inner {
    padding: 20px 30px;
  }
}
@media screen and (max-width: 900px) {
  .company .lead-item {
    flex-direction: column;
    padding: 0 10px;
  }
  .company .lead-item:first-of-type .lead-item__link {
    margin-bottom: 60px;
  }
  .company .lead-item .lead-item__link {
    width: 100%;
  }
  .company .lead-item .lead-item__btn {
    max-width: 300px;
    margin: 0 auto;
  }
  .company .lead-item .lead-item__image {
    margin-bottom: 30px;
  }
  .company .lead-item .lead-item__btn-text {
    font-size: 1.8rem;
  }
  .company .lead-item .lead-item__btn-text span {
    font-size: 1.3rem;
  }
  .company .lead-item .lead-item__btn-icon {
    transform: translate(0, -6%);
  }
}
@media screen and (max-width: 768px) {
  /*** overall ***/
  section {
    padding: 20px 0;
  }
  .pc-only.media768 {
    display: none;
  }
  .sp-only.media768 {
    display: block;
  }
  .host {
    max-width: none;
  }
  /*** kv ***/
  section.kv {
    margin-top: 0;
  }
  .kv .kv-item {
    flex-direction: column;
    /* margin-top: -37px; */
  }
  .kv .kv-item .kv-item__btn {
    width: 100%;
  }
  .kv .kv-item .kv-item__btn-text p:first-of-type {
    font-size: 2rem;
  }
  .kv .kv-item .kv-item__btn-text p:last-of-type {
    font-size: 3rem;
  }
  .kv .kv-item .kv-item__btn.btn-com .kv-item__btn-icon {
    max-width: 60px;
  }
  /*** nav ***/
  .nav {
    display: none;
  }
  /*** feature ***/
  .feature .feature-content {
    display: block;
    max-width: fit-content;
    padding: 0 10px;
  }
  .feature .feature-list {
    width: auto;
    text-align: left;
  }
  .footer .item-detail h2 {
    font-size: 2rem;
  }
  .footer .inner {
    padding: 20px;
  }
  /*** overview ***/
  .overview .overview-content .content-wrap {
    max-width: 400px;
    margin: 0 auto;
  }
  .overview .overview-content .content-wrap .text-wrap {
    display: block;
  }
  .overview .overview-content .content-wrap .text-wrap:last-of-type {
    display: block;
  }
  .overview .overview-content .content-wrap .text-wrap:first-of-type .def-term,
  .overview .overview-content .content-wrap .text-wrap:last-of-type .def-term {
    width: 100%;
    height: 40px;
    line-height: 1;
    max-width: none;
    margin-bottom: 10px;
  }
  .overview .def-desc {
    max-width: 350px;
    margin: 0 auto;
  }
  .overview .def-desc.emphasis {
    max-width: 265px;
    width: 100%;
    line-height: 0;
    max-width: none;
    line-height: 1;
    text-align: center;
  }
  /*** company ***/
  .company {
    /* background: url("../images/company-bg_sp.jpg") center top / contain repeat-y; */
    background-size: 80%;
    padding: 120px 20px;
  }
  .company .inner {
    min-height: 720px;
    padding: 50px 0px 20px;
  }
  .company .text-wrap {
    padding: 0 40px 15px;
  }
  .company .text-wrap .section-title {
    margin-bottom: 30px;
    font-size: 4rem;
  }
  .company .text-wrap .section-title + p {
    margin-bottom: 30px;
    line-height: 1.8;
  }
  /*** map ***/
  .company-map {
    padding: 0 10px;
  }
  .company-map .wpgmza_map.wpgmza-auto-left {
    height: 340px !important;
  }
  /*** category ***/
  .company .cat-name {
    width: calc( ( 100% - 30px ) / 2);
    font-size: 1.6rem;
    padding: 20px 40px;
  }
  .company .cat-item {
    max-width: 450px;
    margin: 0 auto;
  }
  .company .cat-item .cat-item__list {
    width: calc( ( 100% - 30px ) / 2);
    max-width: 200px;
  }
  /*** tab ***/
  .company .tab {
    max-width: 470px;
  }
  .company .tab .tab-name {
    width: 100%;
    width: calc( ( 100% - 30px ) / 2);
    font-size: 1.6rem;
  }
  .company .tab .tab-name a {
    padding: 20px 40px;
  }
  .company .tab-content .tab-item {
    max-width: 450px;
    margin: 0 auto;
  }
  .company .tab-content .tab-item .tab-item__list {
    width: calc( ( 100% - 30px ) / 2);
    max-width: 200px;
  }
  /*** modal ***/
  .modal .special:not(:last-of-type) {
    margin-bottom: 30px;
    padding-bottom: 0;
  }
  .modal .special-item {
  margin-bottom: 20px;
  padding-top: 20px;
  }
  .modal .special-heading {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .modal .special-heading img {
    max-width: 50px;
    margin-right: 15px;
  }
  .modal .content-group {
    padding-top: 40px;
  }
  .modal .content-group__list {
    width: calc( ( 100% - 20px ) / 2 );
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 50px;
  }
  /* .modal .content-group__list .content-heading {
    font-size: 1.6rem;
    height: 55px;
  } */
  .modal .content-group__list-text .def-term {
    font-size: 1.4rem;
  }
  .modal .content-group__list-text .def-desc {
    font-size: 1.2rem;
  }
  .modal .kurumin .content-group__list:nth-of-type(odd) {
    margin-right: 20px;
  }
  /* kurumin くるみん エリア別 */
  .modal .area-kurumin .special-heading{
    padding-top: 20px;
    margin-bottom: 0;
  }
  .company .booth {
    padding: 0 40px;
  }
}
@media screen and (max-width: 600px) {
  .modal .content-group__list,
  .modal .kurumin .content-group__list,
  .modal .kurumin .content-group__list:nth-of-type(odd) {
    width: 80%;
    margin: 0 auto 30px;
  }
  .modal .kurumin .content-group__list {
    float: initial;
  }

}
@media screen and (max-width: 500px) {
  /*** kv ***/
  section.kv {
    padding: 0 0 30px 0;
  }
  .kv .kv-item {
    /* margin-top: -27px; */
    padding: 20px;
  }
  .kv .kv-item .kv-item__btn-text p:first-of-type {
    font-size: 1.6rem;
  }
  .kv .kv-item .kv-item__btn-text p:last-of-type {
    font-size: 2.4rem;
  }
  .kv .kv-item .kv-item__btn-text p:first-of-type::before,
  .kv .kv-item .kv-item__btn-text p:first-of-type::after {
    width: 2px;
    height: 20px;
  }
  .kv .kv-item .kv-item__btn-text p:first-of-type::before {
    left: -10px;
  }
  .kv .kv-item .kv-item__btn-text p:first-of-type::after {
    right: -8px;
  }
  .kv .kv-item .kv-item__btn.btn-com {
    padding: 16px 10px 20px 10px;
  }
  .kv .kv-item .kv-item__btn.btn-com .kv-item__btn-icon {
    max-width: 50px;
  }
  .kv .kv-item .kv-item__btn.btn-js .kv-item__btn-icon {
    right: 10px;
  }
  .kv .kv-item .kv-item__btn.btn-js .kv-item__btn-icon svg {
    width: 45px;
    height: 45px;
  }
  /*** company ***/
  .company .inner {
    padding: 30px 0 20px;
    border: 7px solid #f2e426;
  }
  .company .text-wrap {
    padding: 0 25px;
  }
  .company .text-wrap .section-title {
    font-size: 4rem;
  }
  .company-map .text-wrap {
    padding: 20px 0;
  }

  .company .cat-name {
    font-size: 1.4rem;
    padding: 20px;
  }
  .company .cat-item {
    padding: 0 10px;
  }

  .company .tab .tab-name {
    font-size: 1.4rem;
  }
  .company .tab .tab-name a {
    padding:  20px 0;
  }
  .company .tab {
    padding: 0 10px;
  }
  .company .tab-content .tab-item {
    padding: 0 10px;
  }
  .company .tab .tab-name {
    font-size: 1.4rem;
  }
  .company .tab .tab-name a {
    padding:  20px 0;
  }
  .company .tab-content {
    padding: 30px 0 0 0;
  }
  /*** modal ***/
  .modal-content {
    padding: 20px 15px 40px;
  }
  .modal-item .text-wrap {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .modal .content-group__list {
    /* margin-top: 40px; */
    margin-top: 0;
  }
  .modal .content-group__list .content-heading {
    font-size: 1.4rem;
  }
  .modal .content-group__list-text .def-term {
    font-size: 1.3rem;
  }
  .modal .content-group__list-text .def-desc {
    font-size: 1.1rem;
  }
  .modal-close {
    margin-top: 40px;
  }
  /*** booth ***/
  .company .booth {
    padding: 0 15px;
  }
  .company .booth-list {
    max-width: 240px;
  }
  .company .booth-list a {
    min-height: 50px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 414px) {
  /*** kv ***/
  .kv .kv-item {
    /* margin-top: -20px; */
  }
  /*** feature ***/
  .feature .section-title {
    font-size: 2rem;
  }
  .feature .feature-list {
    font-size: 1.6rem;
  }
  /*** modal ***/
  .modal-heading {
    font-size: 1.8rem;
  }
  .modal-heading + p {
    font-size: 1.4rem;
  }
  .modal .special {
    margin-bottom: 30px;
  }
  .modal .content-group__list .content-heading {
    font-size: 1.2rem;
  }
  .modal .content-group__list .content-heading a::after {
    width: 16px;
    height: 16px;
    background: url(../images/external-link.png) center 5px / 11px no-repeat;
  }
  .modal .content-group__list-text .def-term {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 375px) {
  /*** kv ***/
  .kv .kv-item .kv-item__btn-text p:last-of-type {
    font-size: 2rem;
  }
  .kv .kv-item .kv-item__btn.btn-com .kv-item__btn-icon {
    max-width: 40px;
    bottom: 0;
  }
  /*** company ***/
  .company .tab-content {
    padding: 30px 0 0 0;
  }
  .company .tab .tab-name a {
    padding: 10px 0;
  }
  .company .tab-content .tab-item {
    padding: 0px 15px;
  }
  .company .tab-content .tab-item .tab-item__list {
    width: calc( ( 100% - 15px ) / 2);
  }
  .company .text-wrap .section-title + p {
    font-size: 1.3rem;
    line-height: 1.8;
  }
  /*** modal ***/
  .modal-content {
    max-height: 600px;
    padding: 20px 10px 40px;
    border: 7px solid #f2e426;
  }
}
@media screen and (max-width: 320px) {
  /*** feature ***/
  .feature .feature-content {
    max-width: 280px;
    padding: 0 0 0 10px;
  }
  /* company */
  .company .lead-item .lead-item__btn-icon {
    max-width: 28px;
    transform: translate(-1px, 16%);
  }
  /*** modal ***/
  .modal-content {
    max-height: 500px;
    border-radius: 15px;
  }
}
