@charset "UTF-8";
/*
Theme Name: 株式会社東明 2025
Theme URI: 
Author: SC Solution
Author URI: https://scsolution.jp
Description: 株式会社東明
Version: 1.0
*/
/*
@media screen and (max-width: 1279px){
}
@media screen and (max-width: 1023px){
}
@media screen and (max-width: 767px){
}
@media screen and (max-width: 479px){
}
*/
/* CONST */
:root {
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-en: "Poppins", sans-serif;
  --font-family-hand: "Yellowtail", sans-serif;
  --color-primary: #004097;
  --color-sub01: #ff6c0a;
  --color-sub02: #e5eef5;
  --color-text: #333;
  --bg-highlight: #F1F8F9;
  --border-color: #c3d1d0;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

/* COMMON */
body {
  font-family: var(--font-family-base);
  color: var(--color-text);
  background-color: #fff;
  font-size: clamp(0.875rem, 0.85rem + 0.13vw, 1rem);
}

main {
  margin-top: 120px;
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 1279px) {
  main {
    margin-top: 70px;
  }
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 10px;
  width: 100%;
}

section {
  position: relative;
  padding: 0 0 80px;
}
section.pt {
  padding-top: 80px;
}

article.page {
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  section {
    padding: 0 0 40px;
  }
  section.pt {
    padding-top: 40px;
  }
  article.page {
    padding: 40px 0;
  }
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-family-mincho);
}

h1 {
  font-size: clamp(1.8rem, 1.574rem + 1.03vw, 2.4rem);
}

h2 {
  font-size: clamp(1.7rem, 1.6rem + 0.5vw, 2rem);
}

h3 {
  font-size: clamp(1.3rem, 1.2rem + 0.5vw, 1.6rem);
}

h4 {
  font-size: 1.2rem;
}

h5 {
  font-size: 1rem;
}

.text-center {
  text-align: center;
}

.bg-highlight {
  background-color: var(--bg-highlight);
}

.marker {
  font-weight: 700;
  background: linear-gradient(transparent 60%, #FFFF50 60%);
}

.yellow {
  color: #FFF500;
}

.title-sub {
  font-family: var(--font-family-en);
  font-size: clamp(0.8rem, 0.725rem + 0.34vw, 1rem);
  margin-bottom: 1rem;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.title-sub::before {
  content: "";
  height: 1px;
  background-color: var(--color-primary);
  width: 50px;
}
.title-sub.center {
  justify-content: center;
}

.section__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 3rem;
}
.section__title.center {
  justify-content: center;
}

.btn01 {
  width: 300px;
  border-radius: 30px;
  text-decoration: none;
  background-color: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  font-size: clamp(1rem, 0.933rem + 0.33vw, 1.2rem);
  letter-spacing: 0.08em;
  font-weight: 700;
  position: relative;
  padding: 0 30px;
  cursor: pointer;
  font-family: var(--font-family-mincho);
  height: 64px;
  transition: 0.5s;
  border: 2px solid var(--color-primary);
}
.btn01 .btn01__arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: 0.8s;
}
.btn01 .btn01__arrow::after {
  content: "\e8e4";
  font-family: "Material Icons";
  font-weight: 400;
  font-size: 1.4rem;
  transition: 0.8s;
}
.btn01:hover {
  background-color: #fff;
  color: var(--color-primary);
}
.btn01:hover .btn01__arrow {
  background: var(--color-primary);
  transform: scale(1.3);
}
@media screen and (max-width: 767px) {
  .btn01 {
    height: 55px;
  }
  .btn01 .btn01__arrow {
    width: 35px;
    height: 35px;
    right: 10px;
  }
}

/* デバイス表示切り替え用 共通クラス */
.sp-only {
  display: none !important;
}

.pc-only {
  display: block !important;
}

.sp-hide {
  display: block !important;
}

.pc-hide {
  display: none !important;
}

