@charset "UTF-8";

body,
h1,
h2,
h3,
h4,
ul,
dl,
li,
dt,
dd,
p,
a {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

html,p,a,li,dl {
  font-family: Noto Sans CJK JP, “Helvetica Neue”, Arial,
    “Hiragino Kaku Gothic ProN”, “Hiragino Sans”, Meiryo, sans-serif;
}

/* 初期状態の非表示 */
#content-container {
    display: none;
}

/* JavaScriptで読み込んだ後に表示 */
#content-container.loaded {
    display: block;
}



body {
  background-color: #f7f7f7;
}

@media screen and (max-width: 639px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
    
}

@media screen and (min-width: 640px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
}

/*animate.css用*/
.invisible {
  visibility: hidden;
}

/*animate.css用　終わり*/

body {
  background-color: #fff;
}

main {
  min-height: 100vh;
}

/*ヘッダーエリア*/
header {
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  z-index: 99;
  display: flex;
  padding: 0 1em;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 145px;
}
.navarea {
  height: 100%;
  width: 60%;
}

.navarea ul {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  font-size: clamp(10px, 3.6vw, 16px);
  margin: auto;
  align-items: center;
  line-height: 1;
}

.navarea ul a {
  text-decoration: none;
  color: #0f538b;
}

.navarea li{
    margin-bottom: 0;
    color: #0f538b;
}

.contact-button {
  display: block !important;
  background-color: #de5b11;
  line-height: 1;
  padding: 1.2em;
  border-radius: 50px;
  margin: auto;
  text-align: center;
  color: #fff;
  font-weight: bold;
}

@media screen and (min-width: 640px) {
  header {
    padding: 1em 1em;
    height: 150px;
  }

  .logo {
    width: 18%;
    max-width: 300px;
  }
  .navarea {
    box-sizing: border-box;
    background-color: #fff;
    height: 100px;
    border-radius: 50px;
    width: 80%;
    max-width: 950px;
    padding: 0 1em;
  }

  .navarea ul {
    display: flex;
    line-height: 70px;
    justify-content: space-around;
    font-size: clamp(10px, 1.55vw, 18px);
    align-items: center;
  }

  .contact-button {
    padding: 1.5em;
    border-radius: 50px;
  }
}

.flort-menu .nav {
  overflow: visible; /* 子要素が隠れないように設定 */
}

/*ヘッダーエリア終わり*/

.of-hidden {
  overflow: hidden;
}

.inner {
  box-sizing: border-box;
  margin: auto;
  max-width: (1280px + 2em);
  height: 100%;
  overflow: hidden;
  padding: 0 1em;
}

.inner960 {
  box-sizing: border-box;
  margin: auto;
  max-width: calc(960px + 2em);
  height: 100%;
  overflow: hidden;
  padding: 0 1em;
}

.inner800 {
  box-sizing: border-box;
  margin: auto;
  max-width: calc(800px + 2em);
  height: 100%;
  overflow: hidden;
  padding: 0 1em;
}

.inner-pad-0 {
  margin: auto;
  max-width: 1280px;
  height: 100%;
  overflow: hidden;
  padding: 0;
}

img {
  width: 100%;
  height: 100%;
}

#hero {
  height: 100vh;
  min-height: 960px;
  background-image: url(img/hero-img.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: calc(960px + 2em);
  height: 100%;
  margin: auto;
  position: relative;
}

.hero-img0 {
  position: absolute;
  width: 101%;
  padding: 0;
  margin: 0;
  bottom: 398px;
  left: -1px;
}

.white-back {
  background-color: #fff;
  position: absolute;
  width: 100%;
  height: 400px;
  bottom: -1px;
}

.hero-content-left{
  position: absolute;
  top: 250px;
  left: 1em;
  width: 50%;
}
.hero-content-right{
  position: absolute;
  top: 150px;
  right: 1em;
  width: 45%;
}

.hero-content-left img{
  margin-bottom: 1em;
}

.hero-img1 {
  position: absolute;
  width: 40%;
  margin: 0;
  bottom: 398px;
  right: 1em;
}

