@charset "UTF-8";

/*----------------------------------------------
  color
------------------------------------------------*/
/* 色一覧 */


/*----------------------------------------------
　base
------------------------------------------------*/
body {
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  color: #222;
}

a {
  display: inline-block;
  color: var(--black);
  text-decoration: none;
}

html {
  overflow-x: hidden;
  font-weight: normal;
}

ul {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
  box-sizing: border-box;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

h1 {
  font-size: 4.074rem;
  font-weight: 700;
  line-height: 1.2;
  font-display: swap;
}

h2 {
  font-size: 3.074rem;
  font-weight: 700;
  line-height: 1.2;
  font-display: swap;
}

h3 {
  font-size: 2.074rem;
  font-weight: 700;
  line-height: 1.2;
  font-display: swap;

}

h4 {
  font-size: 1.44rem;
  font-weight: 700;
  line-height: 1.2;
  font-display: swap;
}

h5 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6;
  font-display: swap;
}

p {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  font-display: swap;
}

br {
  display: block;
}

.sp-br {
  display: inline;
}

@media screen and (max-width: 900px) {
  .sp-br {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 2.074rem !important;
    font-weight: 700;
  }

  h3 {
    font-size: 1.125rem !important;
    font-weight: 700;
  }

  h4 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
  }

  p,
  h5 {
    font-size: 0.875rem !important;
    line-height: 1.4 !important;
  }

  br {
    display: none;
  }
}

/*----------------------------------------------
　marker
------------------------------------------------*/
.marker {
  background: -webkit-linear-gradient(left, rgb(255, 255, 0, 0.4) 50%, transparent 50%);
  background: -moz-linear-gradient(left, rgb(255, 255, 0, 0.4) 50%, transparent 50%);
  background: linear-gradient(left, rgb(255, 255, 0, 0.4) 50%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 200% .8em;
  background-position: 100% .5em;
  transition: 2s;
  line-height: 0.8;
}

.marker.is-active {
  background-position: 0% .5em;
}

/*----------------------------------------------
 breadcrumb
------------------------------------------------*/
.breadcrumb {
  position: absolute;
  z-index: 5;
  top: 65px;
  left: 25px;
  text-align: left;
  list-style: none;
}

.breadcrumb li {
  display: inline;
  list-style: none;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.1;
}

.breadcrumb li:after {
  content: '>';
  padding: 0 0.2em;
  color: #555;
}

.breadcrumb li:last-child:after {
  content: '';
}

@media screen and (max-width: 999px) {
  .breadcrumb {
    left: 20px;
    padding-right: 25px;
  }

  .breadcrumb li {
    font-size: 0.75rem !important;
    line-height: 0.75rem !important;
  }
}

/*----------------------------------------------
 modal
------------------------------------------------*/
a.modal_open {
  display: inline-block;
}

.modal {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
}

.modal_bg {
  position: absolute;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
}

.modal_content {
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 850px;
  height: 90%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  z-index: 999;
  overflow-y: scroll;
}

.modal_content::-webkit-scrollbar {
  display: none;
}

.modal_title {
  padding: 20px;
  background-color: rgb(255, 159, 57);
  border-radius: 20px 20px 0 0;
  font-size: clamp(1rem, 2vw, 1.25rem) !important;
  text-align: center;
  color: #fff;
}

.modal_overview {
  padding: 40px 70px;
}

.close_btn {
  position: absolute;
  top: 20px;
  right: 20px;
}

.modal_close span {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
}

.modal_close span::before,
.modal_close span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 30px;
  background: #fff;
  border-radius: 10px;

}

.modal_close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal_close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.overview-mark {
  display: flex;
  margin-bottom: 10px;
}

.overview-mark-img {
  width: 40%;
  height: auto;
}

.overview-mark-p {
  width: 60%;
  padding-left: 50px;
}

.overview-mark-sab>p>span {
  color: #FD6925;
  font-size: 18px;
  font-weight: 600;
}

.overview-mark-p .link {
  text-align: right;
}

.overview-mark-p .link a {
  color: var(--darkorange);
  font-weight: 500;
}

.overview-mark-p .link a:hover {
  color: rgb(255, 159, 57);
}

.annotation {
  font-size: clamp(0.75rem, 0.9vw, 0.8125rem) !important;
  font-weight: 500;
  line-height: 1.5;
  margin: 10px 0;
  color: #6e6e6e;
}

.osusume {
  display: flex;
  align-items: center;
  padding-top: 20px;
}

.best_item {
  width: 8%;
  max-width: 90px;
  height: auto;
}

.osusume ul {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  margin-left: 3%;
  padding: 10px 40px;
  background-color: #fcf4ce;
  border-radius: 10px;
}

.osusume>ul>li {
  position: relative;
  list-style: none;
  margin: 5px 45px 5px 0;
  font-size: 14px;
  line-height: 1.5;
}

.osusume>ul>li::before {
  content: "";
  position: absolute;
  left: -8px;
  top: calc(0.75em - 3px);
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.overview-mark-sab {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.overview-mark-sab img {
  padding-left: 10px;
  width: 50px;
  height: 100%;
}

.hr-orage {
  border-top: solid 1px #FD6925;
  margin: 20px 0;
}

.target {
  display: flex;
  justify-content: center;
  padding-top: 40px;
}

.target ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
}

.target>ul>li {
  padding: 0 10px 10px 0;
}

.target>ul>li>img {
  max-width: 100px;
  width: 100%;
  height: auto;
}

.target-p {
  font-size: clamp(1rem, 2vw, 1.44rem) !important;
  font-weight: 700;
  line-height: 1.2;
  margin: 10px 0;
  text-align: center;
}

.target-p-span {
  font-size: clamp(0.75rem, 0.9vw, 0.8125rem) !important;
  font-weight: 500;
  line-height: 1.5;
  margin: 10px 0;
  text-align: center;
  color: #6e6e6e;
}

@media screen and (max-width: 700px) {
  .modal_overview {
    padding: 40px;
  }

  .overview-mark {
    display: flex;
    flex-direction: column;
  }

  .overview-mark-p {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }

  .overview-mark-img {
    width: 80%;
    height: auto;
    margin: 0 auto;
  }

  .target>ul>li>img {
    width: 50px;
    height: auto;
  }

  .osusume {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
  }

  .best_item {
    width: 20%;
    margin-bottom: 10px;
  }

  .osusume ul {
    width: 100%;
    margin-left: 0;
    padding: 20px 40px;
  }

  .target-p-span {
    text-align: left;
  }
}

@media screen and (max-width: 430px) {
  .osusume>ul>li {
    margin: 5px 0;
  }

  .osusume ul {
    flex-direction: column;
  }

}

/*----------------------------------------------
  slider
------------------------------------------------*/
.toollistcontents {
  margin: 30px 0;
  overflow: hidden;
}

.toollistbox {
  margin: 0 20px 10px;
  padding: 15px 20px 30px 20px;
  background-color: #fff;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
  border-radius: 20px;
  text-align: left;
}

.toollistbox-img {
  display: block;
  max-width: 160px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 20px 0;
}

.toollistbox p:nth-of-type(1) span {
  display: block;
  padding-bottom: 0.7rem;
  border-bottom: solid 1px #56c02b;
  font-size: 1.44rem;
  font-weight: 700;
  line-height: 1.2;
  font-display: swap;
  color: #56c02b;
  text-align: center;
}

.toollistbox>p:nth-of-type(2)>span {
  font-size: 0.8rem;
}

.toollistbox>p:nth-of-type(3)>span {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6;
  font-display: swap;
}

.toollistbox .markbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 15px;
  padding-top: 10px;
}


.toollistbox .markbox li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  background: rgba(80, 192, 43, 0.15);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 5px;
  padding: 5px 0 5px 0;
  text-align: center;
  line-height: 16px;
}

