/*
Theme Name: 通知管理LP_2025mado
Author: gyosei
*/


/* common
---------------------------------------------*/

html {
}

body {
}

* {
	font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo,'游ゴシック', YuGothic, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', Aria, sans-serif;
}


body p {
	line-height: 1.6;
}

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

.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}


/* hr 要素は不可視で使う */
hr {
  display: none;
  border: 0;
  clear: both;
  visibility: hidden;
  display: block;
  }

hr.clear {
  height: 0;
  margin: 0;
  padding: 0;
  visibility: hidden;
  display: block;
  clear: both;
  }

/* 基本css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@media screen and (max-width: 600px) {
* {
	font-size: 19px;
}
}
body {
    font-family: 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.logo img {
    height: 40px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-link.active,
.nav-link:hover {
    color: #5BB654;
}

.cta-button {
    background: #5BB654;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #e55a2b;
}

.google-logo img {
    height: 30px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff9a56 0%, #ffad56 50%, #ffd56b 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
}

.hero-subtitle {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}
.front__hero--layer1 {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .3);
  background-image: url(images/hero-top.jpg);
  background-size: cover;
  background-position: center; /* 中央に配置 */
}
.news-section {
    background: rgba(255,255,255,0.9);
    padding: 20px;
    border-radius: 10px;
    min-width: 300px;
    margin-left: 40px;
}

.news-section h3 {
    color: #5BB654;
    margin-bottom: 15px;
    font-size: 18px;
}

.news-item {
    display: inline-block;
    flex-direction: column;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    padding-left: 60%;
    padding-top: 35%;
}
@media screen and (max-width: 600px) {
.news-item {
    padding-left: 30%;
    padding-top: 15%;
}
}
.news-date {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
}
@media screen and (max-width: 600px) {
.news-date {
    font-size: 16px;
}
}

.news-content {
    font-size: 16px;
    color: #333;
}
@media screen and (max-width: 600px) {
.news-content {
    font-size: 16px;
}
}
.news-more {
    color: #5BB654;
    text-decoration: none;
    font-size: 14px;
    text-align: right;
    display: block;
    margin-top: 10px;
    position: relative;
    z-index: 1;
    margin-right: 5%;
}

/* Section Titles */
.section-title {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #5BB654;
    margin-bottom: 30px;
}

.title-icon {
    margin-right: 10px;
    font-size: 28px;
}

/* System Overview */
.system-overview {
	padding-top: 0%;
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
}

.system-diagram {
    text-align: center;
    margin: 40px 0;
}