@media screen and (max-width: 639px){
  #hero {
   height: var(--initial-vh); /* 初回ロード時の高さを固定 */
      min-height: auto; /* PC版のmin-heightを無効化 */
  }
  
   .hero-content {
    height: var(--initial-vh); /* #heroと同じ高さを固定 */
    position: relative;
    overflow: hidden; /* 子要素のズレを防止 */
  }

  .hero-content h1{
    position: absolute;
    top: 12%;
    left: 0;
    right: 0;
    margin: auto;
    width: 85%;
  }
  
  .hero-img0 {
    position: absolute;
    bottom: 0; /* 親要素のbottomに固定 */
    width: 101%; /* 横幅を超えないよう調整 */
    left: 0;
  }
  
  .white-back {
    background-color: #fff;
    position: absolute;
    width: 100%;
    height: calc(var(--vh, 1vh) * 25 + 2px); /* 必要に応じて調整 */
      transform: translateY(0);
    bottom: 0;
  }
  
  .hero-content-left{
    top: 45%;
    left: 0;
    right: 0;
    margin: auto;
    width: 85%;
  }
  .hero-content-right{
    position: absolute;
    left: 0;
    right: 0;
    margin:auto;
    top: 25%;
    width: 85%;
  }
  
  .hero-content-left img{
    margin-bottom: 1em;
  }
  
  .hero-img1 {
    position: absolute;
    bottom: 0; /* 親要素のbottomに固定 */
    left: 50%;
    transform: translateX(-50%);
    width: 80%; /* レスポンシブに画像サイズを調整 */
    max-width: 100%;
    height: auto; /* アスペクト比を維持 */
      margin: 0;
  }
    

  .kakaku{
      margin-top: 3em;
    padding: 0 1em 3em;

  }

}


.pawamaru-container {
  background-color: #de5b11;
  position: relative;
  padding: 0 0 0 0;
  overflow: hidden;
}

.powermaru-conntent {
  position: relative;
  max-width: 960px;
  margin: auto;
  padding: 3em 0;
}

.powermaru-img1 {
  margin: auto;
  width: 95%;
}

.powermaru-img0 {
  position: absolute;
  width: 101%;
  bottom: 60px;
  left: -1px;
}

.powermaru-img1 {
  margin: auto;
  width: 95%;
}

.service-container {
  position: relative;
}
.powermaru-img2 {
  position: absolute;
  width: 94%;
  left: 3%;
  top: 0;
}

.powermaru-img3 {
  margin: auto;
  max-width: 960px;
  padding-bottom: 3em;
}

.service-list {
  padding: 60vw 1em 0 1em;
  display: flex;
  flex-direction: column;
}

.service-list div {
  width: 100%;
  margin-bottom: 1em;
}

@media screen and (min-width: 640px) {
  .pawamaru-container {
    padding: 0 0 clamp(100px, 30vw, 80px) 0;
    overflow: hidden;
  }

  .powermaru-conntent {
    padding: 3em 0;
  }
  .powermaru-img1 {
    max-width: 100%;
    padding: 0 1em;
  }

  .powermaru-img2 {
    position: absolute;
    width: 35%;
    top: -20px;
    left: -1%;
  }

  .service-list {
    padding: 0 1em 0 1em;
    margin-top: 3em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .service-list div {
    width: 32%;
  }
}

#monitoring{
  padding: 5em 0 0;

}
.tokucho{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.tokucho div{
  width: 48%;
}

.tokucho div:nth-child(3){
  width: 100%;
}

@media screen and (max-width: 640px) {
  .tokucho{
    flex-direction: column;
    justify-content: space-between;
  }

  .tokucho div{
    margin-bottom: 1em;
    width: 100%;
  }

  .tokucho div:last-child{
    width: 60%;
    margin: auto;
  }
}

#manga-introduction{
  box-sizing: border-box;
  margin: auto;
  max-width: 100%;
  padding: 3em 0;
  background-color: #F6D1B3;
}

.introduction-content{
  margin: 2em 3em 0;
}

.introduction-content div{
  margin-bottom: 2em;
}
@media screen and (max-width: 640px) {
  #manga-introduction{
    padding: 2em 0;
  }

  .introduction-content{
    margin: 2em 0 0;
  }

  .introduction-content div{
    margin-bottom: 1em;
  }
}
#publish{
  box-sizing: border-box;
  font-size: 1.5em;
  font-weight: 500;
}
.publish-head{
  background-color:#004379 ;
  text-align: center;
  padding: 1em;
  height: 250px;
}


.bg-gray{
  background-color: #F8F8F8;
}
.publish-content1{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  max-width: calc(960px + 2em);
  padding: 5em 1em;
}