.return2 {
  display: block;
  width: min(80vw, 370px);
  margin: 30px auto 0;
  padding: 10px 60px;
  background-color: #4c9f38;
  border-radius: 50px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.35);
  border: none;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.67;
  color: #ffffff;
  text-decoration: none;
}

.return2:hover {
  opacity: 0.9;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 1);
}

.slick-dots {
  margin: 50px 30px 0 30px;
  text-align: center;
  border: none;
}

.slick-dots li {
  display: inline-block;
  margin: 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 15px;
  height: 15px;
  display: block;
  border-radius: 50%;
  background: #e6e6e6;
  padding: 0;
}

.slick-dots .slick-active button {
  background: #56c02b;
}

.slick-track {
  display: flex;
}

.slick-slide {
  height: auto !important;
}

.slider_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.slider_nav .slick-dots {
  display: flex !important;
  gap: 10px;
  margin: 0;
}

.custom-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #56c02b;
  font-size: 12px;
  color: #fff;
  text-align: center;
}

.slick-next {
  order: 3;
}

@media screen and (max-width: 767px) {
  .toollistbox-title span {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
  }

  .toollistbox {
    margin: 0 10px 10px;
  }
}

/*----------------------------------------------
  top-return
------------------------------------------------*/
button.return3 {
  display: flex;
  place-content: center;
  place-items: center;
  background-color: #ffffff;
  margin: 50px auto;
  border-radius: 50px;
  border: none;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
}

button.return3 a {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.67;
  padding: 5px 30px;
  text-decoration: none;
}

/*----------------------------------------------
  header
------------------------------------------------*/
header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  top: 0;
  width: 100%;
  height: 60px;
  margin: 0 auto;
  padding: 0px 10px 0 10px;
  background-color: #ffffff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, .16);
}

.header-logo {
  max-width: 250px;
  width: 100%;
  height: auto;
  font-size: 0;
}

/*pc-button*/
.header-pc-menu {
  display: flex;
  list-style: none;
  margin: 15px 0;
  gap: 25px;
}

.header-pc-menu>li {
  position: relative;
}

.header-pc-menu>li>a {
  position: relative;
  display: inline-block;
  padding: 5px 30px;
  border-radius: 30px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.77;
}


.header-pc-menu>li:nth-of-type(1)>a {
  background-color: #e5243b;
}

.header-pc-menu>li:nth-of-type(2)>a {
  background-color: #f9c30a;
}

.header-pc-menu>li:nth-of-type(3)>a {
  background-color: #56c02b;
}

.header-pc-menu>li:nth-of-type(4)>a {
  background-color: #26bde2;
}

.header-pc-menu>li:nth-of-type(5)>a {
  background-color: #f569af;
}

.header-pc-menu>li>a>span {
  position: absolute;
  left: -15px;
  bottom: 3px;
  width: 41px;
  height: auto;
}

.header-pc-menu>li>a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  transform: rotate(45deg);
  width: 12px;
  height: 12px;
  margin: auto;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
}

/*pc-dropdown*/
.about-dropdownmenu {
  visibility: hidden;
  position: absolute;
  padding-top: 20px;
  top: 40px;
  z-index: 20;
  transition: ease 0.2s;
  opacity: 0;
  transform: translateY(10px);
}

.about-dropdownmenu>ul {
  background: #fff;
  border-radius: 5px;
  padding: 0 20px 15px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

.about-dropdownmenu>ul>li {
  padding-top: 15px;
  text-align: left;
}

.about-dropdownmenu>ul>li:hover {
  opacity: 0.6;
}

.header-pc-menu>li:nth-of-type(3):hover .about-dropdownmenu,
.header-pc-menu>li:nth-of-type(4):hover .about-dropdownmenu,
.header-pc-menu>li:nth-of-type(5):hover .about-dropdownmenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-pc-menu>li:nth-of-type(3)>.about-dropdownmenu {
  right: -50px;
  width: 230px;
  color: #56c02b;
}

.header-pc-menu>li:nth-of-type(4)>.about-dropdownmenu {
  right: -10px;
  width: 200px;
  color: #26bde2;
}

.header-pc-menu>li:nth-of-type(5)>.about-dropdownmenu {
  right: 0;
  width: 250px;
  color: #f569af;
}

/*sp*/
.header_sp {
  display: none;
}

.drawer__button {
  position: fixed;
  top: 5px;
  right: 15px;
  z-index: 999;
  display: inline-block;
  width: 50px;
  height: 50px;
}

.drawer__button>span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 3px;
  background-color: black;
  transform: translateX(-50%);
}

.drawer__button>span:first-child {
  transform: translate(-50%, calc(-50% - 0.75rem));
  transition: transform 0.3s ease;
}

.drawer__button>span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.drawer__button>span:last-child {
  transform: translate(-50%, calc(-50% + 0.75rem));
  transition: transform 0.3s ease;
}

.drawer__button.active>span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer__button.active>span:nth-child(2) {
  opacity: 0;
}

.drawer__button.active>span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.drawer__nav {
  position: fixed;
  top: 0;
  left: 0;
  overflow: scroll;
  visibility: hidden;
  width: 100%;
  height: 100vh;
  padding: 6rem 2.5rem 1rem;
  margin: 0 0 0 auto;
  opacity: 0;
  background-color: #FCFCE2;
  transition: opacity 0.3s ease;
}

.drawer__nav.active {
  opacity: 1;
  visibility: visible;
}

.drawer__nav__logo {
  display: block;
  width: 155px;
  margin-bottom: 1rem;
}

.drawer__nav__link {
  display: block;
  padding: 1rem 0;
  font-size: 1.25rem;
  text-decoration: none;
}

body.active {
  height: 100%;
  overflow: hidden;
}