@media screen and (max-width: 991px) {
  .sp-only {
    display: block !important;
  }
  .pc-only {
    display: none !important;
  }
  .sp-hide {
    display: none !important;
  }
  .pc-hide {
    display: block !important;
  }
}
/* HEADER */
header {
  position: fixed;
  width: 100%;
  height: 120px;
  z-index: 1000;
  top: 0;
  left: 0;
  z-index: 4;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  height: 100%;
  max-width: 100%;
  padding-left: clamp(10px, 3vw, 150px);
  padding-right: 160px;
}
header .site-logo {
  width: 30%;
  max-width: 240px;
}
header .gnav {
  display: flex;
  align-items: center;
}
header .gnav .gnav--menu {
  display: flex;
  list-style: none;
}
header .gnav .gnav--menu li {
  width: 7vw;
  text-align: center;
  padding: 10px 0;
}
@media screen and (min-width: 1280px) {
  header .gnav .gnav--menu li {
    border-left: 1px solid var(--border-color);
  }
  header .gnav .gnav--menu li:last-child {
    border-right: 1px solid var(--border-color);
  }
}
header .gnav .gnav--menu li.current a {
  background-color: var(--bg-highlight);
}
header .gnav .gnav--menu li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 5px;
  padding: 10px 0;
  border-radius: 10px;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 500;
  transition: 0.3s;
}
header .gnav .gnav--menu li a:hover {
  color: var(--color-sub01);
  background-color: var(--bg-highlight);
}
header .gnav .gnav--menu li a:hover svg {
  fill: var(--color-sub01);
}
header .gnav .gnav--menu li a svg {
  height: 40px;
  width: auto;
  fill: var(--color-primary);
  transition: 0.3s;
}
header .gnav .gnav--tel {
  flex-shrink: 0;
}
header .gnav .gnav--tel a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: var(--color-primary);
  font-size: 0.8rem;
  gap: 3px;
}
header .gnav .gnav--tel a img {
  height: 28px;
  width: auto;
}
header .gnav .gnav--tel a .gnav--tel-wrapper {
  display: flex;
  gap: 5px;
  align-items: center;
}
header .gnav .gnav--tel a .gnav--tel_num {
  color: var(--color-primary);
  font-family: var(--font-family-en);
  font-weight: 600;
  font-size: 1.6rem;
}
header .gnav .gnav--tel a .gnav--tel_hours {
  font-size: 0.8rem;
  background: var(--bg-highlight);
  padding: 5px 15px;
  border-radius: 10px;
  font-weight: 500;
  line-height: 1;
}
header .gnav--mail {
  position: fixed;
  right: 0;
  top: 0;
  background-color: var(--color-sub01);
  width: 150px;
  height: 150px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1003;
}
header .gnav--mail a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  height: 100%;
  text-align: center;
  line-height: 1.2;
}
header .gnav--mail a img {
  height: 28px;
  width: auto;
}

header .hamburger {
  display: none;
}