.publish-content1 div img{
  margin-bottom: 1em;
}

.publish-content2{
  margin: auto;
  max-width: calc(960px + 2em);
  padding: 5em 1em;
}

.publish-content2 div img{
  width: 48%;
  margin-bottom: 1em;
}

.publish-content1 div {
  width: 48%;
}

.caption{
  font-size: 14px;
}
.footer-logo{
  width: 250px;
}

@media screen and (max-width: 640px) {
  #publish{
    font-size: 1em;
    font-weight: 500;
  }
  .publish-head{
    height: 150px;
  }
  
  .publish-content1{
    padding: 3em 2em;

    flex-direction: column;
  }
  
  .publish-content1 div img{
    width: 70%;
    margin-bottom: 1em;
  }

  .publish-content1 div:nth-child(2){
    margin-left: auto;
    margin-right: auto;
  }
  
  .publish-content2{
    margin: auto;
    max-width: calc(960px + 2em);
    padding: 3em 2em;
  }
  
  .publish-content2 div img{
    width: 70%;
    margin-bottom: 1em;
  }
  
  .publish-content1 div {
    width: 100%;
    margin-bottom: 1em;
  }

  .publish-content1 div:nth-child(2){
    text-align: center;
  }
  
  .caption{
    font-size: 14px;
          text-align: left;
  }
  .footer-logo{
    margin: 0 auto 1em auto !important;
  }
}


#contact {
  padding-bottom: 3em;
}
#contact h2 {
  text-align: center;
  background-color: #de5b11;
  color: #fff;
  font-size: 2em;
  padding: 1em 0;
  border-bottom: #014277 7px solid;
}

.aisatsu {
  padding:1em;
    margin:0;
}

.aisatsu p {
  margin: 0;
      text-align: left;
}

@media screen and (min-width: 640px) {
  #contact h2 {
    font-size: 3em;
  }
    .aisatsu {
        padding:3em 0;}

  .aisatsu p {
    margin:0 ;
    font-size: 1em;
    text-align: center;
  }
}

#privacy-policy {
  background-color: #de5b11;
  width: 100%;
}

.pp-container {
  padding: 3em 0 4em;
}
.pp-content {
  box-sizing: border-box;
  max-width: calc(960px + 2em);
  margin: auto;
  padding: 0 1em;
  color: #fff;
}

.pp-content div {
  margin: 0 0 1em;
}
.pp-content h2 {
  font-size: 1em;

  margin: 0 0 1em;
}

.pp-content p {
  line-height: 1.4;
  font-size: 0.7em;
}

.pp-rayout {
  display: flex;
  flex-direction: column;
}

.cp {
  text-align: center;
}

@media screen and (min-width: 640px) {
  .pp-container {
    padding: 3em 0 1em;
  }

  .pp-content div {
    margin: 0 0 1em;
  }
  .pp-content h2 {
    font-size: 1.3em;
    margin: 0 0 1.5em 0;
  }

  .pp-content p {
    line-height: 1.4;
    font-size: 0.8em;
  }

  .pp-rayout {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .pp-rayout div {
    width: 48%;
  }

  .cp {
    text-align: center;
  }
}

/*フォーム関連*/
/* 基本のボックスモデルのリセット */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 全体のフォームコンテナのスタイル */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* フォームの見出し */
legend {
  border-bottom: 4px solid #dc5c11;
  padding-bottom: 6px; /* アンダーバーとテキストの間に少しスペースを追加 */
  margin-bottom: 24px;
}

/* ラベルと入力フィールドのスペーシング */
.form-label {
  font-weight: bold;
  margin-bottom: 8px;
  display: inline-block;
  font-size: 1.1em;
}

/* フォーム全体の行間の調整 */
.mb-3,
.mb-5 {
  margin-bottom: 20px;
}

/* 必須項目の強調 */
.text-danger {
  color: red;
}

/* フォームのフィールド */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #007bff;
  outline: none;
}

/* ボタンのスタイル */
.btn {
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: #007bff;
  border: none;
  color: #fff;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.btn-outline-primary {
  border-color: #007bff;
  color: #007bff;
}

.btn-outline-primary:hover {
  background-color: #007bff;
  color: #fff;
}

/* 住所入力フィールドの横並びスタイル */
.input-group {
  display: flex;
  gap: 10px;
}

/* リストのスタイル */
ul {
  padding-left: 20px;
}

li {
  margin-bottom: 5px;
}