/*link-banner*/
.inquiry {
  position: fixed;
  right: 20px;
  top: 80px;
  z-index: 8;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.inquiry.show {
  opacity: 1;
  pointer-events: auto;
}

.inquiry_link {
  position: relative;
  display: block;
  width: 200px;
  height: auto;
  z-index: 10;
}

/*header-responsive*/
@media screen and (max-width: 1320px) {
  .header-logo {
    max-width: 200px;
  }

  .header-pc-menu a {
    font-size: 1rem;
  }

  .header-pc-menu>li>a>span {
    width: 35px;
    left: -10px;
  }
}

@media only screen and (max-width: 1200px) {
  .header-pc-menu a {
    font-size: min(1.6vw, 0.8125rem) !important;
  }

  .header-pc-menu>li>a>span {
    width: 30px;
    left: -5px;
  }

  .header-pc-menu {
    gap: 18px;
  }
}

@media screen and (max-width:999px) {
  .header-logo {
    max-width: 140px;
  }

  .header-pc-menu {
    display: none;
  }

  .header_sp {
    display: inline;
  }

  .inquiry {
    display: none;
  }

}

/*----------------------------------------------
  footer
------------------------------------------------*/

/*contact*/
.contact {
  width: 100%;
  margin: 0 auto;
  padding: 50px 20px 100px;
}

.contact_pc {
  display: block;
  max-width: 700px;
  width: 100%;
  height: auto;
  margin: 40px auto 20px;
}

.btn_animation {
  display: block;
  width: min(80vw, 600px);
  margin: 20px auto;
  padding: 10px 30px;
  background-color: #1C50AA;
  border-radius: 100px;
  cursor: pointer;
  font-size: 1.728rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-decoration: none;
  animation: btn_animation 1.5s ease-in-out infinite;
}

@keyframes btn_animation {
  0% {
    transform: scale(0.95);
  }

  50% {
    transform: scale(1.0);
  }

  100% {
    transform: scale(0.95);
  }
}

.contact_text {
  width: 100%;
  margin: 0 auto;
  font-size: 1.44rem;
  font-weight: 700;
  text-align: center;
}

.contact_tell {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(80vw, 900px);
  margin: 30px auto 0;
}

.contact_tell p {
  margin: 10px auto 0;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}

.contact_tell a {
  font-size: 2.986rem;
  font-weight: 700;
}

.contact_attention {
  padding-top: 10px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

footer .red {
  color: #e5243b;
}

.br-sp {
  display: none;
}

.contact_sp {
  display: none;
}

/*staff*/
.staff {
  position: relative;
  width: 100%;
  padding-bottom: 400px;
  background: url(../img/bgstaff_c.png) bottom / cover;
  text-align: center;
}

.footer_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.footer_logo img {
  width: 150px;
  height: auto;
}

.staff_name {
  padding: 40px 0;
  font-size: 1.44rem;
  font-weight: 500;
  text-align: center;
}

.staff_about {
  font-weight: 400;
  line-height: 1.6;
  font-size: 1rem;
  text-align: center;
}

@media screen and (max-width:1023px) {
  .staff_name {
    font-size: 0.875rem;
    font-weight: 400;
  }
}

@media screen and (max-width:999px) {
  .contact_tell {
    flex-direction: column-reverse;
    margin: 10px auto 0;
  }

  .contact_sp {
    display: block;
    max-width: 600px;
    width: 80%;
    margin: 20px auto;
  }

  .contact_pc {
    display: none;
  }
}

@media screen and (max-width:767px) {
  .footer_logo img {
    width: 100px;
    height: auto;
  }

  .staff_name {
    font-size: 1.2rem;
  }

  .btn_animation {
    font-size: 1.44rem;
  }

  .contact_text,
  .contact_tell p {
    font-size: 1.5rem;
    font-size: min(4vw, 1.2rem) !important;
  }

  .contact_tell a {
    font-size: min(8vw, 2.5rem) !important;
  }

  .contact_attention {
    font-size: 1rem !important;
  }

  .staff_about {
    font-size: 1rem;
  }

  .staff {
    padding-bottom: 200px;
  }
}

@media screen and (max-width: 660px) {

  .contact_text,
  .contact_tell p {
    font-size: 1.25rem;
  }

  .contact_tell a {
    font-size: 2.25rem;
  }

  .contact_attention {
    margin-top: 5px;
    font-size: 0.875rem !important;
  }
}

@media screen and (max-width: 620px) {
  #btn_animation a.btn {
    font-size: 1.25rem;
  }

  .contact_text,
  .contact_tell p {
    font-size: 0.9375rem;
  }

  .contact_tell a {
    font-size: 1.875rem;
  }
}

@media screen and (max-width: 480px) {
  .btn_animation {
    display: block;
    font-size: 1rem;
  }

  .contact_tell p {
    font-size: 0.625rem;
  }

  .contact_tell a {
    font-size: 1.25rem;
  }

  .contact_attention {
    font-size: 0.75rem !important;
    padding: 0;
  }
}

@media screen and (max-width: 375px) {
  .staff_about {
    font-size: 0.75rem;
  }
}

/*----------------------------------------------
  ★index.html
------------------------------------------------*/
.index {
  background: #FCFDE2;
}

.contents_box {
  max-width: 1100px;
  width: 80%;
  margin: 0 auto;
  padding: 50px 0;
  text-align: center;
}

.sbtitle {
  position: relative;
  z-index: 0;
  padding-top: 80px;
}

.sbtitle-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.sbtitle-text img {
  display: block;
  max-width: 60px;
  height: auto;
}

.sbtitle-bg {
  position: absolute;
  z-index: -1;
  top: 70px;
  left: 50%;
  width: min(80vw, 650px);
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

#mark h2 {
  color: #fd6925;
}

#toollist h2 {
  color: #3f7e44;
}

#reason h2 {
  color: #e5243b;
}

#company h2 {
  color: #00689d;
}

.sdgslink a {
  color: #0000ff;
  border-bottom: solid 1px #0000ff;
  display: inline;
}

.sdgslink a[target="_blank"]::after {
  content: "\f35d";
  display: inline-block;
  margin: 0.3em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .contents_box {
    width: 90%;
    margin: 0 auto;
    padding: 30px 0;
  }
}

@media screen and (max-width: 500px) {
  .sbtitle {
    text-align: left;
  }
}

/*----------------------------------------------
  TOP
------------------------------------------------*/

.index .bg {
  position: relative;
  width: 100%;
  background: url("../img/bgtop_sp.jpg") bottom center / cover;
  background-image:
    url("../img/pcbg-l.png"),
    url("../img/pcbg-r.png");
  background-position: left top, right top;
  background-repeat: no-repeat, no-repeat;
  background-size: auto 100%;
}

.index .top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.index .toptitle {
  position: relative;
  max-width: 800px;
  width: 90%;
  margin: 100px 0 0;
}