.diagram-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.diagram-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.diagram-icon {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.diagram-icon.mobile {
    background: #5BB654;
}

.diagram-icon.notification {
    background: #4CAF50;
}

.diagram-icon.building {
    background: #2196F3;
}

.diagram-arrow {
    font-size: 24px;
    color: #5BB654;
    font-weight: bold;
}

.diagram-label {
    background: #5BB654;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    font-weight: bold;
}

/* System Features */
.system-features {
    padding: auto;
}

.features-content {
    margin-bottom: 40px;
}

.features-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.features-content h3 {
    color: #5BB654;
    font-size: 20px;
    margin: 30px 0 15px 0;
}

.notice-box {
    border: 2px solid #5BB654;
    border-radius: 10px;
    padding: 30px;
    background: #fff;
    margin: 40px 0;
}

.notice-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.notice-icon {
    color: black;
    margin-right: 10px;
    margin-top: 5px;
}
.notice-num {
    padding: 0;
    color: #5BB654;
    text-align: center;
    margin-top: 5px;
}
.notice-highlight {
    background: #fff;
    color: #5BB654;
    padding: 0px 0px;
    border-radius: 5px;
    margin: auto;
    font-weight: bold;
    margin-bottom: 10px;

}

.helper-img{
width: 70%;
margin-top: -10%;
}
@media screen and (max-width: 600px) {
.helper-img{
width: 100%;
}
}
.maina-img{
width: 70%;
}
@media screen and (max-width: 600px) {
	.maina-img{
		width: 100%;
	}
}
.diagram-img{
    width: 85%;
    position: relative;
    margin-block: auto;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}
@media screen and (max-width: 600px) {
.contact-section {
    padding: 0px 0;
}
}
.contact-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    padding-bottom: 3%;
}
@media screen and (max-width: 600px) {
	.contact-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    padding-bottom: 3%;
}
}
.contact-form-btn {
    display: inline-block;
    background-color: #fff;
    color: #5BB654;
    padding: 15px 30px;
    text-align: center;
    font-size: 2.0em;
    border-radius: 24px;
    text-decoration: none;
    border-color: #5BB654;
    width: 100%;
    height: 120px;
    font-weight: bold;
    box-shadow: 5px 5px 13px rgba(0, 0, 0, 0.4);
    background: linear-gradient(#fff 0%, #f7f4f4 100%);
}
@media screen and (max-width: 600px) {
	.contact-form-btn {
    width: 100%;
}
}
.contact-form-btn:hover {
    background: #5BB654;
    color: white;
    border-color: #5BB654;
}

.phone-contact {
    border: 3px solid #5BB654;
    border-radius: 19px;
    padding: 20px;
    max-width: 100%;
    background: transparent;
}

.phone-header {
margin-bottom: 15px;
    font-weight: normal;
    font-size: 1.25em;
    line-height: auto;
    text-align: center;
    color: #5BB654;
}

.phone-info {
    display: flex;
    flex-direction: initial;
    gap: 2%;
    align-items: center;
    justify-content: center;
    padding-top: 1%;
}
.company-name{

}
.department{

}
@media screen and (max-width: 600px) {
.phone-img{
	width:2%;
}
}
.phone-number {
    font-size: 24px;
    font-weight: bold;
    color: #4b4a4a;
    margin: 0;
}

.phone-hours {
    font-size: 14px;
    color: #666;
}

/* Download Section */
.download-section {
    padding-bottom: 3%;
}

.download-items {
    display: grid;
    gap: 0%;
    justify-content: left;
    margin-bottom: 0%;
    padding-left: 0%;
}
@media screen and (max-width: 600px) {
	.download-items {
    display: grid;
    justify-content: center;
	}
}
.download-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-image: url(https://www.gyosei-system.co.jp/madoguchinavi_p/wp-content/uploads/2025/07/窓口なびピコタッチ_リーフレット_ページ_1.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.download-icon {
    font-size: 48px;
    color: #5BB654;
}

.download-link {
    display: block;
    text-align: center;
    background: #5BB654;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    max-width: 200px;
    margin: 0 auto;
    transition: background 0.3s ease;
}

.download-link:hover {
    background: #e55a2b;
}

@media screen and (max-width: 600px) {
  .pdf {
    text-align: center;
  }
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-bottom: 0px;
    padding-left:auto;
}

.footer-nav {
    display: flex;
    gap: 30px;
    padding-left: 30px;
}

.footer-nav a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #5BB654;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    font-size: 14px;
    color: #ccc;
}

footer .footerContents .footer__h2 img {
  width: 50%;
  height: auto;
  margin-left: 45%;
}
@media screen and (max-width: 600px) {
  footer .footerContents .footer__h2 img {
    max-width: 40%;
  }
}

footer .footerContents .footer__hp {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
}
footer .footerContents .footer__hp img {
  width: 100%;
  max-width: 158px;
  height: auto;
  margin-bottom: 0;
  arign:center;
}
@media screen and (max-width: 600px) {
  footer .footerContents .footer__hp img {
    max-width: 40%;
      arign:center;
  }
}
/* Go to top*/
#page-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: none;
  z-index: 400;
}
@media screen and (max-width: 600px) {
  #page-top {
    right: 15px;
    bottom: 15px;
  }
}
#page-top a {
  display: block;
  width: 55px;
  height: 55px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 600px) {
  #page-top a {
    width: 40px;
    height: 40px;
    border-radius: 0;
  }
}
#page-top a svg {
  width: 100%;
  height: 100%;
}
#page-top a:link, #page-top a:visited {
  color: #fff;
  text-align: center;
  transition-duration: 0.3s;
}
#page-top a:hover {
  color: #111;
  transition-duration: 0.3s;
}
.txt__words img {
  width: 90%;
  height: auto;
  padding-left:40%;
  z-index: 1;
}

.video-frame {
position: relative;
height: 0;
padding: 30px 0 56.25%;
overflow: hidden;
}

