html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  background: #fff;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Noto Sans JP", sans-serif !important;
}

h1 {
  font-size: 56px;
  letter-spacing: 0.04em;
}

h2 {
  font-size: 48px;
  letter-spacing: 0.06em;
}

h3 {
  font-size: 32px;
  letter-spacing: 0.06em;
  margin: 0;
}

.font-16 {
  font-size: 16px;
  padding: 0;
  margin: 0;
}

.font-24 {
  font-size: 24px;
  margin: 0;
  padding: 0;
}

.font-25 {
  font-size: 25px;
  margin: 0;
  padding: 0;
}

.font-32 {
  font-size: 32px;
  margin: 0;
  padding: 0;
}

figure {
  margin: 0 !important;
}

address {
  margin: 0 !important;
}

.gray {
  color: #262626;
}

.d-block {
  display: block;
}

/* Header */
header {
  position: relative;
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
}

.contact-header {
  position: relative;
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
}

.header-left {
  float: left;
  overflow: hidden;
  width: 50%;
  background-color: #fff;
  z-index: 3;
}

.header-right {
  float: left;
  overflow: hidden;
  width: 50%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-end;
  align-items: stretch;
  background-color: #fff;
}

.header_logo {
  float: left;
  overflow: hidden;
  margin: 23px 0 25px 35px;
}


.wp-block-group .header_logo .wp-block-image img {
  width: 67px;
  height: 60px;
}

.header_title {
  float: left;
  overflow: hidden;
  margin: 18px 40px;
  letter-spacing: 0.075em;
}

.header_title a {
  text-decoration: none;
  color: #000;
}

.header_contact {
  float: left;
  position: relative;
  background: #f2f2f2;
  margin: 0 1px !important;
  color: #fff;
  font-size: 16px;
  text-align: center;
  z-index: 100;
  padding: 17px 18px;
}

.header_contact a {
  float: left;
  overflow: hidden;
  width: 196px;
  height: auto;
  cursor: pointer;
  color: #333;
  text-decoration: none;
}

.header_contact .wp-block-image a img {
  width: 50px;
  height: 50px;
}

.header_contact a p {
  margin: 0;
  padding: 0;
  letter-spacing: 0.05em;
}

.nav-title a {
  text-decoration: none;
  color: #000;
}

.nav-title p {
  margin: 0;
  padding: 0;
}

/* header subpage */
.header-wrap {
  float: left;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.header-content {
  float: left;
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 1;
}

.header-heading {
  position: absolute !important;
  top: 0;
}

.header-content .wp-block-heading {
  float: left;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 7%;
  color: #333;
  transform: translateY(-50%);
  margin-bottom: 0;
  z-index: 3;
}

.header-content p {
  float: left;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 10%;
  color: #333;
  transform: translateY(-50%);
  font-size: 3.5vw;
  margin-bottom: 0;
}

.header-content img {
  float: left;
  overflow: hidden;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

/* Navigation */
.hamburger {
  width: 80px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 29px 35px;
  position: relative;
  z-index: 1000;
}

.hamburger p {
  background: #284e7d;
  height: 0px !important;
  width: 100%;
  transition: all 0.5s ease;
  border-bottom: 10px solid #284e7d;
}

.hamburger.active p:nth-child(1) {
  transform: rotate(45deg);
  top: 25px;
  position: absolute;
}

.hamburger.active p:nth-child(2) {
  opacity: 0;
}

.hamburger.active p:nth-child(3) {
  transform: rotate(-45deg);
  top: 25px;
  position: absolute;
}

.nav-menu {
  display: block;
  background: #f3f3f3;
  position: absolute;
  top: -400px;
  width: 74%;
  padding: 0 1.3889vh;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: top 0.5s ease, opacity 0s ease;
  opacity: 0;
}

.nav-title {
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #c5c5c5;
  padding: 0 0.9259vh;
  padding-bottom: 1.0417vw;
}

.nav-menu.active {
  top: 100%;
  opacity: 1;
  z-index: 2;
  right: 0;
}

.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  float: left;
  padding: 1.0417vw 0px;
  width: calc(95.5% / 5);
  margin-right: 0.7813vw;
}

.nav-menu li:last-child {
  margin-right: 0;
}

.nav-copy-right {
  float: right;
  margin: 100px 0px 50px;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  text-align: right;
  display: none;
}

.nav-menu-sp.active .nav-copy-right,
.nav-menu.active .nav-copy-right {
  display: block;
}

.nav-copy-right p {
  margin: 0;
  padding: 0;
}

.sub-menu {
  margin: 0 0 0 20px !important;
}

.sub-menu li {
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #c5c5c5;
  letter-spacing: 0.1em;
}

.sub-menu li a {
  display: block;
  width: 100%;
  padding: 1.3889vh 0;
  padding-left: 0.5208vw;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 400;
}

li.line {
  margin: 0;
  padding: 0;
  border: none;
}

.header-left {
  display: flex;
}

.header-link {
  display: flex;
  flex-direction: column;
}

.header-right {
  height: 110px;
}

.header-menu {
  position: relative;
  z-index: 3;
}

/* Slide area */
.slideshow {
  float: left;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 781px;
  padding-top: 40.6%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

/* .slide::after {
  content: "";
  position: absolute;
  top: -0.2vw;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/pc/top-frame.png);
  background-repeat: no-repeat;
  background-position-y: center;
  z-index: 1;
} */

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide .slide-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(-10%, -50%);
  font-size: 3.5vw;
  color: #fff;
  padding: 0;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.04em;
}

.slide-text-right {
  left: 0 !important;
  right: -85%;
}

.prev img,
.next img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.prev img {
  left: 20px;
}

.next img {
  right: 20px;
}

.dots {
  float: left;
  overflow: hidden;
  position: absolute;
  text-align: center;
  width: 100%;
  top: 95%;
  left: 0;
  z-index: 2;
  transform: translateY(-95%);
}

.dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 5px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #B5A078;
}

button {
  border: none;
  width: 0;
  height: 0;
  background: none;
}