/* チェックボックスのスタイル */
.form-check-input {
  margin-right: 10px;
}

/* 送信ボタンのスタイル */
button[type="submit"] {
  width: 100%;
  background-color: #28a745;
  color: white;
  font-size: 1.2rem;
  padding: 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #218838;
}

/* 必須項目 */
.importance-required {
  display: inline-block;
  background-color: #dc5c11;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  min-width: 46px;
  padding: 3px 7px;
  margin: -3px 4px 0px 0px;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
}

.importance-optional {
  display: inline-block;
  background-color: #004379;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  min-width: 46px;
  padding: 3px 7px;
  margin: -3px 4px 0px 0px;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
}

/* チェックボックスのカスタムスタイル */
.form-check {
  padding: 15px;
  background-color: #f9f9f9; /* 背景色 */
  border: 1px solid #ccc; /* 枠線 */
  border-radius: 10px; /* 角を丸くする */
  display: flex;
  align-items: center; /* 縦方向の位置揃え */
}

/* チェックボックスとラベルの間に余白を追加 */
.form-check-input {
  margin-right: 10px; /* チェックボックスとラベルの間のスペース */
  margin-left: 0px !important;
}

/* ラベルのフォントサイズを調整 */
.form-check-label {
  font-size: 18px;
}

/* レスポンシブデザイン */
@media (max-width: 640x) {
  .input-group {
    flex-direction: column;
  }

  .col-md-6 {
    width: 100%;
  }

  button[type="submit"] {
    font-size: 1rem;
  }

  .input-group > .form-control,
  .input-group > .form-select {
    width: 100% !important;
  }

  .sp-hidden {
    display: none;
  }
}
@media (min-width: 640x) {
  .col-md-4 {
    display: flex;
  }
}

.inner2 {
  max-width: 900px;
  margin: auto;
}

.submit-button {
  max-width: 600px;
  margin: auto;
}

.thanks-head {
  background-color: #de5b11;
  border-bottom: #014277 7px solid;
}

.thanks-logo {
  display: block;
  width: 250px;
  margin: 3em auto;
}

#thanks .inner {
  padding: 3em 1em;
}

#thanks h2 {
  text-align: center;
  color: #fff;
  font-size: 2em;
  padding: 1em 1em;
}

#thanks p {
  text-align: center;
  margin-bottom: 1em;
}

#thanks p:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 640px) {
  #contact h2 {
    font-size: 3em;
  }

  .aisatsu p {
    margin-bottom: 0;
    font-size: 1.5em;
  }
}

.flort-menu {
  position: fixed;
  bottom: 0;
  box-sizing: border-box;
  width: 100%;
  z-index: 998;
}

.head_area {
  display: flex;
  width: 100%;
  color: #fff;
}

.head_area a {
  width: 50%;
  text-decoration: none;
}

.menu {
  background-color: #de5b11;
  border-top: #eeaa66 2px solid;
  border-right: #eeaa66 1px solid;
  width: 50%;
  height: 60px;
  line-height: 60px;
  z-index: 999;
  text-decoration: none;
  text-align: center;
}

.flort-contact {
  background-color: #de5b11;
  color: #fff;
  width: 100%;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-top: #eeaa66 2px solid;
  border-left: #eeaa66 1px solid;
}

.flort-menu .nav {
  position: fixed;
  flex-direction: column;
  right: -90%;
  top: 0;
  width: 90%;
  height: 100%;
  background: #fff;
  z-index: 999;
  transition: 0.6s;
  padding: 80px 50px 0;
}

.flort-menu .nav ul {
  padding-top: 50px;
  padding-left: 0;
}

.flort-menu .nav ul li{
  border-bottom: #000 1px solid;
}

.flort-menu .nav ul li:last-child{
  border-bottom: none;
  padding-top: 1em;
}

.flort-menu .nav ul li:nth-child(3),
.flort-menu .nav ul li a {
  color: #000;
  font-size: 16px;
  padding: 13px 0;
  display: block;
  transition: 0.8s;
  text-decoration: none;
}

.flort-menu .open_menu {
  right: 0;
}

.batsu {
  margin: 0 0 0 auto;
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
}

.batsu::before,
.batsu::after {
  /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px; /* 棒の幅（太さ） */
  height: 30px; /* 棒の高さ */
  background: #333;
  border-radius: 2.5px;
}

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

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