.video-frame iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.header .hd__list{
  position: relative;
  width: calc(100% - 20px);
  max-width: 1200px;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.85);
  box-sizing: border-box;
  text-align: center;
  z-index: 100;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: all 1s ease-out;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  opacity: 0;
}
header .hd__list {
    width: calc(100% - 20px);
    max-width: 1200px;
    margin-inline: auto;
    display: grid;
    box-sizing: border-box;
    grid-template-columns: 1fr 5fr 0.6fr;
    -moz-column-gap
Sets the gap between columns. If there is a column rule between columns, it will appear in the middle of the gap.
: 2.5%;
    column-gap: 1.5%;
    padding: 0px;
    justify-content: center;
}
header .hd__list--logo {
  min-width: 30%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: -moz-fit-content;
  width: min-content;
}
header .hd__list--logo img {
  width: 70%;
  transition: all 0.2s ease-out;
}
header .hd__list--menu {
  box-sizing: border-box;
  display: grid;
  align-items: center;
  justify-content: flex-end;
  padding-left: 10%;
}
header .hd__list--menu--ul {
  display: flex;
    align-items: center;
    -moz-column-gap: 15px;
    column-gap: 20px;
    list-style: none;
    padding-left: 0;
    align-content: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    width: 100%;
}
header .hd__list--menu--ul li {
  padding: 0px 0;
  border-bottom: 0px solid rgba(255, 255, 255, 0);
  transition: all 0.3s ease-out;
}
header .hd__list--menu--ul li a {
  font-weight: 400;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  line-height: 1.2;
  display: block;
  color: black;
    text-decoration: none;
}
header .hd__list--inquiry {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  text-align: right;
}
header .hd__list--inquiry img {
  width: 30%;
  transition: all 0.2s ease-out;
}
a.h-nav-link active{
background-color: #5BB654;
    color: #fff;
    padding: 20px 20px 20px;
    border-radius: 5px 5px 0px 0px;
}
header .hd__list--menu--ul li active {
  font-weight: 400;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  display: block;
    text-decoration: none;
    background-color: #5BB654;
    color: #fff;
    padding: 20px 20px 20px;
    border-radius: 5px 5px 0px 0px;

}
header .hd__list > dd
Specificity: (0,1,2)
 {
    width: 100%;
    box-sizing: border-box;
}
.bn-img{
width: 50%;
}
.bn-section{
        text-align: center;
}
@media screen and (max-width: 600px) {
  html {
    font-size: 55%;
  }
}

/* ヘッダーの対応 */
.top.phone {
    display: none;
}

@media screen and (max-width: 600px) {
  .top.phone {
    display: block;
  }
  .top.pc {
    display: none;
  }

  .hd__list--menu {
    display: none !important;
  }
}

@media screen and (max-width: 600px) {
  .top.phone {
    display: block;
  }
  .top.pc {
    display: none;
  }

  .hd__list--menu {
    display: none !important;
  }
}
/* 本文（通知管理） */
#mainvisual2 {
    display: none;
    text-align: center;
}

@media screen and (max-width: 600px) {
  #mainvisual {
    display: none;
  }
  #mainvisual2 {
    display: block;
  }
}

@media screen and (max-width: 600px) {
    .features-con {
        display: block !important;
    }

    .features-content p {
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 600px) {
    .features-osirase {
        display: block !important;
    }
}

@media screen and (max-width: 600px) {
  .contact-form-btn {
    font-size: 1.3em;
  }
}

.contact-phone{
    display: none;
}

@media screen and (max-width: 600px) {
    .contact-phone {
        display: block;
    }

    .contact-pc {
        display: none;
    }
}

/* フッターの対応 */
.foot.phone {
    display: none;
}

@media screen and (max-width: 600px) {
  .foot.phone {
    display: block;
  }
  .foot.pc {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .download-item {
    width: 90vw;
    height: 90vw;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  .foot.pc {
    display: none;
  }
}
.madoguchinavi_p_sec {
    border: 3px solid #5BB654;
    border-radius: 18px;
    padding: 14px;
    width: calc(100% - 10px);
    max-width: 1200px;
    background: #5BB654;
    margin-inline: auto;
}
h3.madoguchinavi_p_sec {
    color: white;
}
.madoguchinavi_a_sec {
    border: 3px solid #5BB654;
    border-radius: 18px;
    padding: 14px;
    width: calc(100% - 10px);
    max-width: 1200px;
    background: #5BB654;
    margin-inline: auto;
}
h3.madoguchinavi_a_sec {
    color: white;
}
.diagram-img_a{
    width: 85%;
    position: relative;
    margin-block: auto;
}
@media screen and (max-width: 600px) {
.diagram-img{
    width: 100%;
}
}
@media screen and (max-width: 600px) {
.diagram-img_a{
    width: 100%;
}
}
@media screen and (max-width: 600px) {
  .bn-img {
    width: 90%;
  }
}