/* Partner Area */
.partner {
  float: left;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  padding: 0 90px;
  padding-top: 105px;
  padding-bottom: 137px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.partner-header {
  text-align: center;
}

.partner h1 {
  padding-bottom: 10px;
  margin-bottom: 36px;
}

.partner-quote {
  font-size: 24px;
  font-style: italic;
  margin-bottom: 26px !important;
}

.partner p {
  margin-bottom: 50px;
  line-height: 43px;
  letter-spacing: 0.04em;
}

.animated-underline {
  position: relative;
  display: inline-block;
  overflow: hidden;
  text-decoration: none;
}

.animated-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background-color: #B5A078;
  transition: width 1.5s ease-in-out;
}

.animated-underline.black::after {
  background-color: #333;
}

.animated-underline.scrolled::after {
  margin-top: 10px;
  width: 100%;
  height: 4px;
  border-radius: 20px;
}

/* Business Area */
.business-introduction {
  float: left;
  overflow: hidden;
  position: relative;
  background-color: #f2f2f3;
  width: 100%;
  margin: 0 auto;
  padding: 92px 0 111px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  color: #333;
}

.business-introduction h2 {
  padding-bottom: 5px;
  margin-bottom: 3px;
  color: #333 !important;
}

.business-wrap {
  float: left;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
  margin-top: 94px;
}

.business-detail {
  float: left;
  overflow: hidden;
  padding: 0;
  margin: 0 1.569vw;
  text-decoration: none;
  list-style-type: none;
}

.business-content {
  float: left;
  overflow: hidden;
  width: calc(96.5% / 3);
  margin-right: 1.569vw;
}

.business-content:last-child {
  margin-right: 1px;
}

.business-content p {
  float: left;
  overflow: hidden;
  text-align: justify;
  padding: 0;
  margin: 0;
  margin-top: 20px;
  line-height: 38px;
}

/* Image zoom out */
.content-group {
  position: relative;
  float: left;
  overflow: hidden;
  width: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
}

.content-group h3 {
  color: #fff !important;
}

.content-group a {
  color: #fff;
  margin: 0;
  padding: 0;
}

.content-group img {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  transition: transform 1s ease-in-out;
}

.content-group .arrow-img {
  position: absolute;
  top: 80%;
  right: 15px;
  width: 4.1667vw;
  height: 4.1667vw;
}

.content-group h3 {
  float: left;
  overflow: hidden;
  position: absolute;
  font-size: 30px;
  top: 50%;
  left: 50%;
  margin: 0;
  text-align: center;
  transform: translate(-50%, -50%);
}

.image-bg {
  display: flex;
}