.toptitle-inner {
  position: absolute;
  z-index: 2;
  top: 18%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

.toptitle-p1 {
  font-size: 3.074rem;
  font-weight: 700;
  line-height: 1.2;
  font-display: swap;
}

.toptitle-p2 {
  font-size: 1.44rem;
  font-weight: 700;
  line-height: 1.2;
  font-display: swap;
}

.toptitle-inner p:nth-child(2) {
  margin: 20px 0 50px;
}

.toptitle-inner img {
  width: 350px;
}

.toptitle-bottom {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
}

.top-list {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 10px;
}

.top-list li {
  font-family: "vdl-penletter", sans-serif;
  font-size: 40px;
  font-weight: 900;
}

span.marker-g {
  background: linear-gradient(transparent 50%, #BEF5AA 50%);
}

span.marker-r {
  background: linear-gradient(transparent 50%, #FFB2C7 50%);
}

span.marker-b {
  background: linear-gradient(transparent 50%, #A8EAFC 50%);
}

span.marker-y {
  background: linear-gradient(transparent 50%, #FFE98D 50%);
}

.toptitle-bottom p {
  margin: 20px 0;
}

/*top-responsive*/
@media screen and (max-width: 1280px) {
  .top-list li {
    font-size: 2.5vw;
  }

  .bg {
    background-size: auto 100%;
  }
}

@media screen and (max-width: 900px) {
  .toptitle-inner {
    top: calc(130/ 1024 * 100vw);
  }

  .toptitle-inner img {
    width: 35vw;
  }

  .toptitle-p1 {
    font-size: 5.5vw !important;
  }

  .toptitle-p2 {
    margin-top: calc(10 / 1024 * 100vw) !important;
    margin-bottom: calc(50 / 1024 * 100vw) !important;
    font-size: 3vw !important;
    font-weight: 500 !important;
  }

  .bg {
    position: relative;
    width: 100%;
    background-image:
      url("../img/bg-left.png"),
      url("../img/bg-right.png") !important;
    background-position: left 20px, right 20px;
    background-repeat: no-repeat, no-repeat;
    background-size: 30%;
  }

  .toptitle-bottom {
    flex-direction: column-reverse;
  }

  .top-list {
    flex-direction: column;
    gap: 0px;
    background: rgba(255, 255, 255, 0);
    box-shadow: none;
  }

  .toptitle-bottom p {
    font-size: 10px !important;
    line-height: 20px !important;
  }

  .top-list li {
    font-size: 4.5vw;
  }

  .toptitle {
    margin: 80px 0 0;
  }
}

/*----------------------------------------------
  promotion
------------------------------------------------*/
.promotion {
  margin-top: 100px;
  text-align: center;
}

.promotion-h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 80vw;
  margin: 0 auto 30px;
  font-size: min(4.2vw, 36px) !important;
}

.promotion-h2::before,
.promotion-h2::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 60px;
  background-image: url(../img/tree.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.promotion-inner {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.promotion-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 250px;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 3px 6px #00000016;
  background: #fff;
}

.promotion-item:not(:last-child)::after {
  content: "▶";
  position: absolute;
  right: -30px;
  top: 50%;
  width: 30px;
  color: #F9C30A;
  font-size: 30px;
  transform: translateY(-50%);
}

.promotion-item img {
  width: 180px;
  height: auto;
}

.promotion-item02 {
  max-width: 350px;
  width: 100%;
}

.promotion-item02>p>span {
  display: block;
  margin: 10px 0 15px;
  font-weight: 700;
  font-size: 18px !important;
  line-height: 25px;
  color: #333;
  letter-spacing: 0.5px;
}

.promotion-item ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  font-size: 14px;
  color: #444;
}

.promotion-item>div>p:nth-of-type(2) {
  font-size: 20px !important;
  line-height: 25px;
  color: #333;
}

.promotion-last {
  display: grid;
  gap: 30px;
  align-items: center;
  grid-template-columns: 100px 1fr;
  width: min(90vw, 770px);
  margin: 50px auto;
}

.promotion-last p {
  font-size: 20px;
  text-align: left;
  line-height: 40px;
}

/*promotion-responsive*/
@media screen and (max-width: 1280px) {
  .promotion {
    margin-top: 50px;
  }

  .promotion-inner {
    flex-direction: column;
    gap: 30px;
  }

  .promotion-item {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    width: min(80vw, 800px);
    margin: 0 auto;
  }

  .promotion-item li {
    display: inline-block;
  }

  .promotion-item02 p {
    text-align: left;
  }

  .promotion-item:not(:last-child)::after {
    content: "▼";
    top: auto;
    bottom: -65px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .promotion-item:last-child>div>ul>li {
    margin-left: 0px;
  }

  .promotion-item ul {
    align-items: flex-start;
  }
}

@media screen and (max-width: 500px) {
  .promotion-item>div>p:first-of-type {
    text-align: center;
  }

  .promotion-item img {
    width: 35vw;
  }

  .promotion-item {
    padding: 20px;
    flex-direction: column
  }

  .promotion-item {
    gap: 0;
    border-radius: 10px;
  }

  .promotion-item p {
    margin: 5px;
    font-weight: 900;
    font-size: 4.2vw !important;
  }

  .promotion-item>div>p:nth-of-type(2) {
    margin: 10px 0 10px 5px;
    font-size: 18px !important;
  }

  .promotion h3 {
    gap: 10px;
  }

  .promotion h3::before,
  .promotion h3::after {
    width: 10vw;
    height: 10vw;
  }

  .promotion-last {
    grid-template-columns: 70px 1fr;
  }

  .promotion-last br {
    display: none;
  }

  .promotion-item ul {
    align-items: center;
  }

  .promotion-item li {
    max-width: 200px;
  }
}

/*----------------------------------------------
representative
------------------------------------------------*/
.representative {
  width: min(90vw, 1100px);
  margin: 50px auto;
  border-bottom: solid 1px #21689D;
}

.representative h3::after,
.representative h3::before {
  content: "";
  display: block;
  flex-grow: 1;
  border-top: 1px solid #21689D;
}

.representative h3 {
  display: flex;
  gap: 20px;
  align-items: center;
  color: #21689D;
  font-size: 24px;
}

.representative ul {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr;
  width: min(80vw, 800px);
  margin: 0 auto;
  padding: 50px 0;
}

.representative li {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  background: #fff;
}

.representative li>a>img:hover {
  opacity: .7;
}

.promotion02>button {
  display: block;
  margin: 0 auto;
}

.promotion02>button>a {
  width: min(90vw, 400px);
  padding: 5px;
  background: #21689D;
  border-radius: 50px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  transition: .3s ease;
}

.promotion02>button>a:hover {
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.35);
  opacity: .9;
  transform: translateY(-2px);
}

/*representative-responsive*/
@media screen and (max-width: 700px) {
  .representative ul {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 30px;
  }
}

/*----------------------------------------------
  column
------------------------------------------------*/
.column-inner {
  max-width: 1100px;
  padding: 0 20px;
  margin: 50px auto;
  border-bottom: solid 1px #fd6925;
}

.column-inner h3::after,
.column-inner h3::before {
  content: "";
  display: block;
  flex-grow: 1;
  border-top: 1px solid #fd6925;
}

.column-inner h3 {
  display: flex;
  gap: 20px;
  align-items: center;
  color: #fd6925;
  font-size: 24px;
}

.column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 50px 0;
}

.column-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  transition: .3s;
}

.column-card:hover {
  transform: translateY(-5px);
}

.column-card a {
  color: inherit;
  text-decoration: none;
}

.column-cardimg {
  aspect-ratio: 16/10;
}

.column-cardimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  padding: 24px;
}

.category {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  margin-bottom: 15px;
  color: #fff;
  background: #fd6925;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.content h2 {
  font-size: clamp(16px, 2vw, 18px) !important;
  line-height: 1.6;
  margin-bottom: 15px;
}

.content time {
  color: #888;
  font-size: 14px;
}

.column>button {
  display: block;
  margin: 0 auto;
}

.column>button>a {
  width: min(90vw, 400px);
  padding: 5px;
  background: #fd6925;
  border-radius: 50px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  transition: .3s ease;
}

@media (max-width:991px) {
  .column-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:767px) {
  .column-grid {
    grid-template-columns: 1fr;
  }

  .page-heading h1 {
    font-size: 30px;
  }
}

/*----------------------------------------------
 partnership
------------------------------------------------*/
#partnership {
  padding-top: 100px;
}

.partnership {
  position: relative;
  margin: 50px 0 150px;
}

.partnership p {
  padding: 20px 0;
  font-size: min(4.5vw, 23px) !important;
  font-weight: 700;
  text-align: center;
}

.logoslide-item {
  width: 200px;
  margin: 40px 50px 30px;
  text-align: center;
}

.logoslide-item a {
  display: inline-block;
  margin-top: 10px;
  border-bottom: solid 1px#0032FF;
  color: #0032FF;
  line-height: 16px;
}

.logoslide-item a::after {
  content: "\f35d";
  display: inline-block;
  margin: 0.3em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  text-decoration: none;
}

.logoslide {
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-bottom: 100px;
  background-color: #fff;
}

.slideshow {
  display: flex;
  -webkit-animation: loop-slide 40s infinite linear both;
  animation: loop-slide 40s infinite linear both;
}

@-webkit-keyframes loop-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.slide-paused:hover .slideshow {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

/*partnership-responsive*/
@media screen and (max-width: 500px) {
  .partnership p {
    font-size: 4.5vw !important;
    top: calc(-35 / 1024 * 100vw) !important;
  }
}


/*----------------------------------
  mark
------------------------------------*/
.marktab {
  display: flex;
  flex-wrap: wrap;
  gap: 0 15px;
  margin: 40px 0 0;
}

.marktab label:has(:checked) {
  color: #fff;
  background-color: #fd9d24;
}

.marktab>label {
  display: block;
  flex: 1 1;
  order: -1;
  width: 100%;
  margin: 0 auto;
  padding: 10px 20px;
  background-color: #fff;
  color: #fd9d24;
  border: solid 2px #fd9d24;
  border-radius: 50px;
  font-size: min(2vw, 20px);
  text-align: center;
  cursor: pointer;
}

.marktab>label:hover,
.marktab>label:active {
  color: #fff;
  background-color: #fd9d24;
}

.marktab input {
  display: none;
}

.mark-all>.tab_box {
  display: none;
  width: 100%;
  padding: 30px 0;
}

.marktab label:has(:checked) {
  opacity: 1;
}

.mark-all:has([aria-controls="marktab01"]:checked) #marktab01,
.mark-all:has([aria-controls="marktab02"]:checked) #marktab02,
.mark-all:has([aria-controls="marktab03"]:checked) #marktab03,
.mark-all:has([aria-controls="marktab04"]:checked) #marktab04 {
  display: block;
}