.toggle-2 {
  position: relative;
}

.manga-menu {
  position: absolute;
  bottom: -4.5em;
  left: -5em;
  width: 500px;
  line-height: 3em;
  background-color: #D3E9F8;
  border-radius: 3em;
  text-align: center;
  display: none; /* 初期状態で非表示 */
}

.manga-menu::after{
  content: "";
  position: absolute;
  bottom: 100%;
  left: 25%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 25px solid #D3E9F8;}

.manga-menu a {
  margin-right: 1em;
  font-size: 14px;
}

.manga-menu a:last-child {
  margin-right: 0;
}

.manga-menu.open_menu2,
.manga-menu2.open_menu2{
  display: block;
}

.manga-menu.close_menu2,
.manga-menu2.close_menu2 {
  display: none;
}

.manga-menu2.open_menu2{
  border-bottom: #000 1px solid;
}

.manga-menu2 {
  padding-left: 0.8em;
  letter-spacing: -1px;
}

.manga-menu2 a{
  display: block;
  border-bottom: #000 1px solid;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  padding: 13px 0;
}

.manga-menu2 a:last-child{
  border-bottom: none;
}

.manga-menu2 a:nth-child(4){
  border-top: #000 1px solid;
}

.flort-menu .nav ul li:last-child{
  border-bottom: none;
  padding-top: 1em;
}

.flort-menu .nav ul li a {
  color: #000;
  font-size: 16px;
  padding: 13px 0;
  display: block;
  transition: 0.8s;
  text-decoration: none;
}

#subhero{
  height: 350px;
  background-image: url(img/hero-img.webp);
  background-repeat: no-repeat;
  background-size: cover;background-position: center;
}

#subhero div{
  max-width: 400px;
  padding: 150px 1em 0;
  margin:  auto;
}
.support{
  width: 100%;
  padding: 1em 1em 3em;
}

.support-content{
  max-width: 960px;
  margin: 1em auto;

}
.head-img{
  display: block;
  margin: auto;
  width: 90%;
  margin-bottom: 1em;
}

.support-content2{
  display: flex;
}

.support-content2 div{
  width: 50%;
  padding-right: 1em;
}

@media screen and (max-width: 640px) {
  .support-content2{
    flex-direction: column;
  }
  
  .support-content2 div{
    width: 100%;
    padding-right: 0;
  }
}

.manga{
  padding: 0 0 3em;
}
.manga-head{
  background-color: #0A538A;
  height: 120px;
  padding: 1em 0;
}

@media screen and (max-width: 640px) {
  .manga-head{
    height: 80px;
  }
}
.manga-head div{
  text-align: left;
}

.manga-head h1{
  height: 100%;
  text-align: left;
}

.manga-head h1 img{
  width: auto;
}

.manga-conteiner{
  padding: 0 1em;
}

.manga-content{
  margin: 2em auto;

  max-width: 960px;
}

  /* ボタンの動き */

.pulsate-button {
    display: block;
    animation: pulsate 1s ease-in-out forwards;
}

.pulsate-button:hover {
    animation: pulsate-hover 0.5s ease-in-out forwards; /* ホバー時にアニメーション */
}

@keyframes pulsate {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.04);
    }
    50% {
        transform: scale(0.95);
    }
    75% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes pulsate-hover {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03); /* ホバー時の動き */
    }
    100% {
        transform: scale(1);
    }
}

.gap{margin-bottom: 6px;}

.inner960-fineprint {
  box-sizing: border-box;
  margin: auto;
  max-width: calc(960px + 2em);
  height: 100%;
  overflow: hidden;
  padding: 0 1em;
}

.fine-print{font-size:0.6em; margin-bottom: 8px;}
.fine-print-r{margin-left:35px;}
.fine-print p{margin-bottom: 0;}
@media screen and (max-width: 640px) {
    .fine-print-r{margin-left:0;}
    .inner960-fineprint {
  padding: 0;
}
    
}

/* トップに戻るボタンのスタイル */
.back-to-top {
  position: fixed;
  bottom: 20px; /* 画面下からの距離 */
  right: 20px; /* 画面右からの距離 */
  display: none; /* 初期状態では非表示 */
  padding: 10px 15px;
  background-color: #004379; /* ボタン背景色 */
  color: #fff; /* テキスト色 */
  font-size: 14px;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.back-to-top:hover {
  background-color: #0056b3; /* ホバー時の背景色 */
}