/* News area */
.notice {
  float: left;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  padding: 92px 90px 120px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.notice-header {
  text-align: center;
}

.notice h2 {
  padding-bottom: 5px;
  margin-bottom: 3px;
}

.notice-wrap {
  float: left;
  overflow: hidden;
  width: 100%;
  height: auto;
  border-top: 2px solid #c5c5c5;
  margin-top: 94px;
}

.notice-content {
  float: left;
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid #c5c5c5;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
}

.notice-news,
.notice-recuit,
.notice-important,
.notice-new-service,
.notice-company-info {
  width: 300px;
  padding: 19px 0;
  margin: 38px 0;
  text-align: center;
  color: #fff;
  font-size: 24px;
  letter-spacing: 0.06em;
}

.notice-news p,
.notice-recuit p,
.notice-important p,
.notice-new-service p,
.notice-company-info p {
  margin: 0;
  padding: 0;
}

.notice-div {
  float: left;
  overflow: hidden;
  width: 70%;
  margin-left: 50px;
}

.notice-div a {
  text-decoration: none;
  color: #000;
}

.notice-news {
  background: #A3110C;
}

.notice-recuit {
  background: #8B8B8B;
}

.notice-important {
  background: #DA9F30;
}

.notice-new-service {
  background: #5d9270;
}

.notice-company-info {
  background: #ce951a;
}

.notice-div p {
  float: left;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

.button-submit {
  float: left;
  overflow: hidden;
  margin-top: 100px;
  background: #383838;
  width: 400px;
  position: relative;
  letter-spacing: 0.08em;
}

.button-submit a {
  text-align: center;
  display: block;
  overflow: hidden;
  width: 100%;
  color: #fff;
  text-decoration: none;
  position: relative;
  text-align: center;
}

.button-submit p {
  margin: 21px;
  padding: 0;
}

.button-submit .img-link {
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}

#contact-heading {
  color: #333 !important;
}

/* Company area */
.company-overview {
  float: left;
  overflow: hidden;
  position: relative;
  background-color: #e3e8ed;
  width: 100%;
  margin: 0 auto;
  padding: 92px 90px 100px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  color: #535f77;
}

.animated-underline.purple::after {
  background-color: #535f77;
}

.company-overview h2 {
  padding-bottom: 5px;
  margin-bottom: 3px;
}

.company-wrap {
  float: left;
  overflow: hidden;
  width: 100%;
  padding: 94px 0 0;
  display: flex;
  align-items: stretch;
}

.company-left,
.company-right {
  display: flex;
  flex-direction: column;
  width: 49.4%;
  height: 600px;
  margin-right: 20px;
}

.company-right {
  margin-right: 0;
}

.company-left .company-content {
  height: 100%;
}

.company-right .company-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.company-content {
  float: left;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  object-fit: cover;
}

.company-title {
  float: left;
  position: relative;
  background: #B5A078;
  color: #fff;
  padding: 2.3148vh 2.0833vw;
  width: 100%;
  text-align: left;
}

.company-title h3 {
  color: #fff !important;
}

.company-title p {
  margin-bottom: 0;
}

.company-img {
  float: left;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  border: 1px solid #000;
  object-fit: cover;
}

.company-img a {
  float: left;
  overflow: hidden;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-img.left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-img.right img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.company-img .wp-block-image{
  height: 100%;
}

/* Access area */
.access {
  float: left;
  overflow: hidden;
  position: relative;
  width: 100%;
  text-align: center;
  margin: 92px 0 114px;
}

.access h3 {
  padding-bottom: 5px;
  margin-bottom: 3px;
}

.access-wrap {
  float: left;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.access-wrap p {
  float: left;
  overflow: hidden;
  text-align: justify;
  font-size: 24px;
  margin-top: 9px;
  margin-left: 90px;
  margin-bottom: 0;
}

.access-container {
  float: left;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.address-right {
  flex: 1;
}

.address-right p {
  margin-left: 5px;
}

.access-wrap iframe {
  float: left;
  overflow: hidden;
  margin-top: 94px;
  width: 100%;
  height: 750px;
}

.top-line {
  float: left;
  overflow: hidden;
  color: #fff;
  padding: 0;
  width: 100%;
  margin: 0;
  padding: 178px 100px 50px;
}

.footer-container .breadcrumb {
  float: left;
  overflow: hidden;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  color: #333;
}

.footer-container .breadcrumb a {
  text-decoration: none;
  color: #c5c5c5;
  padding: 0 0 0 36px;
  margin: 0;
}

.footer-container .breadcrumb a.bread_active {
  color: #c5c5c5;
}

.footer-container .breadcrumb a:hover {
  text-decoration: none;
}

/* Recruit area */
.recruit-overview {
  float: left;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
}

.recruit-header {
  float: left;
  overflow: hidden;
  width: 100%;
  background-color: #f6f1e6;
  text-align: center;
  padding-top: 92px;
  padding-bottom: 94px;
}

.recruit-header h2 {
  padding-bottom: 5px;
  margin-bottom: 3px;
}

.recruit-wrap {
  float: left;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
}

.recruit-div {
  float: left;
  overflow: hidden;
  width: 50%;
  height: 660px;
  position: relative;
}

.recruit-div:nth-child(even) {
  margin-right: 0;
}

.recruit-content {
  float: left;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.recruit-title {
  float: left;
  overflow: hidden;
  position: absolute;
  z-index: 9999;
  top: 90%;
  left: 20%;
  background: #fff;
  width: 60%;
  opacity: 0.7;
  padding: 3.7037vh;
  text-align: center;
  transform: translateY(-90%);
}

.recruit-title p {
  text-align: center;
}

.recruit-title a img {
  float: left;
  overflow: hidden;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 90%;
  right: 2%;
  transform: translateY(-90%);
}

.recruit-title .recruit_underline {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.recruit-title .recruit_underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #000;
  transition: width 1s ease-in-out;
}

.recruit-img {
  height: 100%;
}

.recruit-img a {
  height: 100%;
}

.recruit-img a img {
  height: 100%;
  object-fit: cover;
}

/* Recruit section footer */
.recruit-section {
  float: left;
  overflow: hidden;
  width: 100%;
  background-color: #f6f1e6;
  padding: 214px 350px 165px;
  color: #333;
}

.recruit-list-content {
  float: left;
  overflow: hidden;
  width: calc(100% / 4);
}

.recruit-list-content a {
  text-decoration: none;
  color: #fff;
}

.recruit-list-content p a {
  font-size: 24px;
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
  color: #333;
}

.recruit-list-content ul {
  font-size: 16px;
  margin: 0;
  padding: 0;
}

.recruit-list-content ul li {
  list-style: none;
  background-image: url("../images/pc/arrow_text_bk.png");
  background-size: 10px 15px;
  background-repeat: no-repeat;
  background-position: 0px 10%;
  padding-left: 20px;
  padding-bottom: 25px;
}

.recruit-list-content ul li a {
  color: #333;
  text-decoration: none;
}

/* Contact area */
.contact {
  float: left;
  overflow: hidden;
  background-color: #f6f1e6;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 94px;
  text-align: center;
  color: #333;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
}

.contact-header {
  padding: 0 90px;
}

.line-white {
  width: 100%;
  border-top: 1px solid #fff;
  margin: 0;
  padding: 0;
}

.contact h2 {
  padding-top: 94px;
  padding-bottom: 5px;
  margin-bottom: 3px;
}

.contact-wrap {
  float: left;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0px 90px;
}

.contact-content {
  float: left;
  overflow: hidden;
  width: 48.8%;
  padding: 0;
  margin: 0;
  margin-top: 89px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  margin-right: 2vw;
}

.contact-content:last-child {
  align-content: flex-end;
  margin-right: 0;
}

.contact-content a {
  text-decoration: none;
  color: #333;
}

.contact-content p {
  margin-bottom: 26px;
}

.contact-img {
  float: left;
  overflow: hidden;
  position: relative;
}

.contact-img img {
  width: 100%;
}

.contact-img a {
  float: left;
  overflow: hidden;
  color: #000;
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 32px;
  text-decoration: none;
}

.contact-img p {
  float: left;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 17%;
  transform: translateY(-50%);
}

/* Footer page */
.footer-page {
  float: left;
  overflow: hidden;
  width: 100%;
  background: #f6f1e6;
  margin: 0;
  padding: 90px;
}

.footer-left {
  float: left;
  overflow: hidden;
  width: 50%;
  color: #fff;
}

.footer-left a {
  color: #333;
  margin-right: 50px;
  text-decoration: none;
}

.footer-left a:last-child {
  margin-right: 0;
}

.footer-right {
  float: right;
  overflow: hidden;
  width: 50%;
  color: #333;
  text-align: right;
}

.top-page {
  float: left;
  overflow: hidden;
  width: 100%;
  position: fixed;
  bottom: 0;
}

.top-page a {
  float: right;
  background-color: #B5A078;
  position: relative;
  width: 50px;
  height: 50px;
  margin-right: 25px;
  margin-bottom: 23px;
  border-radius: 10px;
}

.top-page img {
  float: left;
  overflow: hidden;
  position: absolute;
  width: 30%;
  height: 50%;
  top: 50%;
  left: 50%;
  transform: rotate(-90deg) translate(90%, -30%);
}

.footer-right p {
  margin-bottom: 0;
}

.nav-menu-sp {
  display: none;
}

.nav-menu-sp.active {
  display: none;
}

.disable-link {
  pointer-events: none !important;
  cursor: default !important;
}

.display-ul {
  display: none;
}

/* cookie */
.hidden {
  display: none;
}

.cookie-area {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100000;
  color: #fff;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 100px;
  color: #fff;
  background: rgba(42, 47, 47, 0.95);
  min-height: 100px;
}

.cookie-details {
  font-size: 14px;
  margin-bottom: 0px;
}

.cookie-div-left {
  float: left;
  width: 60%;
}

.cookie-div-right {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: baseline;
}

#cookie-agree {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 50px;
  font-size: 16px;
  text-align: center;
  line-height: 50px;
  background: #fff;
  color: #333;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

#cookie-setup {
  width: 200px;
  font-size: 16px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

div#cookie-modal.hidden {
  display: none;
}

body.modal-open {
  overflow: hidden;
  height: 100vh;
}

div#cookie-modal {
  position: fixed;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-wrap {
  position: relative !important;
  width: 80%;
  max-width: 600px;
  min-width: 300px;
  background: #fff;
  padding: 0px 30px 30px 30px;
  box-sizing: border-box;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-title {
  display: flex;
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  padding-top: 20px;
  border-bottom: 1px solid #a7a7a7;
  width: 100%;
  color: #000;
}

.modal-wrap img {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}

.modal-content {
  margin-top: 20px;
  overflow: hidden;
  color: #000;
  font-size: 14px;
  text-align: justify;
  border: none;
  border-radius: unset;
}

.modal-choice {
  font-size: 14px;
  margin-top: 30px;
  margin-bottom: 50px;
  width: 100%;
  color: #000;
}

.modal-title p {
  margin: 0;
}

.logo-block {
  display: flex;
  align-items: center;
}

button#modal-close {
  background: none;
  width: 30px;
  font-size: 20px;
  height: auto;
  cursor: pointer;
  z-index: 100000;
  color: #000;
  font-weight: bold;
}

.modal-content a,
.modal-submit a {
  background: #B5A078;
  width: 250px;
  font-size: 16px;
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.3s ease;
}

.modal-submit {
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-end;
}

.modal-table {
  width: 100%;
  border: 1px solid #a7a7a7;
}

.choice-group p {
  overflow: hidden;
  width: 50%;
  text-align: justify;
  margin-bottom: 0px;
  padding-left: 20px;
}

.modal-choice .choice-group .choice-column2 {
  padding-right: 10px;
  text-align: right;
}

.choice-group {
  width: 100%;
  height: 45px;
  border-bottom: 1px solid #a7a7a7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.choice-group:last-child {
  border-bottom: none;
}

/* switch button */
.switch {
  position: relative;
  display: inline-block;
  width: 59px;
  height: 28px;
  margin: 7px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  border: 1px solid #ececec;
  transition: 0.4s;
  border-radius: 34px;
}

.slider::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 5px;
  bottom: 2px;
  background-color: #9c9fa1;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked+.slider {
  background-color: #aacfd4;
  border: 1px solid #B5A078;
}

input:checked+.slider::before {
  transform: translateX(26px);
  background-color: #4a8d95;
}

@media only screen and (min-width: 1367px) and (max-width: 1850px) {
  .header-content h1 {
    font-size: 3.5vw;
  }

  .contact-content {
    width: 48%;
    margin-right: 2vw;
  }

  .contact-content:last-child {
    margin-right: 0;
  }

  .sub-menu {
    margin-left: 10px !important;
  }

  .sub-menu li a {
    padding-left: 0px;
    font-size: 0.9vw;
  }

  .contact-img a {
    font-size: 1.6vw;
  }
}

@media only screen and (min-width: 1367px) and (max-width: 1750px) {
  .recruit-title {
    width: 70%;
    left: 15%;
  }

  .recruit-section {
    padding-left: 15vw;
    padding-right: 15vw;
  }

  .recruit-div-title h3,
  .recruit_underline {
    font-size: 2.1vw;
  }
}

@media only screen and (min-width: 821px) and (max-width: 1366px) {
  .no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  /* Header */
  .header_logo {
    margin: 3vh 2vw;
    margin-bottom: 2vh;
    margin-right: 0;
  }

  .header_title {
    margin: 2vh 2vw;
  }

  .header_contact {
    padding: 2vh 2vw;
  }

  .header_contact a {
    width: 100%;
  }

  .header-content h1 {
    font-size: 3.5vw;
  }

  /* Menu */
  .hamburger {
    width: 15%;
    margin: 3vh 3vw;
  }

  .nav-menu.active {
    top: 100%;
    height: 100vh;
  }

  .nav-menu {
    width: 100%;
    padding: 0 1vw;
  }

  .nav-menu li {
    width: calc(96.7% / 5);
  }

  .sub-menu li {
    width: 100%;
    margin-right: 0;
  }

  .sub-menu {
    margin-left: 1vw !important;
  }

  .sub-menu li a {
    padding-left: 0;
    font-size: 1.2vw;
  }

  .slideshow {
    height: 100%;
  }

  .business-introduction {
    padding-bottom: 92px;
  }

  /* Partner */
  .partner {
    padding-left: 6.6vw;
    padding-right: 6.6vw;
    padding-bottom: 42px;
  }

  .partner h1 {
    font-size: 4.1vw;
  }

  .partner p {
    font-size: 20px;
    letter-spacing: 0.06rem;
  }

  /* Company */
  .company-right,
  .company-left {
    height: 550px;
  }

  .company-overview {
    padding-left: 6.6vw;
    padding-right: 6.6vw;
    padding-bottom: 20px;
  }

  .company-img.left img {
    object-fit: cover;
  }

  .company-img.right img {
    object-fit: cover;
  }

  /* Notice */
  .notice {
    padding-bottom: 100px;
    padding-left: 6.6vw;
    padding-right: 6.6vw;
  }

  /* Recruit */
  .recruit-section {
    padding: 8vh 10vw;
  }

  .recruit-div {
    height: auto;
  }

  .recruit-img img {
    float: left;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .recruit-title {
    left: 5%;
    width: 90%;
    padding: 2vh 0;
  }

  .recruit-title h3 {
    font-size: 2.3vw;
  }

  .recruit-title p.font-25 {
    font-size: 1.8vw;
  }

  .recruit-title a img {
    width: 2vw;
    height: 2vw;
  }

  /* Contact */
  .contact-header,
  .contact-wrap,
  .footer-page {
    padding: 0 6.6vw;
  }

  .footer-page {
    padding-bottom: 15vw;
  }

  .contact-content {
    width: 48%;
    margin-right: 3.2vw;
  }

  .contact-content:last-child {
    width: 48%;
    margin-right: 0px;
  }

  .contact-img a {
    margin-bottom: 0;
    font-size: 1.6vw;
  }

  .contact-img img {
    float: left;
    overflow: hidden;
  }

  /* Access */

  .access {
    margin-bottom: 92px;
  }

  .access-wrap iframe {
    height: 400px;
  }

  .business-content p {
    letter-spacing: 0.06rem;
  }

  .break {
    display: block;
    visibility: hidden;
  }

  /* Notice */
  .notice-div {
    margin-left: 5vw;
  }

  .notice-div a {
    font-size: 22px;
  }

  .top-line {
    padding-top: 100px !important;
  }

  .company-left .company-content {
    height: 70%;
  }

  .company-right .company-content {
    height: 33%;
  }

  /* Cookie style */
  .cookie-content {
    padding: 28px 45px;
  }

  .cookie-div-left {
    width: 100%;
  }

  .recruit-list-content:nth-child(2) {
    width: calc(100% / 4 + 3vw);
  }

  .recruit-list-content:nth-child(3) {
    width: calc(100% / 4 - 3vw);
  }

  @media only screen and (max-width: 1100px) {
    .content-group h3 {
      font-size: 2.73vw;
    }

    .content-group p {
      font-size: 2.7vw;
    }

    .company-right,
    .company-left {
      height: 450px;
    }

    .recruit-section {
      padding-left: 5vw;
      padding-right: 5vw;
    }

    .contact-content {
      margin-right: 3vw;
    }
  }
}

@media only screen and (min-width: 821px) and (max-width: 912px) {
  .cookie-content {
    padding: 20px 50px;
  }

  .modal-wrap {
    width: 80%;
    max-width: 600px;
  }
}

@media only screen and (max-width: 820px) {
  .no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  html,
  body {
    font-size: 26px;
  }

  h1 {
    font-size: clamp(1px, 6.8vw, 56px);
  }

  h2 {
    font-size: clamp(1px, 5.9vw, 48px);
  }

  h3 {
    font-size: clamp(1px, 3.9vw, 32px);
  }

  p,
  a {
    font-size: 3.17vw;
    line-height: 7.32vw;
  }

  @keyframes slideDown {
    0% {
      opacity: 0;
      transform: translateY(-100%);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Font Sizes */
  .font-16 {
    font-size: 2vw;
  }

  .font-24 {
    font-size: 2.9vw;
  }

  .font-25 {
    font-size: 3vw;
  }

  .font-32 {
    font-size: 3.9vw;
  }

  /* Header Styling */
  .header {
    flex-direction: column;
    align-items: center;
  }

  .header-top.fixed {
    position: fixed;
    z-index: 1000;
    background: #fff;
  }

  .header-left {
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
  }

  .header-left p {
    line-height: 1.5;
  }

  .header_logo {
    margin: 2vh 3vw;
    padding: 0;
  }

  .header_logo img {
    max-width: 100%;
    max-height: 100%;
  }

  .header_title {
    margin: 0;
  }

  .header-right {
    width: 20%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
  }

  .header_contact {
    display: none;
  }

  .header-content h1 {
    left: 6%;
    font-size: 7vw;
  }

  /* Hamburger Menu */
  .hamburger {
    width: 45%;
    margin: 3vh 3vw;
  }

  .hamburger.active {
    padding: 2vw 0;
  }

  .hamburger p {
    border-width: 8px;
    margin-bottom: 10px;
  }

  .hamburger p:last-child {
    margin-bottom: 0;
  }

  .hamburger.active p:nth-child(1) {
    top: 15px;
  }

  .hamburger.active p:nth-child(3) {
    top: 15px;
  }

  /* Navigation Menu */
  .nav-menu {
    display: none;
  }

  .nav-menu-sp {
    width: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    background: #f3f3f3;
    position: absolute;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease forwards;
    transform: translateY(-100%);
    overflow-y: auto;
  }

  .nav-menu-sp.active {
    display: block;
    height: 100vh;
    position: absolute;
    top: 100%;
    opacity: 1;
    z-index: 9999;
    animation: slideDown 0.5s ease forwards;
    overflow-y: auto;
  }

  /* Sub Menu Header */
  .menu-sp {
    margin: 0;
    padding: 0;
    float: left;
    overflow: hidden;
    width: 100%;
    overflow-y: auto;
  }

  .menu-sp-title {
    float: left;
    width: 100%;
    margin: 0;
    padding: 2vh;
    border-bottom: 1px solid #c5c5c5;
  }

  .menu-sp-header {
    float: left;
    width: 100%;
    margin: 0;
    border-bottom: 1px solid #c5c5c5;
  }

  .menu-sp-header p {
    float: left;
    width: 95%;
    margin: 0;
    padding: 2vh 0 0;
  }

  .menu-sp-header img {
    float: left;
    padding: 2.5vh 0;
    cursor: pointer;
  }

  /* Sub-Navigation */
  .sub-nav-title {
    float: left;
    width: 100%;
    padding: 0 5vw;
    margin: 0;
  }

  .sub-nav-title a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
  }

  .sub-nav-title.active img {
    transform: rotate(90deg);
    transition: transform 0.3s ease-in-out;
  }

  /* Nav copy right */
  .nav-copy-right {
    margin: 5vw 0vw 20vw;
    padding: 0 3vw;
  }

  /* Sub Menu Items */
  .sub-menu-sp {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0 10vw;
    display: none;
    transform: translateY(-10px);
    transition: transform 0.3s ease;
  }

  .sub-menu-sp.active {
    display: block;
    transform: translateY(0);
  }

  .sub-menu-sp li {
    float: left;
    width: 100%;
    border-bottom: 1px solid #c5c5c5;
    padding: 0;
    list-style-type: none;
  }

  .sub-menu-sp li:last-child {
    border-bottom: none;
  }

  .sub-menu-sp li a {
    float: left;
    overflow: hidden;
    width: 100%;
    padding: 2vh 0;
    color: #000;
    text-decoration: none;
  }

  /* Slide sp */
  .slideshow {
    height: 100%;
  }

  .slide p {
    left: 12%;
    font-size: 5vw;
  }

  .slide-text-right {
    left: 0 !important;
    right: -65%;
  }

  .prev img,
  .next img {
    width: 3vw;
    height: 6vw;
  }

  .prev img {
    left: 3vw;
  }

  .next img {
    right: 3vw;
  }

  .reponsive-slide-1 {
    content: url("../images/sp/top_img_1.png");
  }

  .reponsive-slide-2 {
    content: url("../images/sp/top_img_2.jpg");
  }

  .reponsive-slide-3 {
    content: url("../images/sp/top_img_3.jpg");
  }

  /* Partner page sp */
  
  .partner {
    float: left;
    overflow: hidden;
    position: relative;
    display: block;
    margin: 0;
    padding: 6vh 5vw;
    text-align: justify;
  }

  #partner-heading::after {
    margin-top: 10px;
    width: 100%;
    height: 4px;
    border-radius: 20px;
  }

  .partner-header.sp h1 {
    padding-bottom: 1vh;
    margin-bottom: 3vh;
  }

  .partner p.partner-quote {
    margin: 0;
    font-size: 3.9vw;
    margin-bottom: 5vh;
    text-align: center;
    line-height: 7.32vw;

    width: 70vw;
    margin: auto;
    font-style: normal;
    letter-spacing: normal;
  }

  .partner-sp-content {
    float: left;
    overflow: hidden;
    margin: 0;
    text-align: justify;
  }

  /* Bussiness page sp */
  .business-introduction {
    padding: 6vh 0;
    padding-bottom: 4vh;
  }

  .business-introduction h2 {
    padding-bottom: 1vh;
    margin-bottom: 2vh;
  }

  .business-wrap {
    padding-top: 7vh;
    margin: 0;
  }

  .business-detail {
    margin: 0 5vw;
    margin-bottom: 0;
  }

  .business-content {
    width: 100%;
    margin-right: 0;
  }

  .business-content p {
    margin: 1vh 3vw 3vh;
    text-align: justify;
    line-height: 1.7;
  }

  .content-group p {
    margin: 0;
    padding: 0;
  }

  .content-group .arrow-img {
    width: 10vw;
    height: 10vw;
    right: 3%;
  }

  /* Notice page sp */
  .notice {
    padding: 6vh 5vw;
  }

  .notice h2 {
    padding-bottom: 1vh;
    margin-bottom: 2vh;
  }

  .notice-wrap {
    border: none;
    margin-top: 0;
  }

  .notice-content {
    width: 100%;
    position: relative;
    border: none;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
  }

  .notice-news,
  .notice-recuit,
  .notice-important,
  .notice-new-service,
  .notice-company-info {
    width: 100%;
    margin: 5vh 0 3vh;
    padding: 2vh 0;
  }

  .notice-div {
    width: 100%;
    margin: 0;
    padding: 0;
    margin-bottom: 6.1vw;
  }

  .notice-content p {
    width: 100%;
  }

  .notice-div p {
    padding-left: 5vw;
    text-align: justify;
  }

  .button-submit {
    width: 80%;
    height: 100%;
    margin: 6vh 0 4vh;
  }

  .button-submit p {
    margin: 2vh 0;
  }

  /* Company page sp */
  .company-overview {
    padding: 6vh 5vw;
  }

  .company-overview h2 {
    padding-bottom: 1vh;
    margin-bottom: 2vh;
  }

  .company-wrap {
    padding: 0;
    padding-top: 6vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 0;
  }

  .company-content {
    width: 100%;
    margin: 0;
    padding: 0;
    margin-bottom: 3vh;
  }

  .company-title {
    padding: 2vh 0;
    margin: 0;
    text-align: center;
  }

  .company-title p {
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .company-left {
    width: 100%;
    height: 100%;
    margin-right: 0;
  }

  .company-img-01 {
    height: auto;
  }

  .company-right {
    width: 100%;
    height: 100%;
  }

  .company-img-02 {
    height: auto;
  }

  .company-img img {
    width: 100%;
  }

  /* Access page sp */
  .access {
    margin: 0;
    padding: 6vh 3vw;
  }

  .access h2 {
    padding-bottom: 1vh;
    margin-bottom: 2vh;
  }

  .access-wrap iframe {
    width: 100%;
    height: 400px;
    margin-top: 6vh;
  }

  .address-left p,
  .address-right p {
    margin-left: 0;
    margin-right: 0;
  }

  /* Recruit page sp */
  .recruit-header {
    padding: 6vh 3vw;
  }

  .recruit-header h2 {
    padding-bottom: 1vh;
    margin-bottom: 2vh;
  }

  .recruit-wrap {
    background-color: #edf7fe;
  }

  .recruit-div {
    width: 100%;
    height: auto;
    padding: 0 3vw;
  }

  .recruit-img {
    float: left;
    overflow: hidden;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }

  .recruit-img img {
    float: left;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .recruit-title {
    left: 5%;
    width: 90%;
    padding: 1vh 0;
  }

  .recruit-title a img {
    width: 3vw;
    height: 3vw;
    right: 1.5vw;
  }

  .recruit-section {
    padding: 0 5vw;
  }

  .recruit-list-content {
    width: 100%;
    margin-bottom: 3vh;
  }

  .recruit-list-content p {
    margin-bottom: 1vh;
    font-size: 3.9vw;
  }

  .recruit-list-content ul {
    padding-left: 18vw;
  }

  .recruit-list-content ul li {
    padding-left: 3vw;
    padding-bottom: 3vh;
    background-position: 0px 26%;
    background-size: 10px 20px;
  }

  .recruit-list-content p a {
    margin-bottom: 1vh;
    font-size: 3.9vw;
  }

  .recruit-list .recruit-list-content:last-child {
    border-bottom: 1px solid #fff;
  }

  .form-contact {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
  }

  .line-white {
    border: none;
  }

  .contact {
    padding-bottom: 0;
  }

  .contact .contact-header h2 {
    padding-top: 0;
  }


  /* Footer page sp */
  .top-line {
    background: #fff;
    width: 100%;
    margin: 0;
    padding: 6vh 6vw 2vh;
  }

  .top-line p {
    padding: 0;
    margin: 0;
  }

  .footer-container {
    float: left;
    overflow: hidden;
    width: 100%;
    height: auto;
    background: #f6f1e6;
  }

  .recruit-list {
    
  }

  /* Contact */
  .contact-header {
    margin: 6vh 0;
    text-align: center;
    color: #333;
  }

  .contact-header h2 {
    padding-bottom: 1vh;
    margin-bottom: 2vh;
    color: #333 !important;
  }

  .contact-wrap {
    padding: 0 5vw;
    color: #333;
  }

  .contact-content {
    width: 100%;
    padding: 0;
    margin: 0;
    margin-bottom: 6vh;
  }

  .contact-content p {
    margin-bottom: 3vh;
    color: #333;
  }

  .contact-img {
    width: 100%;
  }

  .contact-img a {
    width: 100%;
  }

  .contact-img img {
    width: 100%;
  }

  .contact-img p {
    margin-bottom: 0 !important;
  }

  /* Footer */
  .footer-page {
    padding: 0 5vw;
    padding-bottom: 15vw;
  }

  .footer-left a {
    width: 100%;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
  }

  .footer-left {
    margin-top: 9vh;
  }

  .footer-left p {
    margin-bottom: 2vh;
  }

  .footer-right {
    margin-top: calc(9vh + 39px);
  }

  .footer-right p {
    margin: 0;
    padding: 0;
  }

  .break {
    display: block;
    visibility: hidden;
  }

  .break-1 {
    display: block;
    visibility: hidden;
  }

  .top-page a {
    width: 7vw;
    height: 7vw;
  }

  .disable-link {
    pointer-events: visible !important;
    cursor: pointer !important;
  }

  /* Cookie styles */
  .cookie-content {
    flex-direction: row;
    padding: 10px 20px;
    text-align: center;
  }

  .cookie-div-left {
    width: 100%;
    margin-bottom: 20px;
  }

  .cookie-div-right {
    width: 50%;
    flex-direction: row;
    justify-content: center;
  }

  .cookie-title {
    font-size: 15px;
    margin-bottom: 0px;
    padding: 0;
    text-align: left;
  }

  .cookie-details {
    font-size: 12px;
    line-height: normal;
    text-align: justify;
  }

  #cookie-agree,
  #cookie-setup {
    width: 120px;
    font-size: 14px;
  }

  #cookie-setup {
    width: 150px;
  }

  .modal-wrap {
    width: 90%;
    min-width: 280px;
    padding: 0px 30px 20px 30px;
  }

  .modal-title {
    padding-bottom: 5px;
  }

  .modal-wrap img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }

  .modal-title p {
    font-size: 17px;
  }

  .modal-content p {
    font-size: 14px;
    line-height: inherit;
  }

  .modal-choice p {
    font-size: 14px;
  }

  .modal-content a,
  .modal-submit a {
    font-size: 16px;
    padding: 8px 15px;
  }

  .modal-table {
    width: 100%;
  }

  .choice-group {
    height: 50px;
    padding: 8px 0;
  }

  .choice-group p {
    font-size: 14px;
    padding-left: 10px;
  }

  .modal-choice .choice-group .choice-column2 {
    padding-right: 5px;
  }

  .switch {
    width: 50px;
    height: 24px;
    margin: 5px;
  }

  .slider::before {
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 2px;
  }

  input:checked+.slider::before {
    transform: translateX(22px);
  }

  .image-bg a {
    width: 100%;
  }
}

@media only screen and (max-width: 760px) {
  .break-2 {
    display: block;
    visibility: hidden;
  }

  .address-left p,
  .address-right p {
    font-size: 3.17vw;
  }

  .address-right p {
    margin-left: 2vw;
  }
}

@media only screen and (max-width: 535px) {
  .font-32 {
    font-size: 6vw;
  }

  .font-16 {
    font-size: 3vw;
  }

  .footer-right {
    margin-top: calc(9vh + 32.28px);
  }

  .address-left p,
  .address-right p {
    font-size: 4.5vw;
  }

  .top-page a {
    width: 10vw;
    height: 10vw;
  }
}

@media only screen and (max-width: 480px) {

  html,
  body {
    font-size: 24px;
  }

  h1 {
    font-size: 8.3vw;
  }

  h2 {
    font-size: 6.6vw;
  }

  h3 {
    font-size: 5.3vw;
  }

  p,
  a {
    font-size: 4.7vw;
    line-height: 1.7;
  }

  /* Font Sizes */
  .font-16 {
    font-size: 3vw;
  }

  .font-24 {
    font-size: 4.4vw;
  }

  .font-25 {
    font-size: 4.5vw;
  }

  .font-32 {
    font-size: 5.8vw;
  }

  .break {
    display: none;
  }

  /* Header */
  .header_logo {
    margin: 2vh 1vw 2vh 2vw;
  }

  .header_logo img {
    max-width: 90%;
    height: auto;
  }

  .hamburger {
    width: 70%;
    margin: 2.5vh 2vw 3.5vh 1vw;
  }

  .hamburger.active {
    margin-top: 3.5vh;
  }

  .nav-copy-right {
    margin: 50px 0 150px;
  }

  /* Slide  */
  .slideshow {
    width: 100%;
    height: 290px;
  }

  .dot {
    max-width: 2vw;
    max-height: 2vw;
  }

  /* Partner */
  .partner-sp {
    padding: 3.5vh 5.2vw 4.5vh;
  }

  .partner-sp-content {
    font-size: 5vw;
  }

  .partner-header.sp h1 {
    padding-bottom: 1vh;
    margin-bottom: 3.5vh;
  }

  .partner-sp-tip {
    font-size: 5.6vw;
    margin-bottom: 3vh;
  }

  /* Business */
  .business-introduction {
    padding: 3.3vh 1.67vw 1.2vh;
  }

  .business-introduction h2 {
    padding-bottom: 1vh;
    margin-bottom: 0.8vh;
  }

  .business-wrap {
    padding-top: 3.3vh;
    padding-bottom: 0;
  }

  .business-content p {
    margin: 2.3vh 3vw 3.3vh;
  }

  .content-group p {
    margin: 0;
  }

  .business-detail {
    margin: 0;
  }

  /* Notice */
  .notice {
    padding: 3.3vh 5.2vw 4.5vh;
  }

  .notice h2 {
    padding-bottom: 1vh;
    margin-bottom: 0.8vh;
  }

  .notice-wrap {
    margin-top: 3.3vh;
  }

  .notice-content {
    margin-bottom: 3vh;
  }

  .notice-news,
  .notice-recuit,
  .notice-important,
  .notice-new-service,
  .notice-company-info {
    margin: 0;
    margin-bottom: 1.5vh;
    padding: 2vh 0;
  }

  .button-submit {
    margin: 1.5vh 0 0;
  }

  /* Company */
  .company-overview {
    padding: 3.3vh 1.67vw 4.5vh;
  }

  .company-overview h2 {
    padding-bottom: 1vh;
    margin-bottom: 0.8vh;
  }

  .company-wrap {
    padding-top: 3.3vh;
    gap: 1.8vh;
  }

  .company-title {
    padding: 2vh 0;
  }

  .company-content {
    margin-bottom: 0;
  }

  .company-right {
    gap: 1.8vh;
  }

  .company-img {
    width: 100%;
    height: 100%;
  }

  .company-img.right img {
    width: 100%;
    height: 100%;
  }

  /* Access */
  .access {
    padding: 3.3vh 1.67vw 4.5vh;
  }

  .access h2 {
    margin-bottom: 1vh;
    padding-bottom: 0.8vh;
  }

  .access-wrap iframe {
    margin-top: 3.3vh;
  }

  /* Contact */
  .top-line {
    height: 9vh;
    padding: 5vh 5vw;
  }

  .contact-header {
    padding: 3.3vh 0 4.5vh;
    margin: 0;
  }

  .contact-header h2 {
    padding-bottom: 1vh;
    margin-bottom: 0.8vh;
  }

  .contact-wrap {
    padding: 0 5.2vw;
  }

  .contact-content {
    margin-bottom: 3.3vh;
  }

  .contact-content p {
    margin-bottom: 2vh;
  }

  /* Recruit */
  .recruit-section {
    padding: 4.7vh 5.2vw 3vh;
  }

  .recruit-div {
    padding: 0 1.67vw;
  }

  .recruit-header {
    padding: 3.3vh 1.67vw;
  }

  .recruit-header h2 {
    margin-bottom: 1vh;
    padding-bottom: 0.8vh;
  }

  .recruit-img {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }

  .recruit-img img {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }

  .recruit-list-content p {
    font-size: 4.6vw;
  }

  .recruit-list-content ul li {
    padding-bottom: 2vh;
    background-size: 3% 30%;
    background-position: 0px 30%;
  }

  .recruit-list-content ul li a {
    font-size: 3.75vw;
  }

  /* Footer */
  .line-white {
    padding-top: 8vh;
  }

  .footer-page {
    padding: 0 5.2vw 0;
    padding-bottom: 20vw;
  }

  .footer-left {
    margin-top: 0;
  }

  .footer-right {
    margin-top: calc(54.94px / 2);
  }

  .footer-left a,
  .footer-right p {
    font-size: 3.75vw;
  }

  .top-page a {
    margin: 0 5.2vw 4.5vh 0;
  }

  /* Cookie Styles */
  .cookie-content {
    flex-direction: column;
  }

  .cookie-div-right {
    width: 100%;
  }
}

@media only screen and (max-width: 390px) {

  html,
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 6.6vw;
  }

  h2 {
    font-size: 5.4vw;
  }

  h3 {
    font-size: 4.9vw;
  }

  p,
  a {
    font-size: 3.85vw;
    line-height: 2;
  }

  /* Font Sizes */
  .font-16 {
    font-size: 3vw;
  }

  .font-24 {
    font-size: 3.6vw;
  }

  .font-25 {
    font-size: 3.7vw;
  }

  .font-32 {
    font-size: 6.5vw;
  }

  .hamburger {
    width: 65%;
  }

  .header_title p {
    line-height: 1.7;
  }

  .partner-sp-tip {
    font-size: 4.6vw;
  }

  .partner-sp-content {
    font-size: 3.85vw;
  }

  .business-content p {
    line-height: 2;
  }

  .footer-right {
    margin-top: calc(38.81px / 2);
  }

  .content-group p {
    font-size: 3.85vw;
  }

  /* Cookie Style */
  .modal-content p {
    font-size: 13px;
  }

  .modal-content a,
  .modal-submit a {
    font-size: 14px;
    width: 70%;
  }

  .modal-choice p {
    font-size: 13px;
    line-height: inherit;
  }
}

@media only screen and (min-width: 481px) and (max-width: 820px) {
  .cookie-content {
    flex-direction: column;
  }

  .cookie-details {
    font-size: 10px;
  }

  .cookie-div-right {
    margin-bottom: 20px;
    gap: 0px;
  }

  .cookie-content {
    padding: 0 19px;
  }

  .cookie-title {
    font-size: 13px;
    margin-bottom: 0px;
  }

  .cookie-div-right {
    gap: 0px;
  }

  #cookie-agree,
  #cookie-setup {
    font-size: 13px;
  }
}

@media only screen and (min-width: 821px) and (max-width: 1024px) and (orientation: landscape) {
  .cookie-content {
    padding: 19px 29px;
  }

  .cookie-details {
    font-size: 10px;
  }

  .cookie-title {
    font-size: 13px;
    margin-bottom: 10px;
  }

  #cookie-setup {
    font-size: 14px;
  }

  #cookie-agree {
    font-size: 14px;
    width: 123px;
    height: 44px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .header_contact:hover {
    opacity: 0.7;
  }

  .nav-title a:hover {
    color: #B5A078;
  }

  .sub-menu li a:hover {
    background-color: #B5A078;
    color: #fff;
  }

  .prev img:hover,
  .next img:hover {
    opacity: 0.5;
  }

  .dot:hover {
    opacity: 0.7;
  }

  .content-group .arrow-img:hover {
    opacity: 0.7;
  }

  .content-group:hover .image-bg:first-of-type {
    transition: transform 1s ease-in-out;
    transform: scale(1.5);
  }

  .notice-div p:hover {
    text-decoration: underline;
  }

  .button-submit:hover {
    opacity: 0.7;
  }

  .company-img img:hover {
    opacity: 0.7;
    transform: scale(1.3);
    transition: transform 1s ease-in-out;
  }

  .footer-container .breadcrumb a:hover {
    color: #000;
  }

  .recruit-title a:hover img {
    opacity: 0.7;
  }

  .recruit-img img:hover {
    transform: scale(1.5);
    transition: transform 1s ease-in-out;
  }

  .recruit-img:hover+.recruit-title .recruit_underline::after {
    width: 100%;
  }

  .recruit-list-content a:hover {
    color: #B5A078;
  }

  .recruit-list-content ul li:hover {
    background-image: url("../images/pc/arrow_text.png");
  }

  .recruit-list-content ul li a:hover {
    color: #B5A078;
  }

  .contact-content a:hover {
    color: #B5A078;
  }

  .contact-img a:hover {
    opacity: 0.7;
  }

  .footer-left a:hover {
    color: #B5A078;
  }

  .top-page a:hover {
    opacity: 0.7;
  }

  #cookie-agree:hover {
    opacity: 0.7;
  }

  #cookie-setup:hover {
    opacity: 0.7;
  }

  button#modal-close:hover {
    opacity: 0.5;
  }

  .modal-content a:hover,
  .modal-submit a:hover {
    opacity: 0.7;
  }

  .recruit-img img:hover {
    transform: scale(1.2);
  }
}