.index .tab {
  display: flex;
  justify-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 30px;
  animation: fuwa 0.5s ease;
}

@keyframes fuwa {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.index .tab>div {
  width: 175px;
}

.index .tab p.active a {
  background: #fff;
}

.index .tab img {
  display: block;
  width: 100%;
  max-width: 180px;
  height: auto;
  margin: 20px 0;
  border-radius: 100%;
  background-color: rgba(38, 189, 226, 0.1);
}

.index .line {
  border-bottom: solid 1px #000;
  display: inline;
}

/*mark-responsive*/
@media screen and (max-width: 768px) {
  .index .tab {
    display: grid;
    gap: 15px 30px;
    padding: 0 10px;
    grid-template-columns: 1fr 1fr;
  }

  .index .tab>div {
    width: 100%;
  }

  .marktab {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .marktab>label {
    width: 100%;
    font-size: min(4vw, 16px);
  }
}

/*----------------------------------------------
  catalog
------------------------------------------------*/
.index .toollist {
  text-align: center;
  padding: 100px 0;
}

/*----------------------------------------------
　topix
------------------------------------------------*/
.topix {
  width: min(90vw, 1100px);
  margin: 0 auto;
  padding-bottom: 50px;
  border-bottom: 1px solid #F56AAD;
  margin-bottom: 100px;
  padding-top: 100px;
}

.topix p {
  text-align: center;
  display: flex;
  align-items: center;
  gap: 20px;
}

.topix>p>span {
  font-size: 24px;
  font-weight: 700;
  color: #F56AAD;
}

.topix p::after,
.topix p::before {
  content: "";
  flex-grow: 1;
  border-top: 1px solid #F56AAD;
  display: block;
}

.spe-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  padding: 0 50px;
}

.spe-btn a {
  position: relative;
  display: block;
}

.spe-btn>a>img:first-child {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

.spe-btn a:hover>img:first-child {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .spe-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0;
  }

  .spebtn_box {
    gap: 20px;
  }

  .spebtn {
    width: 360px;
    height: 100px;
  }

  .topix>p>span {
    font-size: 1.125rem !important;
  }
}

/*----------------------------------------------
 reason
------------------------------------------------*/
.reason_box {
  margin: 50px auto 100px;
  opacity: 0;
}

.reason_box-in {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 50px 30px 50px;
  background-color: #fff;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
  border-radius: 20px;
}

.reason_check {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 170px;
  height: auto;
}

.reason_box-in-title {
  padding: 35px 0 35px 200px;
  border-bottom: solid 2px #d81659;
  text-align: left;
  font-size: 1.5625rem;
}

.reason_flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 10px 0;
  text-align: left;
}

.reason_find {
  width: 50px;
  margin: 0 20px 0 0;
}

.reason_flex1,
.reason_flex2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.reason_flex1 {
  justify-content: left;
}

.reason_graph01 {
  width: 350px;
  margin: 0 0 0 30px;
}

.reason_graph02 {
  width: min(60vw, 300px);
  margin: 0 0 0 90px;
}

.reason_answer01,
.reason_answer02 {
  width: min(50vw, 250px);
}

.reason_box-in .reason_office {
  position: absolute;
  right: -100px;
  bottom: -40px;
  width: 350px;
}

.reason_service {
  position: absolute;
  left: -80px;
  bottom: -40px;
  width: 240px;
}

.annotation-font,
.annotation-font2 {
  width: min(85vw, 700px);
  margin: 10px 0 0 0;
  text-align: left;
}

.annotation-font2 {
  margin: 10px 0 0 200px;
}

.annotation-font>p>span,
.annotation-font2>p>span {
  font-size: 0.75rem;
  line-height: 18px;
}

#reason>.contents_box {
  max-width: 900px;
  padding-bottom: 30px;
}