@media screen and (max-width: 1279px) {
  header {
    height: 70px;
  }
  header .container {
    padding: 0 140px 0 clamp(10px, 3vw, 150px);
  }
  header .site-logo {
    width: 50%;
    z-index: 1001;
  }
  header .site-logo img {
    height: 50px;
  }
  header .gnav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1002;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.97);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.3s;
    padding: 20px 5%;
    gap: 10px;
  }
  header .gnav.open {
    top: 70px;
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }
  header .gnav .gnav--menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    position: relative;
  }
  header .gnav .gnav--menu li {
    border-left: none;
    border-bottom: 1px dotted var(--border-color);
    width: 100%;
  }
  header .gnav .gnav--menu li a {
    flex-direction: row;
    justify-content: flex-start;
    gap: 5%;
    font-size: 1rem;
    position: relative;
  }
  header .gnav .gnav--menu li a svg {
    height: 30px;
  }
  header .gnav .gnav--menu li a::after {
    content: "\e5cc";
    font-family: "Material Icons";
    font-weight: 400;
    font-size: 1.4rem;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
  }
  header .gnav .gnav--tel {
    margin: 0 auto;
  }
  header .gnav .gnav--tel a {
    font-size: 1rem;
  }
  header .gnav .gnav--tel a .gnav--tel_hours {
    font-size: 1rem;
  }
  header .hamburger {
    display: block;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1002;
  }
  header .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    margin: 6px 0;
    transition: 0.3s;
  }
  header .hamburger.active span {
    background: var(--color-text);
  }
  header .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  header .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  header .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  header .gnav--mail {
    width: 120px;
    height: 120px;
    font-size: 0.8rem;
  }
  header .gnav--mail a {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  header .container {
    padding-right: 100px;
  }
  header .gnav--mail {
    width: 80px;
    height: 80px;
    font-size: 0.6rem;
  }
  header .gnav--mail a {
    font-size: 12px;
  }
  header .gnav--mail a img {
    height: 20px;
  }
}
/* FOOTER */
footer {
  background: var(--bg-highlight);
}
footer > .container {
  padding: 2rem 0;
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  footer > .container {
    flex-direction: column;
    font-size: 0.8rem;
  }
}
footer .footer__inner {
  padding: 0 2rem;
}
@media screen and (min-width: 768px) {
  footer .footer__inner {
    border-right: 1px solid var(--border-color);
    width: 33.3333333333%;
  }
}
footer .footer__inner.logo img {
  width: 240px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  footer .footer__inner.logo img {
    width: 200px;
    margin-bottom: 10px;
  }
}
footer .footer__inner.logo p {
  margin-bottom: 1rem;
}
footer .footer__inner nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .footer__inner nav ul li {
  padding: 3px 0;
}
footer .footer__inner nav ul li a {
  font-weight: 600;
  color: var(--color-primary);
  padding: 5px 0 5px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
footer .footer__inner nav ul li a::after {
  content: "\e5cc";
  font-family: "Material Icons";
  font-weight: 400;
  font-size: 1.4rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  footer .footer__inner nav ul li a {
    padding-left: 30px;
  }
  footer .footer__inner nav ul li a::after {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  footer .footer__inner nav ul li a::after {
    right: 5%;
  }
}
footer .footer__inner .footer__inner__btn {
  margin-top: 2rem;
}
footer .footer__inner .footer__inner__btn a {
  font-size: 1rem;
  justify-content: flex-end;
  width: auto;
  max-width: 300px;
  padding: 0 20px 0 60px;
}
footer .footer__inner .footer__inner__btn a .btn01__arrow {
  left: 15px;
  right: auto;
}
footer .footer__inner .footer__inner__btn a .btn01__arrow::after {
  content: "\e0be";
  font-family: "Material Icons";
  font-weight: 400;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  footer .footer__inner .footer__inner__btn {
    width: 90%;
    margin: 10px auto 0;
  }
  footer .footer__inner .footer__inner__btn a .btn01__arrow {
    left: 10px;
  }
}
footer .footer__inner:last-child {
  border: none;
}
footer .copyright {
  background-color: var(--color-text);
  color: #fff;
  font-size: clamp(0.6rem, 0.525rem + 0.34vw, 0.8rem);
  letter-spacing: 0.05em;
  padding: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer .copyright {
    font-size: 0.6rem;
  }
}

/* CONTACT */
.contact {
  padding: 80px 0;
  text-align: center;
  background: url("images/bg_contact.jpg") center/cover no-repeat;
}
.contact h2 {
  color: #fff;
  font-size: clamp(1.8rem, 1.424rem + 1.72vw, 2.8rem);
}
.contact p {
  color: #fff;
}
.contact .contact__button-wrapper {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  transition: 0.8s;
}
.contact .contact__button-wrapper .contact__button-wrapper__inner {
  display: block;
  width: calc(50% - 1rem);
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.contact .contact__button-wrapper .contact__button-wrapper__inner .contact__button-wrapper__inner__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #fff;
}
.contact .contact__button-wrapper .contact__button-wrapper__inner .contact__button-wrapper__inner__button img {
  height: 28px;
  width: auto;
}
.contact .contact__button-wrapper .contact__button-wrapper__inner .contact__button-wrapper__inner__button.tel span {
  font-family: var(--font-family-en);
  font-weight: 600;
  font-size: 2.4rem;
}
.contact .contact__button-wrapper .contact__button-wrapper__inner .contact__button-wrapper__inner__button.mail span {
  font-size: clamp(1.4rem, 1.249rem + 0.69vw, 1.8rem);
  font-weight: 600;
}
.contact .contact__button-wrapper .contact__button-wrapper__inner:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 40px 0;
  }
  .contact .contact__button-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
  .contact .contact__button-wrapper .contact__button-wrapper__inner {
    width: 100%;
  }
}

/* PAGE */
.page-title {
  padding: 100px 0;
  background-color: var(--bg-highlight);
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 1;
}
.page-title > * {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .page-title {
    padding: 40px 0;
  }
}

.breadcrumb {
  padding: 2rem 0;
  font-size: 0.8rem;
}

.breadcrumb .aioseo-breadcrumb-separator {
  margin: 0 10px;
}

.breadcrumb .aioseo-breadcrumb:not(:has(a)) {
  color: var(--color-primary);
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 各ボックスに時間差をつける */
.delay-0 {
  transition-delay: 0s;
}

.delay-1 {
  transition-delay: 0.3s;
}

.delay-2 {
  transition-delay: 0.6s;
}

.delay-3 {
  transition-delay: 0.9s;
}/*# sourceMappingURL=style.css.map */