/*reason-animation*/
.reason_box.inview {
  animation-name: fade-in;
  animation-duration: .3s;
  animation-timing-function: ease-in;
  animation-delay: .3s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade-in {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

/*reason-responsive*/
@media screen and (max-width: 1280px) {
  .reason_box:last-child {
    padding-left: 0px;
  }

  .annotation-font {
    margin: 10px auto;
  }
}

@media screen and (max-width: 970px) {
  .reason_box:last-child {
    padding: 0;
  }

  .reason_box-in {
    padding: 0 20px 30px 20px;
  }

  .reason_box-in-title {
    padding: 35px 10px 15px;
  }

  .reason_flex {
    align-items: self-start;
    margin: 20px 0;
    color: #333;
  }

  .reason_flex2 {
    justify-content: center;
  }

  .reason_find {
    width: 20px;
    margin: 0 10px 0 0;
  }

  .reason_check {
    top: -25px;
    left: 0px;
    width: 80px;
  }

  .reason_graph01 {
    width: 55%;
    margin: 0;
  }

  .reason_graph02 {
    width: 45%;
    margin: 0;
  }

  .reason_answer01,
  .reason_answer02 {
    width: 45%;
  }

  .reason_box-in .reason_office,
  .reason_service {
    display: none;
  }

  .sb-title-box-mark {
    display: block;
    width: 30px;
  }

  .annotation-font,
  .annotation-font2 {
    margin: 10px auto;
  }

  .annotation-font>p>span {
    font-size: 10px;
    line-height: 18px;
  }
}

/*----------------------------------
 NEWS
------------------------------------*/
.news {
  position: relative;
  margin-top: 100px;
  background: #fff;
}

#news {
  padding-top: 100px;
  margin-bottom: 30px;
}

.news_h2 {
  position: absolute;
  z-index: 2;
  top: -30px;
  right: 0;
  left: 0;
  width: 135px;
  margin: 0 auto;
  text-align: center;
  color: #00689d;
  font-weight: 900;
}

.news ul {
  width: min(85vw, 1000px);
  margin: 0 auto;
  padding: 50px 0;
}

.news p {
  margin: 0 30px 0 0;
}

.news p:last-child {
  margin: 0 10px 0 0;
}

.news_item {
  display: flex;
  align-items: flex-start;
  padding: 20px 0 15px;
  border-bottom: dotted 2px #919191;
}

.news_item_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.index .news_item {
  align-items: center;
}

.news_item p:first-child>span {
  font-size: 20px;
  letter-spacing: 2px;
}

.news_category {
  border: solid 1px #00689d;
  padding: 2px;
  text-align: center;
  min-width: 140px;
  border-radius: 20px;
  font-size: 14px;
  color: #00689d;
  font-weight: 900;
}

.news_item a {
  width: 100%;
}

.news_inner p:first-child {
  font-weight: 700;
  position: relative;
}

.news_item-y {
  font-weight: 900;
}

.news_all {
  width: min(90vw, 1000px);
  margin: 0 auto;
  text-align: right;
}

.news_all button {
  border: solid 2px #00689d;
  padding: 2px;
  text-align: center;
  width: 120px;
  border-radius: 20px;
  color: #00689d;
  font-weight: 900;
  font-size: 20px;
  margin: 30px 0;
  cursor: pointer;
}

.news_all button:hover {
  background: #00689d;
  color: #fff;
  transition: ease-in-out 0.3s;
}

@media screen and (max-width: 1280px) {
  .news_item {
    flex-wrap: wrap;
  }

  .news_item_flex {
    margin-top: 10px;
  }
}

/*----------------------------------------------

------------------------------------------------*/
.company>.contents_box {
  position: relative;
}

.company-about {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 100px;
}

iframe.youtube-16-9 {
  max-width: 400px;
  width: 90%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.company-about_text {
  position: relative;
  text-align: left;
}

.company-about-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.company-about-link a {
  font-size: 14px !important;
  line-height: 18px;
  color: #444;
  text-align: center;
}

.company-about-link span {
  border-bottom: solid 1px #444;
  transition: .3s;
}

.company-about-link span:hover {
  border-bottom: solid 1px #777;
  color: #777;
}

.company-about-print {
  display: block;
  width: min(30vw, 350px);
  height: auto;
}

.company-about-logo {
  display: block;
  width: 100%;
  max-width: 150px;
  height: auto;
}

.company-about .company_90year {
  position: absolute;
  right: -200px;
  bottom: 110px;
  width: 100%;
  max-width: 200px;
  height: auto;
  z-index: 1;
}

.company_line {
  position: relative;
  border: solid 0.5px #707070;
  width: 100%;
  margin-top: 50px;
}

.company_find {
  position: absolute;
  right: -55px;
  top: 430px;
  max-width: 200px;
  height: auto;
}

.company-detail {
  display: grid;
  grid-template-columns: 1fr 650px;
  gap: 50px;
  text-align: left;
}

.company-detail-right {
  background-color: #fff;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  margin-top: 100px;
  padding: 30px 50px 40px
}

.companydetail-p01 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 10px;
  margin-top: 60px;
}

.companydetail-p03 {
  margin-top: 10px;
  font-size: 14px;
}

.company-font {
  font-size: 40px;
  font-weight: 900;
  padding: 0 10px;
  color: #0a97d9;
}

.company-font span {
  font-size: 1.44rem;
  font-weight: 700;
  line-height: 1.2;
}

.company-detail p>.marker.is-active {
  background-position: 0% 1em;
}

.company-detail p>.marker {
  background-position: 100% 1em;
}

.font14 {
  font-size: 14px;
}

.timeline-title {
  display: block;
  margin: 15px 0;
  font-size: 20px;
  font-weight: 900;
  color: #00689d;
}

/**/
.container {
  margin: 0 auto;
  position: relative;
}

.container:after {
  content: "";
  width: 2px;
  border-left: 6px solid #00689d;
  position: absolute;
  top: 25px;
  bottom: 6%;
  left: 5px;
}

.container dl {
  overflow: hidden;
}

.container dd {
  display: flex;
  align-items: center;
  margin-left: 35px;
  position: relative;
  text-align: left;
  border-bottom: 1px solid #00689d;
  padding: 10px 0;
  font-size: 14px;
}

.container>dl:last-child>dd {
  border-bottom: none;
}

.container>dl>dd>p:last-child {
  font-size: 14px;
  padding-left: 30px;
}

.container>dl>dd>p:first-child {
  font-size: clamp(0.875rem, 0.739rem + 0.22vw, 1rem);
  font-weight: bold;
}

.container>dl>dd>p:first-child:before {
  display: block;
  content: "";
  z-index: 5;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: solid 2px #00689d;
  position: absolute;
  left: -35px;
  top: 38%;
}

.container dd h3 {
  line-height: 1;
  margin-bottom: 5px;
}


/**/
@media screen and (max-width: 1280px) {
  .company-detail {
    grid-template-columns: 1fr 1.5fr;
  }

  .container dd {
    align-items: flex-start;
    padding: 10px 0;
    flex-direction: column;
  }

  .container>dl>dd>p:last-child {
    padding-left: 0;
  }

  .company-detail-right {
    padding: 40px 35px 30px;
  }
}

@media screen and (max-width: 1000px) {
  .company-detail {
    grid-template-columns: 1fr;
  }

  .company-detail-right {
    width: 100%;
    margin: 0 auto;
    padding: 30px 35px 40px;
  }

  .company-about-print {
    display: block;
    height: auto;
  }

  .company_find {
    display: none;
  }

  .company-about .company_90year {
    right: -10px;
    top: -20px;
    width: 120px;
  }

  .company-about-link {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    justify-content: left;
  }

  iframe.youtube-16-9 {
    max-width: 200px;
    width: 90%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .company-about {
    align-items: flex-start;
    gap: 30px;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  iframe.youtube-16-9 {
    max-width: 500px;
    width: 90%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .company-detail-left {
    padding: 0 30px;
  }

  .company-about {
    flex-direction: column;
    align-items: center;
  }

  .company-about .company_90year {
    right: -10px;
    width: 120px;
  }

  .company-about-print {
    display: block;
    width: 80vw;
    height: auto;
  }

  .container dd {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .container>dl>dd>p:last-child {
    padding-left: 0;
  }
}

/*----------------------------------------------
  ★catalog.html
------------------------------------------------*/
.catalog {
  margin-top: 60px;
  padding-top: 40px;
  background-color: #e6f6df;
}

.catalog_title {
  position: relative;
  z-index: 1;
  width: 70%;
  margin: 0 auto;
  text-align: center;
}

.catalog_title_bg {
  position: absolute;
  top: 10%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  width: min(80vw, 570px);
  height: auto;
}

.catalog_title h1 {
  margin: 45px 0 30px 0;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.74;
  text-align: center;
  color: #3F7E44;
}

.catalog_title p {
  margin: 0 0 50px 0;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
}

/*catalog_category*/
.sort_btn {
  width: 70%;
  margin: 0 auto 90px auto;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px 40px;
}

.sort_btn dt {
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.728rem;
  font-weight: 700;
  border-bottom: 1px solid #707070;
  padding-bottom: 5px;
}

.sort_btn dd {
  margin: 10px 0 0 0;

}

.sort_btn ul {
  display: flex;
  flex-wrap: wrap;
}

.sort_btn li {
  margin: 0 10px;
}

.sort_btn li:nth-child(2) {
  margin: 20px 10px 0 10px;
}

.sort_btn ul li {
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  /*font-size: 16px;*/
  font-size: 1rem;
  font-weight: 500;
  background: #ffffff;
  color: #000000;
  border-radius: 5px;
  padding: 2px 20px;
  display: table;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  margin: 7.5px 20px 7.5px 0 !important;
  word-wrap: break-word;
  cursor: pointer;
}

/*現在地＝activeというクラス名がついたら色変更*/
.sort_btn ul li.active {
  background-color: #e6f6df;
  color: #3f7e44;
}

/*catalog_grid*/
.catalog .grid {
  position: relative;
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
}

.catalog .item {
  position: absolute;
  z-index: 1;
  display: block;
  width: 33%;
  padding: 20px;
}

.catalog .item_content {
  position: relative;
  width: 100%;
  height: 500px;
}

.catalog .grid img {
  max-width: 390px;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  vertical-align: bottom;
}

.item_content>a>p:nth-of-type(2)>span {
  display: block;
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.25rem;
  letter-spacing: 1px;
  font-weight: 900;
}

.catalog .markbox {
  display: flex;
  flex-wrap: wrap;
}

.catalog .mark {
  display: table;
  margin: 3.5px 7px 3.5px 0;
  padding: 2px 10px;
  background: #fff;
  border-radius: 5px;
  word-wrap: break-word;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
}

.catalog .ma-1 {
  padding: 2px 20px;
}




@media screen and (max-width: 1460px) {
  .catalog .item_content {
    height: 480px;
  }
}

@media screen and (max-width: 1200px) {
  .catalog_title {
    position: relative;
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }

  .sort_btn {
    width: 80%;
  }

  .sort_btn ul li {
    margin: 7.5px 20px 7.5px 0 !important;
    padding: 2px 20px;
    font-size: 0.875rem;
  }

  .catalog .mark {
    font-size: 0.875rem;
  }

  .catalog .item_content {
    height: 430px;
  }
}


@media screen and (max-width: 1080px) {
  .sort_btn ul li {
    margin: 7.5px 20px 7.5px 0 !important;
    padding: 2px 20px;
    font-size: 0.75rem;
  }

  .catalog .mark {
    font-size: 0.75rem !important;
  }

  .catalog .item_content {
    position: relative;
    width: 100%;
    height: 400px;
  }
}


@media screen and (max-width: 999px) {
  .catalog .item_content {
    position: relative;
    width: 100%;
    height: 400px;
  }
}

@media screen and (max-width: 810px) {
  .sort_btn li {
    width: 100%;
    margin: 0;
  }

  .sort_btn ul li {
    width: auto;
  }

}

@media only screen and (max-width: 768px) {
  .catalog .item {
    width: 49.5%;
    padding: 0 5px 10px 5px;
  }
}

@media screen and (max-width: 767px) {
  .catalog_title {
    position: relative;
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }

  .catalog_title h1 {
    font-size: 2.5rem;
  }

  .catalog_title p {
    font-size: 1rem;
  }

  .sort_btn {
    width: 90%;
    margin: 0 auto 50px auto;
    padding: 26px 40px;
  }

  .sort_btn dt {
    font-size: 1.5rem;
  }

  .catalog .grid {
    position: relative;
    width: 90%;
    margin: 0 auto;
  }

  .catalog .item_content {
    position: relative;
    width: 100%;
    height: 420px;
  }

  .item_content>a>p:nth-of-type(1)>span {
    font-size: 0.75rem;
  }

  .item_content>a>p:nth-of-type(2)>span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.875rem;
    line-height: 1rem;
    letter-spacing: 1px;
    font-weight: 900;
  }
}

@media screen and (max-width: 480px) {
  .catalog_title h1 {
    margin: 35px 0 15px 0;
    font-size: 1.875rem;
  }

  .catalog_title p {
    margin: 0 0 25px 0;
    font-size: 0.875rem;
  }

  .sort_btn {
    margin: 0 auto 68px auto;
    padding: 20px;
  }

  .catalog .item_content {
    position: relative;
    width: 100%;
    height: 350px;
  }
}


@media screen and (max-width: 375px) {
  .catalog_title p {
    font-size: 0.75rem;
  }
}

/*----------------------------------------------
  ★news
------------------------------------------------*/
.newsall {
  margin-top: 60px;
  padding-top: 40px;
  background: #fcfde2;
}

.newsall-wbg {
  background: #fff;
}

.newsall-inner {
  position: relative;
  width: min(85vw, 1000px);
  margin: 150px auto 0;
  padding-bottom: 50px;
}

.newsall h2 {
  position: relative;
  z-index: 2;
  color: #00689d;
  text-align: center;
}

.newsall ul {
  padding: 40px 0;
}

.newsall-bgimg {
  position: absolute;
  top: -120px;
  right: 0;
  left: 0;
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
  z-index: 0;
}

/*filter*/
.filter {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.filter li {
  padding: 2px;
  border-radius: 20px;
  border: solid 1px #00689d;
  font-size: 14px;
  color: #00689d;
  font-weight: 900;
  text-align: center;
}

.filter li.is-active {
  background-color: #1C50AA;
  color: #fff;
}

/*item*/
.newsall-category {
  border-top: solid 2px #afafaf;
  border-bottom: solid 2px #afafaf;
}

.newsall_item {
  display: flex;
  align-items: flex-start;
  padding: 20px 0 15px;
  border-bottom: dotted 2px #919191;
  display: none;
}

.newsall_item.is-show {
  display: flex;
}

.newsall_item.on {
  display: flex;
}

.newsall_item p {
  margin: 0 30px 0 0;
}

.newsall_item p:first-child>span {
  font-size: 20px;
  letter-spacing: 2px;
}

.newsall_category {
  border: solid 1px #00689d;
  padding: 2px;
  text-align: center;
  min-width: 140px;
  border-radius: 20px;
  font-size: 14px;
  color: #00689d;
  font-weight: 900;
}

.newsall_item p:last-child {
  margin: 0 10px 0 0;
}

.newsall_item_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.newsall_item a {
  width: 100%;
}

.newsall_inner p:first-child {
  font-weight: 700;
  position: relative;
}

.newsall_inner span {
  display: block;
  margin: 5px 0 0;
  font-size: 14px;
  color: #444;
}

.newsall_item-y {
  font-weight: 900;
}

/*newsall-pagination*/
.newsall .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  margin: 30px auto 50px;
  font-size: 16px;
  text-align: center;
}

.newsall .page-number-btn {
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border-radius: 25px;
  border: solid 1px #1C50AA;
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 20px;
  font-family: "Zen Kaku Gothic New";
  color: #1C50AA;
}

.newsall .page-number-btn.is-current {
  border: solid 1px #1C50AA;
  background: #1C50AA;
  color: #fff;
}

.newsall #prevBtn,
.newsall #nextBtn {
  width: 40px;
  height: 40px;
  border-radius: 25px;
  border: solid 1px #1C50AA;
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 20px;
  color: #1C50AA;
  font-family: "Zen Kaku Gothic New";
}

@media screen and (max-width: 1280px) {
  .newsall_item {
    flex-wrap: wrap;
  }

  .newsall_item_flex {
    margin-top: 10px;
  }
}

@media screen and (max-width: 1000px) {
  .pagination>li {
    display: none;
  }

  .pagination>li:first-child,
  .pagination>li:nth-last-child(1),
  .pagination>li.on {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .newsall-bgimg {
    position: absolute;
    top: calc(-145 / 1024 * 100vw);
    width: 90%;
  }
}

@media screen and (max-width: 500px) {
  .filter {
    grid-template-columns: 1fr 1fr;
  }

  .newsall {
    margin-top: 0;
  }

  .newsall_item_flex {
    align-items: flex-start;
  }
}

/*----------------------------------------------
  news-single
------------------------------------------------*/
.post {
  position: relative;
  background: #fff;
  margin-top: 150px;
  padding-bottom: 50px;
}

.post-inner a {
  border-bottom: solid 1px #666;
  line-height: 16px;
  color: #666;
}

.post-inner {
  padding-bottom: 50px;
  margin: 0 auto;
  width: min(90vw, 1000px);
}

.post-line-img {
  max-width: 500px;
  width: 100%;
  margin: 30px auto;
}

.post-inner>p {
  padding: 2px;
  text-align: center;
  width: 150px;
  border-radius: 20px;
  font-size: 14px;
  color: #fff;
  font-weight: 900;
  background: #00689d;
  margin-top: 50px;
}

.post-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 20px 0;
  width: 100%;
}

.post-title h3 {
  width: 70%;
}

.post-title p {
  font-size: 20px;
  letter-spacing: 2px;
}

.post h2 {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #00689d;
  font-weight: 900;
}

.post-bg {
  position: absolute;
  top: -120px;
  right: 0;
  left: 0;
  width: min(90vw, 600px);
  margin: 0 auto;
  z-index: 0;
}

.post-line {
  width: 100%;
  padding: 30px 100px;
  border-top: solid 2px #afafaf;
  border-bottom: solid 2px #afafaf;
}

.post-yellow {
  background: #fdfce2;
  padding: 30px;
  line-height: 35px;
}

.post-bold {
  font-weight: 900;
  font-size: 20px;
  line-height: 40px;
}

.buttonbox {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.buttonbox a {
  border-bottom: none;
  line-height: 16px;
}

.button {
  display: inline-block;
  padding: 5px 40px;
  width: 300px;
  border-radius: 50px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  line-height: 22px;
}

.button:hover {
  opacity: 0.8;
  transition: ease 0.2s;
}

.button span {
  display: block;
  font-size: 18px;
  font-weight: 900;
}

.color01 {
  background: #1c50aa;
}

.color02 {
  background: #f89d25;
}

.link span::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f35d";
  display: inline-block;
  margin: 0 -0.3em -2rem 0.3em;
  text-decoration: none;
  font-size: 10px;
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.news-pagination li {
  margin: 0;
}

.news-page-link,
.news-page-first,
.news-page-prev,
.news-page-next,
.news-page-last {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  text-decoration: none;
  background: #2f5f97;
  color: #fff;
  border-radius: 4px;
  font-weight: bold;
  transition: .2s;
}

.news-page-link:hover,
.news-page-first:hover,
.news-page-prev:hover,
.news-page-next:hover,
.news-page-last:hover {
  opacity: .8;
}

.news-page-current a {
  background: #d7e8f2;
  color: #2f5f97;
  border: 2px solid #8db2d0;
}

.news-page-dots {
  font-size: 24px;
  color: #2f5f97;
  padding: 0 8px;
}

.pagination {
  width: 70%;
  margin: 0 auto 30px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.page-number-btn {
  width: 40px;
  height: 40px;
  border-radius: 25px;
  color: #1C50AA;
  border: solid 1px #1C50AA;
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 20px;
  font-family: "Zen Kaku Gothic New";
  text-align: center;
  padding: 8px;
}

.page-number-btn.is-current {
  color: #fff;
  border: solid 1px #1C50AA;
  background: #1C50AA;
}

.prevBtn,
.nextBtn {
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 25px;
  color: #1C50AA;
  border: solid 1px #1C50AA;
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 20px;
  font-family: "Zen Kaku Gothic New";
  padding: 8px;
}

.post>.btn_return3>.return3 {
  border: solid 1px #1C50AA;
}

.post>.btn_return3>.return3:hover {
  background: #1C50AA;
}

@media screen and (max-width: 1000px) {
  .post-line {
    padding: 30px 50px;
  }

  .buttonbox {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }

  .button {
    width: min(80vw, 400px);
  }
}

@media screen and (max-width: 600px) {
  .post-bg {
    top: calc(-180 / 1024* 100vw);
  }

  .post-line {
    padding: 30px;
  }
}

/* サムネイル画像のスタイル */
.thumbnail {
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s;
}

/* モーダルのスタイル */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal::-webkit-scrollbar {
  display: none;
}

.modal-content {
  margin: 15% auto;
  display: block;
  width: 80%;
  max-width: 600px;
}

.close {
  position: absolute;
  top: 10px;
  right: 25px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

/*----------------------------------------------
  works
------------------------------------------------*/
.works {
  background: #e6f6df;
  margin-top: 60px;
  padding-top: 40px;
}

.works_title {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 10px;
  margin: 30px 0;
  text-align: center;
  color: #3F7E44;
}

.works_content {
  width: min(90vw, 1200px);
  margin: 0 auto 40px;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 60px 90px;
}

.works_item {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 50px;
}

.works_item img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.works_item_h3 {
  font-size: 1.44rem;
  font-weight: 700;
  line-height: 40px;
  color: #222;
}

.works_item_h3 span {
  display: block;
  font-size: 2.074rem;
  letter-spacing: 2px;
}

.works_item_table {
  width: 100%;
  margin: 30px 0;
  font-size: 1.0rem;
}

.works_item_table tr {
  display: flex;
  padding: 10px 0;
  border-bottom: solid 1px #ddd;
}

.works_item_table tr:last-child {
  border-bottom: none;
}

.works_item_table th {
  width: 120px;
  font-weight: 400;
  font-weight: 900;
  color: #3F7E44;
}

.works_item_table td {
  font-weight: 400;
  color: #444;
}


.works_logo_h3 {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.728rem;
  font-weight: 700;
  line-height: 1;
  padding-top: 90px;
}

.works_logo_h3:after {
  content: "";
  flex-grow: 1;
  border-top: 4px dotted #aadf94;
  display: block;
}

.works_logo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-content: center;
  place-items: center;
  align-items: start;
  gap: 50px;
  margin: 40px 0 0;
}

.works_logobox {
  width: 100%;
  height: 100%;
  display: flex;
  place-items: center;
  align-items: flex-start;
  gap: 20px;
}

.works_logobox img {
  max-width: 80px;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.16);
  padding: 10px;
}

.works_logobox_text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.works_logobox_text>div>p:nth-child(1) {
  font-size: 1rem;
  font-weight: 700;
  border-bottom: solid 1px #333;
  margin-bottom: 10px;
  padding-bottom: 3px;
}

.works_logobox_text>div>p:nth-child(2) {
  min-height: 65px;
  font-size: 0.833rem !important;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
}

.works_logobox_text>p {
  text-align: right;
}

.works_logobox_text>p>a {
  font-size: 0.9rem !important;
  font-weight: 900;
  color: #333;
  transition: ease .2s;
}

.works_logobox_text a:hover {
  opacity: .5;
}

.works_logo_p {
  margin: 20px 0 0;
}

.works_logo_p a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f35d";
  display: inline-block;
  text-decoration: none;
  padding-right: 5px;
  color: #444;
}

.works_logo_p a {
  color: #333;
  transition: ease .2s;
}

.works_logo_p a:hover {
  opacity: .5;
}

.work_point {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 50px;
}

.work_point_h3 {
  position: relative;
  z-index: 1;
  font-size: 1.728rem;
  font-weight: 700;
  line-height: 1;
  padding: 0 0 40px 40px;
  margin: 70px 0 0;
}

.work_point_h3::before {
  position: absolute;
  z-index: -1;
  top: -40px;
  left: -20px;
  content: "";
  display: inline-block;
  width: 100px;
  height: 100px;
  background-image: url(../img/q_Illust.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.work_point p {
  line-height: 1.8;
}

.item_content2_btn {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 100px;
}

.prev_btn>a,
.next_btn>a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  padding: 10px;
  background: #fff;
  border-radius: 50px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.item_content2_btn a:hover {
  background: #56c02b;
  color: #fff;
}

.works>.example {
  width: 100%;
  margin: 200px auto 0;
  display: inline-block;
}

.works>.example>h6 {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.63;
  text-align: center;
  padding: 0;
  color: #3F7E44;
}

.works_thumbnail {
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s;
}

.works_modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.works_modal::-webkit-scrollbar {
  display: none;
}

.works_modal-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 80%;
  max-width: 600px;
}

.works_close {
  position: absolute;
  top: 10px;
  right: 25px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

@media screen and (max-width: 999px) {
  .works_content {
    padding: 60px;
  }

  .works_logobox {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .works_logo {
    grid-template-columns: 1fr;
  }

  .item_content2_btn {
    flex-direction: column;
    gap: 20px;
  }

  .works_item {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .works_item img {
    width: 70%;
  }

  .works_logobox {
    flex-direction: row;
  }

  .works_logobox_text p:nth-child(1) {
    font-size: 1rem !important;
  }

  .work_point {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }

  .works_title {
    font-size: 8.5vw !important;
    letter-spacing: 5px;
    margin: 30px 0 20px;
  }

  .work_point_h3::before {
    position: absolute;
    z-index: -1;
    top: -10px;
    left: -10px;
    content: "";
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url(../img/q_Illust.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .work_point_h3 {
    font-size: min(5.8vw, 1.44rem) !important;
    line-height: 1.4;
    padding: 0 0 40px 40px;
  }

}


@media screen and (max-width: 500px) {
  .works_logobox {
    flex-direction: column;
  }

  .works_item_table tr {
    flex-direction: column;
  }

  .works_content {
    padding: 30px;
  }

  .works_item_h3 {
    font-size: 1rem !important;
    line-height: 30px;
  }

  .works_item_h3 span {
    font-size: 1.44rem;
    letter-spacing: 1px;
  }

  .works_item_table {
    margin: 10px 0;
  }
}
