/**
 * @author sara
 * Copyright (c) 2020 sara Co., Ltd.
 * All rights reserved.
 */

/*=============================================================
# Responsive Styles
- PC: 1920px
- Tablet: 768px ~ 820px
- Mobile: 390px ~ 430px
=============================================================*/

/*=============================================================
# color

緑：#3fa27b;
-----↓----
濃い青：#1f3875;
ドットの色：#e4e4e49c;
ドットの背景：#edf8ff;
右フォームの送信ボタン：#164994;
ボタンの影グレー：#bbbbbb;
料金の数字：

=============================================================*/



/*=================================================
- リセット
=================================================*/
@charset "UTF-8";


/*=================================================
- 共通部分
=================================================*/
* {
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  font-size: 62.5%;
  scroll-behavior: smooth;
  background-color: #edf8ff;
  background-image: radial-gradient(
    circle,
    #e4e4e49c 1px,
    transparent 1px
  );
}

html {
  background-color: white;
  font-size: 100%;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  flex-flow: column;
  text-align: left;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

ul {
  list-style: none;
}


/*=============================================== PC
- メインエリア
=================================================*/
main {
  width: 74%;
  margin-right: 25%;
  text-align: center;
  padding-top: 0;
  flex-grow: 1;
  flex-direction: column;
  background-color: #edf8ff;
  background-image: radial-gradient(
    circle,
    #e4e4e49c 1px,
    transparent 1px
  );
  background-size: 8px 8px; /* ドット間隔 */
  background-repeat: repeat; /* ドットを繰り返し配置 */
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============================================== PC
- コンテンツ共通部分
=================================================*/
main #FEATURE,
main #FUNCTION,
main #PRICE,
main #CONTACT,
main #INFORMATION {
  width: 100%;
  height: auto;
  max-width: 100%;
  scroll-margin-top: 120px;
  margin-bottom: 4.5rem;
  padding: 3% 2%;
}

main #FUNCTION h2,
main #PRICE h2,
main #CONTACT h2 {
  text-align: left;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

main #FUNCTION h3,
main #PRICE h3,
main #CONTACT h3 {
  padding-left: 0;
  text-align: left;
}

main #FUNCTION span,
main #PRICE span,
main #INFORMATION span,
main #CONTACT span {
  writing-mode: vertical-rl;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 0 1.5rem 0 0.3rem;
}

main #STRENGTH h3,
main #PRICE h3,
main #PROCESS h3,
main #STORY h3,
main #CONTACT h3,
main #INFORMATION h3 {
  text-align: left;
}

main #FUNCTION span,
main #STORY span,
main #CONTACT span ,
main #INFORMATION span ,
main #INFORMATION-datail-page span {
  writing-mode: vertical-rl;
  text-align: left;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  border-left: 1px solid #fff;
}

main #PRICE span,
main #STORY span,
main #CONTACT span ,
main #INFORMATION-datail-page span {
  writing-mode: vertical-rl;
  text-align: left;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  border-left: 1px solid #222;
}

/* PCでは非表示 */
#CONTACT,
.fixed-button-class {
  display: none;
}


/*===================================================
(( 要素を横からスライドイン表示 ))
=================================================*/
#TOPPAGE.show,
#FUNCTION.show,
#PRICE.show,
#INFORMATION.show {
  opacity: 1;
  transform: translateX(0);
  width: 100%;
}

/*============================================== PC
- ヘッダーナビメニュー
=================================================*/
body header {
  justify-content: space-between;
  margin-right: 25%;
}

body .page-header {
  width: 75%;
  height: 90px;
  right: 0px;
  justify-content: space-between;
  display: flex;
  background-color: #ffffff;
  box-shadow: 1px 1px 0px #bbb;
  opacity: 100%;
  z-index: 3;
  position: fixed;
  align-items: center;
  padding: 10px 13px 10px;
}

body .page-header img {
  max-width: 200px;
  width: 200px;
  padding-top: 0.5rem;
}

body .page-header ul {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
}

header li {
  margin-right: 3rem;
  text-align: center;
  background-color: none;
  position: relative;
  font-weight: bold;
}

.PC-nav a {
  font-family: "Noto Sans JP", sans-serif;
  color: #292929;
  text-decoration: none;
  letter-spacing: 0.08em;
  font-size: 1rem;
  line-height: 1.5;
}

.PC-nav li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #1f3875;
  z-index: -1;
  bottom: -5px;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}

.PC-nav li .contact-button::after {
  background: none;
}

.PC-nav li a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

.PC-nav a:hover {
  color: #1f3875;
}

header .contact-button {
  display: block;
  background-color: #1f3875;
  padding: 0.5rem 2.5rem;
  border-radius: 50px;
  box-shadow: 2px 2px 5px #727272;
}

header .contact-button span {
  color: #ffffff;
  font-weight: bold;
}

header li .contact-button {
  font-weight: bold;
  color: #fff;
}

header .contact-button:hover {
  box-shadow: none;
  transform: scale(0.99, 0.99) translateY(2px);
  transition: all 0.3s;
  display: block;
  color: #fff;
  border: none;
  background-color: #1f3875;
}

.PC-nav a {
  font-family: "Noto Sans JP", sans-serif;
  color: #292929;
  letter-spacing: 0.08em;
  font-size: 1rem;
  line-height: 1.7;
}

header a span {
  font-family: "Noto Sans JP", sans-serif;
  color: #464646;
  display: block;
  flex-direction: column;
  text-align: center;
  font-size: 0.7rem;
}

header .span {
  vertical-align: middle;
}

header .login-button img{
  width: 18px;
  height: 18px;
  vertical-align: middle;
  padding-top: 0;
  margin-left: 0.2rem;
}

/*======================================= ipad / SP
- ヘッダーハンバーガーメニュー（PCでは非表示）
=================================================*/
.nav_toggle,
.nav i,
.nav-ipad,
.open-menu {
  display: none;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 18px;
  width: 30px;
  cursor: pointer;
  position: relative;
  z-index: 100;
}

.hamburger-menu .bar {
  height: 2px;
  width: 100%;
  background-color: #292929;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-menu.open .bar:nth-child(1) {
  transform: rotate(45deg);
  position: absolute;
  top: 10px;
}

.hamburger-menu.open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.open .bar:nth-child(3) {
  transform: rotate(-45deg);
  position: absolute;
  top: 10px;
}

/*=============================================　PC
- 上部に表示するお知らせバー
=================================================*/
.announcement-bar {
  background-color: #1c1c1c;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 0.8rem;
  text-align: center;
  position: fixed;
  top: 0;
  width: 74.8%;
  z-index: 99;
  display: none;
  font-weight: bold;
}

body .announcement-bar.visible {
  display: block;
}

/* お知らせバーが表示されている場合、ヘッダー位置を調整 */
.page-header.announcement-visible {
  padding: 4.8rem 1rem 2.5rem;
}

/*=============================================　PC
- 右側固定フォーム（ipad / SP では非表示）
=================================================*/
.side-form {
  background-color: #ffffff;
  height: 100vh;
  width: 25%;
  position: fixed;
  right: 0;
  padding: 1.5%;
  text-align: center;
  box-shadow: 0px 0px 10px 10px #6767671f;
  z-index: 100;
  margin: 0;
  margin-right: 1rem;
  color: #001738;
  overflow-y: auto;
}

.side-form form {
  margin-top: 1rem;
}

.side-form h2 {
  background-color: #1f3875;
  color: #fff;
  border-radius: 5vw;
  font-size: 1.5rem;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.8rem;
}

.side-form  p.form-message{
  color: #222;
  font-size: 0.8rem;
  font-weight: normal;
  text-align: left;
  margin-bottom: 1rem;
}

.side-form  p.form-message-privacy {
  color: #222;
  font-size: 0.8rem;
  text-align: left;
}

.side-form a.privacy-link {
  display: inline-block;
  margin: 1rem 0;
  text-decoration: none;
  color: #2370af;
  font-weight: bold;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-align: left;
}

.side-form a.privacy-link:hover {
  color: #5399d2;
}

.side-form .form-category {
  flex-direction: column;
  text-align: left;
  margin-bottom: 0.5rem;
}

.side-form .form-category .category-box-1,
.side-form .form-category .category-box-2 {
  display: flex;
  list-style: none;
  gap: 1rem;
  width: 100%;
}

.side-form .title-bold {
  font-weight: bold;
  font-size: 0.9rem;
  width: 100%;
  color: #555555;
}

/* 必須事項 */
.side-form .title-bold span {
  color: red;
  padding-left: 0rem;
}

.side-form .form-category p label {
  font-size: 0.8rem;
  padding-left: 0.3rem;
  align-items: center;
}

.side-form .form-category p {
  color: #333;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  width: 100%;
  vertical-align: middle;
  align-items: center;
}

.side-form .input-area {
  flex-direction: column;
  margin-bottom: 1rem;
}

/* 必須事項 */
.side-form .input-area span {
  color: red;
  padding-left: 0.3rem;
}

.side-form .input-area p {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  width: 100%;
  text-align: left;
  font-weight: bold;
  color: #333;
}

.side-form .input-area input[type="text"],
.side-form .input-area input[type="email"],
.side-form .input-area input[type="tel"] {
  width: 100%;
  border-radius: 12px;
  font-size: 0.8rem;
  height: 50px;
  background-color: #f0f0f0;
  padding-left: 1rem;
}

.side-form .input-area-message input[type="text"] {
  height: 4rem;
  width: 100%;
  border-radius: 14px;
  margin: 0.5rem 0 1rem;
  background-color: #f0f0f0;
}

/* 問い合わせ内容入力欄 */
.side-form .input-area-message textarea {
  height: 8rem;
  width: 100%;
  border-radius: 14px;
  margin-bottom: 0.5rem;
  padding: 1.2rem;
  background-color: #f0f0f0;
}

.side-form .input-area-message {
  display: block;
  font-weight: bold;
}

.side-form .input-area-message p {
  letter-spacing: 0;
  font-size: 0.9rem;
  width: 100%;
  text-align: left;
  color: #333;
}

.side-form ::placeholder {
  text-align: left;
  color: #a5a5a5;
  font-weight: normal;
  font-size: 0.8rem;
}

.side-form img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.side-form .btn {
  margin: auto;
  padding: 1rem 3rem;
  background-color: #1f3875;
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-radius: 50px;
  font-size: 0.9rem;
  border: none;
  box-shadow: 3px 3px 0 #bbb;
}

.side-form .btn:hover {
  margin: auto;
  padding: 1rem 3rem;
  background-color: #1f3875;
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-radius: 50px;
  font-size: 0.9rem;
  transform: translateY(4px);
  box-shadow: none;
  transition: 0.3s;
}

/*=============================================　PC
# トップページ
=================================================*/
main #TOPPAGE {
  width: 100%;
  height: 0;
  min-height: 830px;
  margin-bottom: 1rem;
  background-color: #1f3875;
  border-end-start-radius: 5vw;
  border-end-end-radius: 5vw;
  box-shadow: 4px 4px 0px #bbbbbb;
  position: relative;
  background-image: url(../images/top-img2.png);
  background-position: center;
  background-size: 43%;
  background-position: right bottom;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateY(-130px);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

main #TOPPAGE h1 {
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  color: #ffffff;
  color: #fff;
  text-shadow: 2px 2px 3px rgba(39, 39, 39, 0.3);
  padding-top: 15rem;
  padding-left: 3rem;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 2rem;
  font-weight: bold;
  font-size: 3.8rem;
}

main #TOPPAGE h2 img {
  width: 25px;
  height: 25px;
  margin-right: 0.8rem;
  vertical-align: middle;
}

main #TOPPAGE h2 {
  color: #fff;
  text-shadow: 2px 2px 3px rgba(39, 39, 39, 0.3);
  padding-top: 1rem;
  padding-left: 3rem;
  text-align: left;
  font-size: 1.5rem;
  font-weight: bold;
}

main #TOPPAGE h2.SP {
  display: none;
}


main #TOPPAGE h2 span {
  font-size: 1.4rem;
  color: #1f3875;
  background-color: #f5f5f5;
  font-weight: 800;
  padding: 0.3rem 0.5rem;
  margin: 0.5rem 0.6rem 0.3rem 0rem;
  display: inline-block;
}

main #TOPPAGE .title-container {
  position: relative;
  z-index: 99;
}

main #TOPPAGE .english-title {
  font-family: "Noto Sans JP", sans-serif;
  position: absolute;
  top: 33%;
  left: 52%;
  transform: translate(-50%, -50%);
  font-size: 10rem;
  z-index: 1;
  font-weight: bold;
  color: #cecece23;
  text-align: left;
  width: 100%;
}

main #TOPPAGE .english-title span {
  font-size: 12rem;
}

/* スクロール */
.scroll {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #ffffff;
  position: fixed; /* ビューポートに対して固定 */
  text-align: center;
  left: 50%;
  bottom: 10vh;
  transform: translateX(-50%);
}

/* 矢印のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  content: "";
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20px;
  text-align: left;
}

/* 矢印のアニメーション */
@keyframes scroll {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  90% {
    opacity: 0;
    transform: rotate(-45deg) translate(-25px, 25px);
  }
  100% {
    opacity: 0;
  }
}

main h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 55px;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding-top: 2rem;
}

main h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  width: 100%;
  max-width: 100%;
}

main h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
}

/*============================================== PC
# FEATURE（特徴）
=================================================*/
main #FEATURE {
  width:100%;
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 2rem;
  margin: 2rem 0rem;
  padding-top: 3rem;
  background-color: #fff;
}

main #FEATURE h2 {
  font-size: 1.9rem;
  letter-spacing: 0.05em;
  color: #222;
  padding: 1rem 0
}

main #FEATURE h2.SP {
  display: none;
}

main #FEATURE .reason-title {
  display: block;
  width: 90%;
  background-color: #1f3875;
  color: #fff;
  border-radius: 5vw;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 2rem auto;
  padding: 1rem 0;
}

main #FEATURE .reason-box {
  width: 100%;
}

main #FEATURE .reason-box ul{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin: 0 auto;
  width: 90%;
}

main #FEATURE .reason-box li{
  width: 100%;
  flex-direction: column;
  border-bottom: 1px solid #565656;
  border-right: 1px solid #565656;
  /* border-left: 1.5px solid #565656; */
}

main #FEATURE .reason-box li:last-child{
  border: none;
  padding-top: 0.5rem;
}
main #FEATURE .reason-box li:nth-child(3){
  padding-top: 1rem;
}

main #FEATURE .reason-box li h3{
  color: #222;
  text-shadow: 2px 2px #ececec;
  font-size: 1.4rem;
  height: 50px;
  text-align: left;
  padding-left: 1rem;
  padding-top: 0.5rem;
  font-weight: 700;
}

main #FEATURE .reason-box .reason-text{
  width: 100%;
  height: 140px;
  color: #222;
  font-size: 1.2rem;
  margin: 0.5rem 0;
  padding: 1rem 1.5rem;
  line-height: 1.8;
  text-align: left;
  font-weight: 500;
}

main #FEATURE .reason-box .reason-text span {
  color: #f45511;
  font-weight: 800;
  font-size: 1.3rem;
  padding: 0 0rem;
}

main #FEATURE .reason-box .reason-img {
  width: 60%;
}

/*=============================================　PC
(( 要素をふわっと表示 ))
=================================================*/
.fade {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1.8s, transform 3s;
}

.fade.active {
  opacity: 1;
  transform: translateY(0px);
}

/*=============================================　PC
# FUNCTION（主な機能）
=================================================*/
#modal-main-1,
#modal-main-2,
#modal-main-3,
#modal-main-4,
#modal-main-5,
#modal-main-6,
#modal-main-7,
#modal-main-8,
#modal-main-9,
#modal-main-10,
#modal-main-11,
#modal-main-12,
#modal-main-13,
#modal-main-14,
#modal-main-15,
#modal-main-16{
  display: none;
}

#FUNCTION {
  background-color: #1f3875;
  box-shadow: 4px 4px 0px #bbbbbb;
  padding: 2rem 0rem 3rem;
  text-align: center;
  border-top-right-radius: 5vw;
  opacity: 0;
  transform: translateX(-200px);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

#FUNCTION .title-0 {
  display: flex;
  margin-bottom: 2rem;
}

#FUNCTION .h2h3 {
  flex-direction: column;
}

#FUNCTION h2,
#FUNCTION h3 {
  color: #ffffff;
}

#FUNCTION h3 {
  padding: 0;
  text-align: left;
}

#FUNCTION span {
  color: #fff;
}

.parent-wrapper {
  display: flex;
  width: 100%;
  gap: 3rem;
  margin: 1rem auto;
  justify-content: center;
}

#FUNCTION .parent-wrapper .column-parent {
  gap: 1rem;
  margin-bottom: 0;
  padding: 0 2rem;
}

.parent-box1,
.parent-box2,
.parent-box3 {
  flex-direction: column;
  padding: 1.5rem 1rem;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 14px;
  width: 330px;
}

.box-header h4 {
  font-size: 1.3rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 0rem;
  letter-spacing: 0.1em;
  color: #001738;
  background-color: #0b1946;
  color: #fff;
  padding: 1rem 2rem;
}

.box-header p {
  font-size: 0.9rem;
  font-weight: normal;
  margin: 0.5rem 0 0.5rem;
}

.box-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-top: 1rem;
}

.parent-box2 .box-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 1rem;
}

.parent-box1 .box-content ,
.parent-box4 .box-content {
  display: grid;
}

.item {
  padding: 0.7rem 1.3rem;
  text-align: center;
  background-color: #d4e9f1;
  box-shadow: 3px 3px 0px #bbbbbb;
  border-radius: 10px;
  position: relative;
  transition: background-color 0.3s;
}

.caution-paid-icon {
  font-size: 12px;
  color: red;
  display: inline;
}

.caution-paid {
  font-size: 0.75rem;
  font-weight: 500;
  color: #001738;
}

.item .title {
  color: #001738;
  font-size: 1rem;
  font-weight: 500;
}

.item p {
  font-size: 0.7rem;
  white-space: pre-wrap; 
  color: #001738;
  margin: 0;
}

.item:hover {
  padding: 0.7rem 1.3rem;
  background-color: #fee0a3;
}

/* ホバー時に吹き出しを表示 */
.item:hover .popup,
.item:hover .popup-left {
  display: block;
}

/* 吹き出し部分 */
.popup {
  display: none; /* 初期状態では非表示 */
  position: absolute;
  top: 115%;
  left: 80%;
  width: 430px;
  height: 100px;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #001738;
  padding: 2rem 3rem;
  font-size: 0.8rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  border-radius: 30px;
  border: 2px solid #001738;
  white-space: nowrap;
  z-index: 100;
}

.popup p,
.popup-left p{
  color: #001738;
  position: absolute;
  top: 15%;
  left: 20%;
  text-align: left;
  line-height: 1.8;
  font-size: 0.8rem;
  display: inline-block;
  padding-right: 1rem;
}

.popup-left {
  display: none;
  position: absolute;
  top: 100%;
  left: 10%;
  width: 500px;
  height: 130px;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #001738;
  padding: 2rem 3rem;
  font-size: 0.8rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  border-radius: 30px;
  border: 2px solid #001738;
  white-space: nowrap;
  z-index: 100;
}

.popup img,
.popup-left img {
  position: absolute;
  display: flex;
  top: 15%;
  left: 6%;
  width: 50px;
}

.popup-left .raiz-icon-img {
  position: absolute;
  display: flex;
  top: 15%;
  left: 7.5%;
  width: 30px;
  border-radius: 0;
}

/* ポップアップの矢印 */
.popup::before {
  content: "";
  position: absolute;
  top: -30px; /* ポップアップの上部に矢印 */
  left: 20%;
  transform: translateX(-50%);
  border-width: 15px;
  border-style: solid;
  border-color: transparent transparent #001738 transparent;
}

/* ポップアップの矢印
 * 一番右の列は吹き出しが隠れないよう左寄せに表示 */
.popup-left::before {
  content: "";
  position: absolute;
  top: -30px;
  right: 20%;
  transform: translateX(-50%);
  border-width: 15px;
  border-style: solid;
  border-color: transparent transparent #001738 transparent;
}

.CTA-BUTTON {
  display: none;
}

/*=============================================　PC
# PRICE（料金）
=================================================*/
#PRICE {
  padding: 2rem 0 4rem;
  margin-bottom: 1rem;
  height: auto;
  background-color: #ffffff;
  box-shadow: 3px 3px 0px #bbbbbb;
  border-top-right-radius: 5vw;
  opacity: 0;
  transform: translateX(-200px);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  width: 100%;
}

#PRICE .title-0 {
  display: flex;
}

#PRICE .h2h3 {
  flex-direction: column;
}

#PRICE h2,
#PRICE h3 {
  color: #222;
}

#PRICE h3 {
  padding: 0;
}

#PRICE span {
  color: #222;
}

#PRICE .price-wrapper {
  display: block;
  margin-left: 4.2%;
}

#PRICE .price-text-01 {
  color: #222;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: left;
  margin-bottom: 1rem;
}

#PRICE .price-text-01-SP {
  display: none;
}

#PRICE .price-text-01 .point-text {
  display: inline;
  font-size: 1.5rem;
  color: #f45511;
  border-left: 0;
  writing-mode:horizontal-tb;
  font-weight: bold;
  padding: 0rem;
}

#PRICE .price-text-02 {
  color: #222;
  font-size: 0.9rem;
  text-align: left;
  line-height: 2;
  margin-bottom: 1rem;
}

#PRICE span.point {
  color: #222;
}

#PRICE span.kome {
  border-left: 0;
  padding-right: 0;
  font-weight: 700;
}

#PRICE .pricing-table {
  display: none;
  border-collapse: collapse;
  width: 90%;
  table-layout: fixed;
  margin: auto;
}

#PRICE th,
#PRICE td {
  border: 1px solid #b4b4b4;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.9rem;
  height: 50px;
}

/* 項目セル */
#PRICE th:first-child,
#PRICE td:first-child {
  border: none;
  text-align: left;
  padding-left: 1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  border: 1px solid #b4b4b4;
  border-top: none;
  border-right: none;
  border-left: none;
}

#PRICE td:first-child {
  border-left: 1px solid #b4b4b4;
}

#PRICE th {
  font-weight: bold;
}

#PRICE th:first-child {
  background-color: transparent;
  width: 13%; /* 項目列の幅を短くする */
}

/* RaizOnlineのヘッダー */
#PRICE th.company-name {
  background-color: #edad0b;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border: none;
}

/* B社・C社のヘッダー */
#PRICE th.company-name + th {
  background-color: #333;
  color: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border: none;
}

#PRICE td {
  background-color: #fff;
  font-weight: bold;
}

#PRICE .highlight td {
  border: 2px solid #edad0b;
  font-size: 1.2rem;
}

#PRICE tr:nth-child(even) td {
  background-color: #f7f7f7;
}

#PRICE .highlight {
  background-color: #ffffff;
  border-left: 3px solid #edad0b;
  border-right: 3px solid #edad0b;
  border-bottom: 3px solid #edad0b;
  font-weight: bold;
  color: #edad0b;
}

#PRICE .company-name {
  font-weight: bold;
}

/*=============================================　PC
/* INFORMATION（お知らせ・最新情報）
================================================ */
#INFORMATION {
  padding: 1rem 1rem 3rem;
  background-color: #1f3875;
  border: 1px solid #001738;
  border-top-right-radius: 5vw;
  box-shadow: 3px 3px 0px #bbbbbb;
  margin-top: 3rem;
  transform: translateX(-200px);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  width: 75%;
  margin-left: 0rem;
}

#INFORMATION .title-0 {
  display: flex;
}

#INFORMATION .h2h3 {
  flex-direction: column;
}

#INFORMATION h2,
#INFORMATION h3 {
  color: #fff;
}

#INFORMATION h3 {
  padding: 0;
}

#INFORMATION span {
  color: #ffffff;
}

/* スクロールバーの設定 */
#INFORMATION .info-scroll {
  background-color: #ffffffe4;
  border-radius: 0.5vw;
  padding: 1rem 2rem;
  max-height: 300px;
  width: 90%;
  margin: 0 auto;
  overflow-y: auto;
}

.info-scroll::-webkit-scrollbar {
  width: 13px;
}

.info-scroll::-webkit-scrollbar-thumb {
  background-color: #7d7d7d;
  border-radius: 5px;
}

.info-scroll::-webkit-scrollbar-track {
  background-color: #c8c8c8;
}

#INFORMATION .info-content {
  border-bottom: 1px solid #bbb;
  display: flex;
}

#INFORMATION .info-content a {
  text-decoration: none;
  text-align: left;
  align-items: center;
  display: flex;
  font-size: 0.9rem;
  color: #222;
  padding: 1rem;
}

/* お知らせの日付 */
#INFORMATION .info-date {
  color: #222;
  margin-right: 1rem;
}

/* お知らせカテゴリ */
#INFORMATION .info-category-new {
  color: #fff;
  margin-right: 1rem;
  background-color: #238ab9;
  padding: 0.3rem 0.5rem;
}

#INFORMATION .info-category-release {
  color: #fff;
  margin-right: 1rem;
  background-color: #e9a11c;
  padding: 0.2rem 0.3rem;
  vertical-align: middle;
}

#INFORMATION .info-category-notice {
  color: #fff;
  margin-right: 1rem;
  background-color: #167b55;
  padding: 0.2rem 0.3rem;
  vertical-align: middle;
}

#INFORMATION .info-title {
  color: #222;
  padding: 0.3rem;
}

#INFORMATION .view-more {
  text-align: center;
  margin: 3rem auto 0;
  width: 350px;
}

#INFORMATION .view-more a {
  display: inline-block;
  width: 100%;
  padding: 0.8rem 0;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  color: #001738;
  text-align: center;
  border: 1px solid #001738;
  border-radius: 50px;
  background-color: #fff;
  box-shadow: 2px 2px 0px 0px #808080;
  transition: all 0.3s;
  cursor: pointer; 
}

#INFORMATION .view-more a:hover {
  box-shadow: none;
  transform: scale(0.99, 0.99) translateY(2px);
  background-color: #fff;
}

/*=============================================　PC
# INFORMATION（お知らせ・最新情報の一覧ページ）
=================================================*/
#INFORMATION-datail-page {
  background-color: #fff;
  border: 1px solid #001738;
  padding: 3% 5%;
  margin: 10% auto 2%;
  width: 90%;
}

main #INFORMATION-datail-page h2 {
  color: #001738;
  text-align: left;
  display: block;
  text-align: 0;
  margin-bottom: 1rem;
}

main #INFORMATION-datail-page span {
  color: #001738;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding-right: 3rem;
  writing-mode: horizontal-tb;
  border-left: none;
}

#INFORMATION-datail-page .info-content {
  width: 100%;
  margin: auto;
  display: flex;
  font-size: 0.9rem;
  align-items: center;
}

#INFORMATION-datail-page .info-content .flex{
  display: flex;
  justify-content: center;
  vertical-align: middle;
}

#INFORMATION-datail-page .info-content a {
  width: 100%;
  margin: auto;
  display: flex;
  font-size: 0.9rem;
  align-items: center;
  margin: 0.5rem 0;
  padding: 0.5rem 0;
  border-bottom: 1px solid #bbb;
}

#INFORMATION-datail-page .info-content a:hover {
  color: #5f5f5f;
}

#INFORMATION-datail-page .info-date {
  color: #292929;
  margin-right: 1rem;
  font-weight: bold;
}

#INFORMATION-datail-page .info-category-new {
  color: #fff;
  margin-right: 1rem;
  background-color: #238ab9;
  padding: 0.2rem 0.3rem;
}

#INFORMATION-datail-page .info-category-release {
  color: #fff;
  margin-right: 1rem;
  background-color: #e9a11c;
  padding: 0.2rem 0.3rem;
  vertical-align: middle;
}

#INFORMATION-datail-page .info-category-notice {
  color: #fff;
  margin-right: 1rem;
  background-color: #239e65;
  padding: 0.2rem 0.3rem;
  vertical-align: middle;
}

#INFORMATION-datail-page .info-title {
  color: #292929;
  padding: 0.3rem;
  font-weight: bold;
}

#INFORMATION-datail-page p {
  color: #292929;
  font-size: 0.9rem;
  text-align: left;
  margin-top: 2rem;
}

#INFORMATION-datail-page .back-button {
  color: #353535;
  font-size: 1rem;
  text-align: left;
  margin-top: 4rem;
}

#INFORMATION-datail-page .back-button a:hover {
  color: #5f5f5f;
}

#INFORMATION-datail-page a {
  color: #001738;
  text-decoration: none;
}

/*=============================================　PC
# 推奨環境とセキュリティ（トップページのみに表示）
=================================================*/
.env-and-security {
  justify-content: center;
  text-align: center;
  margin-top: 2rem;
  display: flex;
  padding: 0rem 3rem;
}

.recommended-env{
  display: flex;
  vertical-align: middle;
  margin: 1rem;
  padding: 1rem 1rem 1rem;
}
.recommended-env .right-content {
  text-align: left;
}

.recommended-env p{
  text-align-last: left;
  padding: 0.5rem 1rem 1rem;
  font-size: 0.8rem;
}

.recommended-env-box {
  /* padding-top: 3.5rem; */
  font-size: 0.8rem;
  text-align-last: left;
  color: #001738;
}
.recommended-env-box span {
  width: 100%;
  border-left: 12px solid #001738;
  border-bottom: 1px solid #001738;
  margin-bottom: 0.5rem;
  padding-right: 1rem;
  display: block;
  padding-left: 0.5rem;
}

.env-and-security h4 {
  display: inline-block;
  text-align: left;
  font-weight: bold;
  font-size: 1rem;
  color: #001738;
  padding: 0;
}

.env-and-security p {
  display: inline-block;
  text-align: left;
  margin-top: 0.5rem;
  color: #001738;
  padding: 0;
  padding-right: 1rem;
}

/*=============================================　PC
# FOOTER　(フッター）
=================================================*/
footer {
  width: 74%;
  text-align: center;
  padding: 2rem;
  padding-bottom: 0.5rem;
  margin-right: 25%;
  background-color: #fff;
  border-top-left-radius: 5vw;
  border-top-right-radius: 5vw;
}

footer .page-footer {
  width: 100%;
  bottom: 0;
  text-align: center;
}

footer .footer-contents {
  text-align: center;
  justify-content: space-between;
  display: flex;
  padding-bottom: 1rem;
  padding: 1rem 2rem 1rem;
}

footer ul {
  text-decoration: none;
  list-style: none;
  display: inline-block;
  text-align-last: left;
  vertical-align: text-top;
  margin-right: 2rem;
}

footer li {
  margin-right: 3rem;
  text-align: left;
  justify-content: flex-start;
  display: inline-block;
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
}

footer li a {
  font-family: sans-serif;
  display: flex;
  text-decoration: none;
  color: #333;
  font-size: 13px;
  transition: color 0.3s;
}

footer li a:hover {
  color: #999;
}

footer li p {
  font-size: 13px;
}

footer li .span {
  font-size: 30px;
}

footer .footer-contents-01 li .address-01 {
  font-size: 12px;
  line-height: 1.4;
}

footer .footer-contents-01 li .address-02 {
  font-size: 12px;
}
footer .footer-contents-01 li .sara-tel {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

footer .footer-contents-02 li {
  font-size: 13px;
  letter-spacing: 0.2em;
}

footer .footer-contents-03 li {
  font-size: 13px;
  letter-spacing: 0.1em;
}

footer .footer-contents-03 img {
  display: flex;
}

footer small {
  font-family: sans-serif;
  color: #adadad;
  font-size: 12px;
}

/*==============================================
- RB記事ページCSS
============================================= */
#NEWS-article-base{
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.NEWS-article-area {
  width: 80%;
  margin: 8rem auto 5rem;
  background-color: #fff;
  border: 1px solid #001738;
  text-align: left;
  padding: 2rem;
}

.NEWS-article-area .date-and-category{
  display: flex;
  gap: 0.9rem;
}

.NEWS-article-area .date,
.NEWS-article-area .category{
  font-size: 0.9rem;
  color: #222;
  margin-bottom: 0.5rem;
}

.NEWS-article-area .category span {
  border: 2px solid #edad0b;
  padding: 3px 5px;
  margin: 0 3px;
  border-radius: 8px;
}

.NEWS-article-area .title {
  font-size: 1.4rem;
  color: #222;
  font-weight: 700;
  border-bottom: 1px solid #bbb;
  padding: 1rem 0;
}

.NEWS-article-area .article-main {
  padding: 2rem 0rem;
}

.NEWS-article-area p {
  color: #222;
  font-size: 0.9rem;
}

.NEWS-article-area a {
text-decoration: none;
color: #001738;
font-size: 1rem;
transition: color 0.3s;
}

.NEWS-article-area a:hover {
  color: #bbb;
}

.NEWS-article-area img.site-image {
  width: 100%;
  border: 1px solid #bbb;
  margin: 1rem 0;
}

.NEWS-article-area a.new-site-url {
  color: #1460a7;
}




/*==============================================
- レスポンシブ ipad
============================================= */
@media screen and (max-width: 1455px) {
  body header {
    justify-content: space-between;
    margin-right: 25%;
  }

  body .page-header {
    width: 75%;
    height: 80px;
    right: 0px;
    justify-content: space-between;
    display: flex;
    background-color: #ffffff;
    opacity: 100%;
    z-index: 3;
    position: fixed;
    align-items: center;
    padding: 6px 10px 6px;
  }

  body .page-header img {
    padding-top: 0rem;
  }

  /*PCのナビメニュー 　*/
  body .page-header ul {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    align-items: center;
  }

  header li {
    margin-right: 1rem;
    text-align: center;
    background-color: none;
    position: relative;
    font-weight: bold;
    width: 80px;
  }

  .PC-nav a {
    font-family: "Noto Sans JP", sans-serif;
    color: #292929;
    text-decoration: none;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
    line-height: 1.5;
  }

  header a span {
    font-family: "Noto Sans JP", sans-serif;
    color: #464646;
    text-align: center;
    font-size: 0.6rem;
  }


/*============================================== PC
- 上部に表示するお知らせバー
=================================================*/
  .announcement-bar {
    padding: 10px 20px;
    font-size: 0.75rem;
  }

/*============================================== PC
- メインエリア
=================================================*/
  main {
    width: 75%;
    margin-right: 25%;
    text-align: center;
    padding-top: 0vh;
    flex-grow: 1;
    flex-direction: column;
    background-image: radial-gradient(
      circle,
      rgba(175, 175, 175, 0.3) 1px,
      transparent 1px
    );
    background-size: 8px 8px; /* ドット間隔 */
    background-repeat: repeat; /* ドットを繰り返し配置 */
  }

/*=============================================　PC
- 右側固定フォーム（ipad / SP では非表示）
=================================================*/
.side-form {
  height: 100vh;
  width: 25%;
  position: fixed;
  right: 0;
  padding: 1.5%;
  text-align: center;
  box-shadow: 0px 0px 10px 10px #6767671f;
  z-index: 100;
  margin: 0;
  margin-right: 1rem;
  overflow-y: auto;
}

.side-form h2 {
  font-size: 1rem;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

.side-form  p.form-message{
  color: #222;
  font-size: 0.7rem;
  line-height: 1.5;
  font-weight: normal;
  text-align: left;
  margin-bottom: 1rem;
}

.side-form  p.form-message-privacy {
  color: #222;
  font-size: 0.7rem;
  line-height: 1.5;
  text-align: left;
}

.side-form a.privacy-link {
  display: inline-block;
  margin: 1rem 0;
  text-decoration: none;
  color: #2370af;
  font-weight: bold;
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  text-align: left;
}

.side-form a.privacy-link:hover {
  color: #575757;
}

.side-form .form-category {
  flex-direction: column;
  text-align: left;
  margin-bottom: 0.5rem;
}

.side-form .form-category .category-box-1,
.side-form .form-category .category-box-2 {
  flex-direction: column;
  list-style: none;
  gap: 0rem;
  width: 100%;
}

.side-form .title-bold {
  font-weight: bold;
  font-size: 0.9rem;
  width: 100%;
  color: #555555;
}

.side-form .form-category p {
  color: #555555;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  width: 100%;
  vertical-align: middle;
  align-items: center;
  height: 20px;
}

main .side-form .input-area {
  flex-direction: column;
  margin-bottom: 1rem;
  height: 70px;
}

/* 必須事項 */
.side-form .input-area span {
  color: red;
  padding-left: 0.3rem;
}

.side-form .input-area p {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  width: 100%;
  text-align: left;
  font-weight: bold;
  color: #333;
}

.side-form .input-area input[type="text"],
.side-form .input-area input[type="email"],
.side-form .input-area input[type="tel"] {
  width: 100%;
  border-radius: 12px;
  font-size: 0.8rem;
  height: 40px;
  background-color: #f0f0f0;
  padding-left: 1rem;
}

.side-form .input-area-message input[type="text"] {
  height: 4rem;
  width: 100%;
  border-radius: 14px;
  margin: 0.5rem 0 1rem;
  background-color: #f0f0f0;
}

/* 問い合わせ内容入力欄 */
.side-form .input-area-message textarea {
  height: 8rem;
  width: 100%;
  border-radius: 14px;
  margin-bottom: 0.5rem;
  padding: 1.3rem;
  background-color: #f0f0f0;
}

.side-form .input-area-message {
  display: block;
  font-weight: bold;
}

.side-form .input-area-message p {
  letter-spacing: 0;
  font-size: 1rem;
  width: 100%;
  text-align: left;
  color: #333;
}

.side-form ::placeholder {
  text-align: left;
  color: #a5a5a5;
  font-weight: normal;
  font-size: 0.9rem;
}

/*============================================== PC
- メインエリア - トップページ
=================================================*/
  main #TOPPAGE {
    width: 100%;
    height: 0;
    min-height: 750px;
    margin-top: 0;
    margin-bottom: 0;
    background-color: #1f3875;
    border-end-start-radius: 5vw;
    border-end-end-radius: 5vw;
    box-shadow: 4px 4px 0px #bbbbbb;
    position: relative;
    background-image: url(../images/top-img2.png);
    background-position: center;
    background-size: 50%;
    background-position: right bottom;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateY(-130px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  }
  
  main #TOPPAGE h1 {
    font-family: "Noto Sans JP", sans-serif;
    width: 100%;
    color: #fff;    
    text-shadow: 2px 2px 3px rgba(39, 39, 39, 0.3); /* 軽い影 */
    padding-left: 2rem;
    letter-spacing: 0em;
    text-align: left;
    padding-top: 14rem;
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 3rem;
  }

  main #TOPPAGE h2 img {
    width: 25px;
    height: 25px;
    margin-right: 0.8rem;
    vertical-align: middle;
  }

  main #TOPPAGE h2 {
    color: #fff;
    text-shadow: 2px 2px 3px rgba(39, 39, 39, 0.3);
    padding-top: 2rem;
    padding-left: 2rem;
    text-align: left;
    font-size: 1.2rem;
    font-weight: bold;
  }

  main #TOPPAGE h2 span {
    border: 3px solid #1f3875;
    font-size: 1.2rem;
    color: #1f3875;
    font-weight: bold;
    padding: 0.2rem 0.5rem;
    margin: 0.2rem 0.6rem 0.3rem 0rem;
    display: inline-block;
  }

  main #TOPPAGE .title-container {
    position: relative;
    z-index: 99;
  }

  main #TOPPAGE .english-title {
    font-family: "Noto Sans JP", sans-serif;
    position: absolute;
    top: 35%; /* 垂直方向の中央 */
    left: 52%; /* 水平方向の中央 */
    transform: translate(-50%, -50%); /* 正確に中央に配置 */
    font-size: 10rem;
    z-index: 1;
    font-weight: bold;
    color: #ffffff1c;
    text-align: left;
    letter-spacing: 0;
    width: 100%;
  }

  main #TOPPAGE .english-title span {
    font-size: 11rem;
    color: #ffffff1c;
  }

  /* スクロール */
  .scroll {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    color: #fff;
    position: fixed; /* ビューポートに対して固定 */
    text-align: center;
    left: 30%;
    bottom: 15vh;
    transform: translateX(-80%);
  }

  /* 矢印のアニメーション部分 */
  .scroll::before {
    animation: scroll 2s infinite;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    content: "";
    height: 10px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    bottom: -8px;
    width: 10px;
    text-align: left;
  }

  /* 矢印のアニメーション */
  @keyframes scroll {
    0% {
      opacity: 0;
      transform: rotate(-45deg) translate(0, 0);
    }
    40% {
      opacity: 1;
    }
    90% {
      opacity: 0;
      transform: rotate(-45deg) translate(-10px, 10px);
    }
    100% {
      opacity: 0;
    }
    }

/*=============================================== PC
- コンテンツ共通部分
=================================================*/
  main #FEATURE,
  main #FUNCTION,
  main #PRICE,
  main #CONTACT,
  main #INFORMATION {
  width: 100%;
  height: auto;
  max-width: 100%;
  scroll-margin-top: 120px;
  padding: 3% 2%;
  }

  main #PRICE h2,
  main #CONTACT h2 {
    text-align: left;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
  }


  main #PRICE h3,
  main #CONTACT h3 {
    text-align: left;
    margin-bottom: 2rem;
    padding-left: 5.2rem;
  }

  main #POINT span,
  main #CONTACT span {
    writing-mode: vertical-rl;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    padding-right: 3rem;
    padding-left: 1rem;
  }

/*============================================== PC
# FEATURE（特徴）
=================================================*/
main #FEATURE {
  padding-top: 2rem;
}

main #FEATURE h2 {
  font-size: 1.3rem;
  letter-spacing: 0em;
}
main #FEATURE {
  width:100%;
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 2rem;
  margin: 2rem 0rem;
  padding-top: 2rem;
  background-color: #fff;
}

main #FEATURE h2 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: #222;
}

main #FEATURE .reason-box {
  width: 100%;
}

main #FEATURE .reason-box ul{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 0 auto;
  width: 95%;
}

main #FEATURE .reason-box li{
  width: 100%;
  flex-direction: column;
}

main #FEATURE .reason-box li h3{
  color: #222;
  text-shadow: 2px 2px #ececec;
  font-size: 1.2rem;
  height: 30px;
  text-align: left;
  padding-left: 1.3rem 1rem;
  font-weight: 700;
}

main #FEATURE .reason-box .reason-text{
  font-size: 1rem;
  height: 110px;
  padding: 1.3rem 1rem;
}

main #FEATURE .reason-box .reason-text span {
  font-size: 1rem;
}

main #FEATURE .reason-box .reason-img {
  width: 85%;
}

/*=============================================　PC
# FUNCTION（主な機能）
=================================================*/
  #FUNCTION {
    background-color: #1f3875;
    box-shadow: 4px 4px 0px #bbbbbb;
    padding: 2rem 0rem 3rem;
    text-align: center;
    border-top-right-radius: 130px;
    opacity: 0;
    transform: translateX(-200px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  }

  #PRICE.show,
  #INFORMATION.show {
    opacity: 1;
    transform: translateX(0);
  }

  #FUNCTION h2,
  #FUNCTION h3 {
    color: #ffffff;
  }
  
  #FUNCTION h4 {
    font-size: 1.2rem;
  }

  #FUNCTION span {
    color: #fff;
  }

  .parent-wrapper {
  display: flex;
  width: 100%;
  gap: 1rem;
  margin: 1rem auto;
  justify-content: center;
  }

  #FUNCTION .parent-wrapper .column-parent {
  gap: 1rem;
  margin-bottom: 0;
}

  .parent-box1,
  .parent-box2,
  .parent-box3,
  .parent-box4 {
  flex-direction: column;
  padding: 1.5rem;
  box-sizing: border-box;
  width: 300px;
  }

    
  .parent-box2{
    justify-content:center;
  }

.box-header h4 {
  font-size: 1.4rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 0rem;
  padding: 0.5rem 1rem;
}

.box-header p {
  font-size: 0.9rem;
  font-weight: normal;
  margin: 0.5rem 0 0.5rem;
}

.box-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
}

.parent-box1 .box-content ,
.parent-box4 .box-content {
  display: grid;
}

.item {
  padding: 1rem 1rem;
  font-size: 0.9rem;
  text-align: center;
  position: relative;
}

.item .title {
  color: #001738;
  font-size: 1.1rem;
  font-weight: 500;
}

.item p {
  font-size: 0.7rem;
  white-space: pre-wrap; 
  color: #001738;
  margin: 0;
}

.item:hover {
  padding: 1rem 1.5rem;
  background-color: #fdc555;
}

/*================================================== PC
# PRICE（料金）
==================================================== */
  #PRICE {
    padding: 1rem;
    margin-bottom: 1rem;
    height: auto;
    background-color: #fff;
    color: #1f3875;
    box-shadow: 4px 4px 0px #bbbbbb;
    border-top-right-radius: 130px;
    opacity: 0;
    transform: translateX(-200px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  }

#PRICE .price-text-01 {
  width: 100%;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: left;

}

#PRICE .price-text-01 .number {
  display: inline;
  font-size: 2.5rem;
  font-weight: bold;
  padding: 0 0.3rem;
}

#PRICE .price-text-02 {
  font-size: 0.9rem;
  text-align: left;
  line-height: 2;
  margin-top: 2rem;
}

#PRICE .pricing-table {
  display: none;
    border-collapse: collapse;
    width: 96%;
    margin: auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
    font-size: 0.8rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 10px;
    width: 15%;
  }

  .pricing-table thead th:nth-child(2) {
    border-radius: 8px 8px 0 0;
  }
  .pricing-table thead th:nth-child(3),
  .pricing-table thead th:nth-child(4) {
    background-color: #a3a3a3;
    border-radius: 8px 8px 0 0;
  }

  .pricing-table .company-a {
    background-color: #edad0b;
    font-size: 1rem;
  }

  .pricing-table .highlight-a {
    border: 2px solid #edad0b;
    font-size: 0.9rem;
    font-weight: bold;
  }

  .pricing-table .first-column {
    text-align: left;
    font-weight: bold;
    padding-left: 2rem;
    background-color: transparent; /* 背景を透明に */
  }

  /* 項目の背景を縞々にする */
  .pricing-table tbody tr:nth-child(odd) td {
    background-color: #f7f7f7; /* 偶数行の背景色 */
  }

  .pricing-table tbody tr:nth-child(even) td {
    background-color: #ffffff; /* 奇数行の背景色 */
  }

  /* RaizOnline列全体を囲む */
  .pricing-table .highlight-a {
    border-left: 2px solid #edad0b;
    border-right: 2px solid #edad0b;
  }

  /* 左隣（RaizOnlineの左）を空白に */
  .pricing-table th:first-child,
  .pricing-table td:first-child {
    background-color: transparent;
    border: none;
  }

  #PRICE .monthly-parent {
    display: flex;
    margin: auto;
    width: 80%;
  }

  #PRICE .monthly-content {
    /* background-color: #c2e1ec; */
    width: 50%;
    flex-direction: column;
    background-color: #ffffff60;
    margin-right: 1rem;
  }

  #PRICE .plus-content {
    /* background-color: #c2e1ec; */
    width: 50%;
    flex-direction: column;
    background-color: #ffffff60;
    margin-right: 1rem;
  }

  #PRICE .monthly-content ul,
  #PRICE .plus-content ul {
    flex-direction: column;
    width: 100%;
  }

  #PRICE .monthly-content li,
  #PRICE .plus-content li {
    /* background-color: #ffffff; */
    height: 40px;
    margin: 1rem;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
  }

/*=============================================　PC
# 推奨環境とセキュリティ（トップページのみに表示）
=================================================*/
  .env-and-security {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    padding: 0rem 1rem;
  }

  .recommended-env,
  .Security {
    margin: 1rem;
    border-radius: 8px;
    padding: 1rem 0rem 1rem;
  }

  .recommended-env p,
  .Security p {
    text-align-last: left;
    padding: 0;
    margin-bottom: 2rem;
    font-size: 0.8rem;
  }

  .recommended-env-box {
    padding: 1rem;
    font-size: 0.8rem;
    text-align-last: left;
    color: #001738;
  }

  .security-box {
    display: flex;
    justify-content: center;
  }

  .security-box img {
    width: 160px;
    margin-right: 1rem;
    margin-top: 1.5rem;
  }

  .recommended-env-box span {
    width: 100%;
    border-left: 12px solid #001738;
    border-bottom: 1px solid #001738;
    margin-bottom: 0.5rem;
    padding-right: 1rem;
    display: block;
    padding-left: 0.5rem;
  }

  .env-and-security h4 {
    display: inline-block;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 0.5rem;
  }

  .env-and-security p {
    display: inline-block;
    text-align: left;
    margin-top: 1rem;
    padding-bottom: 0.2rem;
  }

/*================================================== PC
# FOOTER（フッター）
==================================================== */
  footer {
    width: 73.5%;
    text-align: center;
    padding: 1rem 2.5rem 1rem;
    margin-right: 25%;
    border-top-left-radius: 5vw;
    border-top-right-radius: 5vw;
  }

  footer .page-footer {
    width: 100%;
    bottom: 0;
    text-align: center;
  }

  footer .footer-contents {
    text-align: center;
    padding: 1rem 0rem 1rem;
  }

  footer ul {
    text-decoration: none;
    list-style: none;
    display: inline-block;
    text-align-last: left;
    vertical-align: text-top;
    margin-right: 2.4rem;
    line-height: 2;
  }

  footer li {
    margin-right: 0rem;
    text-align: left;
    justify-content: flex-start;
    display: inline-block;
    font-size: 0.8rem;
    margin-bottom: 5px;
  }

  footer li a {
    font-family: sans-serif;
    text-decoration: none;
    font-size: 0.8rem;
  }

  footer li a:hover {
    color: #aaaaaa;
  }

  footer li p {
    font-size: 0.7rem;
  }

  footer li .span {
    font-size: 0.7rem;
  }

  footer .footer-contents-01 li .address-01 {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  footer .footer-contents-01 li .address-02 {
    font-size: 0.7rem;
  }
  footer .footer-contents-01 li .sara-tel {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
  }

  footer .footer-contents-02 li {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
  }

  footer .footer-contents-03 li {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  footer .footer-contents-03 img {
    width: 14px;
    height: auto;
    font-size: 14px;
  }

  footer small {
    font-family: sans-serif;
    color: #aaaaaa;
    font-size: 0.6rem;
  }
}


/*=================================================
- レスポンシブ ipad
================================================ */
@media screen and (max-width: 1367px) {
body .announcement-bar.visible {
  display: block;
  width: 74.8%;
}

body .page-header {
  width: 75%;
  margin-right: 25%;
  background-color: #fff;
}

/* トップページ */
main {
  width: 75%;
  padding-top: 0;
  margin-right: 24%;
}

main #TOPPAGE {
  width: 100%;
  height: 0;
  min-height: 700px;
  margin-top: 0;
  margin-bottom: 0;
  background-color: #1f3875;
  border-end-start-radius: 5vw;
  border-end-end-radius: 5vw;
  box-shadow: 4px 4px 0px #bbbbbb;
  position: relative;
  background-position: center;
  background-size: 50%;
  background-position: right bottom;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateY(-130px);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

main #TOPPAGE h1 {
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  color: #fff;
  text-shadow: 2px 2px 3px rgba(39, 39, 39, 0.3);
  padding-top: 20%;
  padding-left: 2rem;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 2rem;
  font-weight: bold;
  font-size: 2.5rem;
}

main #TOPPAGE h2 img {
  width: 25px;
  height: 25px;
  margin-right: 0.8rem;
  vertical-align: middle;
}

main #TOPPAGE h2 {
  color: #fff;
  text-shadow: 2px 2px 3px rgba(39, 39, 39, 0.3);
  padding-top: 0;
  padding-left: 2rem;
  text-align: left;
  font-weight: bold;
  font-size: 1.3rem;
}

main #TOPPAGE h2 span {
  border: 3px solid #1f3875;
  color: #1f3875;
  background-color: #fff;
  font-weight: bold;
  padding: 0.3rem 0.5rem;
  margin: 0.3rem 0.6rem 0.3rem 0rem;
  display: inline-block;
  font-size: 1.3rem;
}

main #TOPPAGE .title-container {
  position: relative;
  z-index: 99;
}

main #TOPPAGE .english-title {
  font-family: "Noto Sans JP", sans-serif;
  position: absolute;
  top: 35%;
  left: 47%;
  letter-spacing: normal;
  transform: translate(-50%, -50%);
  font-size: 9rem;
  z-index: 1;
  font-weight: bold;
  color: #ffffff23;
  text-align: left;
  width: 90%;
}

main #TOPPAGE .english-title span {
  font-size: 11rem;
}

/* スクロール */
.scroll {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #fff;
  position: fixed; /* ビューポートに対して固定 */
  text-align: center;
  left: 30%;
  bottom: 10vh;
  transform: translateX(-80%);
}

/* 矢印のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  content: "";
  height: 15px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 15px;
  text-align: left;
}

/* 矢印のアニメーション */
@keyframes scroll {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  90% {
    opacity: 0;
    transform: rotate(-45deg) translate(-20px, 20px);
  }
  100% {
    opacity: 0;
  }
}

#INFORMATION-datail-page {
  background-color: #fff;
  border: 1px solid #001738;
  padding: 3% 5%;
  margin: 10% auto 2%;
  width: 90%;
}

/*==================================================
# FUNCTIION
================================================= */
#FUNCTION h4 {
    font-size: 1.2rem;
    padding: 0.5rem;
}

main #FUNCTION .parent-wrapper {
  display: flex;
  width: 93%;
  gap: 1rem;
  margin: 1rem auto;
  justify-content: center;
}

.parent-box1, .parent-box2, .parent-box3, .parent-box4 {
    flex-direction: column;
    padding: 1rem;
    box-sizing: border-box;
}

.item {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    text-align: center;
    position: relative;
}

.item:hover {
    padding: 0.8rem 1rem;
}


/*==================================================
# CONTACT（問い合わせ）
================================================= */
main #CONTACT {
  display: none;
  background-color: #fff;
  flex-direction: column;
  text-align: left;
  margin-top: 4rem;
  margin-bottom: 0;
  padding-top: 2rem;
  padding-bottom: 0;
}

#CONTACT .title-0 {
  display: flex;
  margin-bottom: 0;
}

#CONTACT .h2h3 {
  flex-direction: column;
}

#CONTACT h2{
  font-size: 1.8rem;
}

main #CONTACT h3 {
  line-height: 1.6;
  padding: 0;
  margin: 0;
  font-size: 0.9;
}

main #CONTACT span {
  padding-right: 1.5rem;
  padding-left: 0.5rem;
}

#CONTACT .bottom-form {
  padding: 0rem 4rem 1rem;
  text-align: center;
  flex-direction: column;
  margin: 1rem;
  border-radius: 12px;
}

#CONTACT .bottom-form span {
  color: red;
  font-size: 1rem;
  padding: 0;
  border-left: 0;
}

#CONTACT .bottom-form ul {
  padding: 0;
}

#CONTACT .bottom-form-category {
  width: 100%;
  text-align: left;
  display: inline-block;
  font-size: 0.9rem;
  margin: 1.5rem 0 1rem;
}

#CONTACT .bottom-form .title-bold {
  color: #333;
  font-weight: bold;
  font-size: 1rem;
  text-align: left;
}

#CONTACT form .bottom-form-category p {
  font-size: 0.9rem;
  font-weight: normal;
  text-align: left;
  color: #333;
}

#CONTACT .bottom-form img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  padding-bottom: 0.2rem;
}

input[type="checkbox"] {
  -ms-transform: scale(1.5, 1.5);
  -webkit-transform: scale(1.5, 1.5);
  transform: scale(1.5, 1.5);
  margin-right: 10px;
  margin-bottom: 0rem;
  margin-left: 0.5rem;
  text-align: left;
}

.input-area {
  margin-bottom: 0.3rem;
}

.input-area p {
  font-weight: 600;
  font-size: 1rem;
  margin: 0px 0 10px;
  letter-spacing: 0.1em;
  width: 200px;
  color: #333;
}

.input-area-message {
  margin-bottom: 20px;
  text-align: left;
}

.input-area input[type="text"],
.input-area input[type="email"],
.input-area input[type="tel"] {
  width: 100%;
  height: 40px;
  background-color: #f0f0f0;
  border-radius: 14px;
  border: 1px solid #d1d1d1;
  font-size: 20px;
}

.bottom-form .input-area-message input[type="text"] {
  height: 155px;
  width: 100%;
  border-radius: 14px;
  margin: 0.5rem 0 1rem;
  border: 1px solid #ddd;
}


.bottom-form .input-area-message textarea {
  height: 50px;
  width: 100%;
  border-radius: 14px;
  margin-bottom: 0rem;
  font-size: 0.7rem;
  padding: 10px;
  resize: vertical;
  border: 1px solid #ddd;
}

.bottom-form .input-area-message {
  display: block;
  font-weight: bold;
}

.bottom-form .input-area-message p {
  letter-spacing: 0;
  font-size: 1rem;
  width: 100%;
  text-align: left;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 0.7rem;
  color: #333;
}

.bottom-form ::placeholder {
  text-align: left;
  color: #ccc;
  font-size: 1rem;
  padding-left: 0.5rem;
  font-weight: normal;
}

.bottom-form .input-area-message textarea {
  height: 300px;
  width: 100%;
  border-radius: 14px;
  margin-bottom: 1rem;
  font-size: 1rem;
  padding: 10px;
  resize: vertical;
  border: 1px solid #ddd;
  background-color: #f0f0f0;
}

::placeholder {
  text-align: left;
  color: #ccc;
  font-size: 16px;
}

.title-bold span,
.input-area span,
.form-category .important {
  color: red;
  font-weight: bold;
  padding: 0;
}

#CONTACT .bottom-form .btn {
  width: 350px;
  margin: auto;
  display: block;
  padding: 1rem;
  background-color: #1f3875;
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-radius: 50px;
  font-size: 0.9rem;
  border: none;
  box-shadow: 3px 3px 0 #bbb;
}

#CONTACT .bottom-form .btn:hover {
  width: 350px;
  margin: auto;
  padding: 1rem;
  background-color: #1f3875;
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-radius: 50px;
  font-size: 0.9rem;
  box-shadow: none;
}

.error-message {
  color: red;
  font-size: 0.8rem;
  margin-top: 5px;
}

.input-area {
  margin-bottom: 20px;
}


}

/*=================================================
- レスポンシブ ipad
================================================ */
@media screen and (max-width: 1280px) {

/* お知らせバーが表示されている場合、ヘッダー位置を調整 */
.page-header.announcement-visible {
  padding: 5rem 0rem 2rem 0.5rem;
}

body .page-header{
  height: 70px;
  justify-content: space-between;
  display: flex;
  background-color: #fff;
  opacity: 100%;
  z-index: 3;
  position: fixed;
  align-items: center;
  padding: 6px 10px 6px;
  width: 100%;
  margin-right: 0;
}

/* トップページ */
main{
  width: 74%;
  margin-right: 25%;
  padding-top: 0;
}

body .page-header {
  width: 75%;
  margin-right: 25%;
  padding-top: 0;
  padding-bottom: 0;
}

main #TOPPAGE {
  width: 100%;
  height: 0;
  min-height: 650px;
  margin-top: 0;
  margin-bottom: 0;
  background-color: #1f3875;
  border-end-start-radius: 5vw;
  border-end-end-radius: 5vw;
  box-shadow: 4px 4px 0px #bbbbbb;
  position: relative;
  background-position: center;
  background-size: 48%;
  background-position: right bottom;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateY(-130px);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

main #TOPPAGE h1 {
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  color: #fff;
  text-shadow: 2px 2px 3px rgba(39, 39, 39, 0.3);
  padding-top: 11rem;
  padding-left: 2rem;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 1rem;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.7;
}

main #TOPPAGE h2 img {
  width: 25px;
  height: 25px;
  margin-right: 0.8rem;
  vertical-align: middle;
}

main #TOPPAGE h2 {
  color: #fff;
  text-shadow: 2px 2px 3px rgba(39, 39, 39, 0.3);
  padding-top: 0rem;
  padding-left: 2rem;
  text-align: left;
  font-weight: bold;
  font-size: 1.2rem;
}

main #TOPPAGE h2 span {
  border: 3px solid #1f3875;
  font-size: 1.4rem;
  color: #1f3875;
  background-color: #fff;
  font-weight: bold;
  padding: 0.3rem 0.5rem;
  margin: 0 0.3rem 0.5rem 0.3rem;
  display: inline-block;
  font-size: 1.2rem;
}

main #TOPPAGE .title-container {
  position: relative;
  z-index: 99;
}

main #TOPPAGE .english-title {
  font-family: "Noto Sans JP", sans-serif;
  position: absolute;
  top: 38%;
  left: 47%;
  letter-spacing: normal;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  z-index: 1;
  font-weight: bold;
  color: #ffffff23;
  text-align: left;
  width: 90%;
}

main #TOPPAGE .english-title span {
  font-size: 10rem;
}

/* スクロール */
.scroll {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #fff;
  position: fixed; /* ビューポートに対して固定 */
  text-align: center;
  left: 30%;
  bottom: 15vh;
  transform: translateX(-80%);
}

/* 矢印のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  content: "";
  height: 15px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 15px;
  text-align: left;
}

/* 矢印のアニメーション */
@keyframes scroll {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  90% {
    opacity: 0;
    transform: rotate(-45deg) translate(-20px, 20px);
  }
  100% {
    opacity: 0;
  }
}

#INFORMATION-datail-page {
  background-color: #fff;
  border: 1px solid #001738;
  padding: 3% 5%;
  margin: 10% auto 2%;
  width: 90%;
}



/*==================================================
# FEATURE
================================================= */
#FEATURE .reason-box .reason-text {
    width: 100%;
    height: 140px;
    color: #222;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 1rem 1.5rem;
    line-height: 1.8;
    text-align: left;
    font-weight: 500;
}

  main #FEATURE .reason-box ul {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin: 0 auto;
      width: 100%;
  }

  main #FEATURE .reason-box .reason-text {
    font-size: 1rem;
    height: 110px;
    padding: 1.3rem 1rem;
  }

  main #FEATURE .reason-box .reason-img {
    width: 75%;
  }

/*==================================================
# FUNCTION（主な機能）
================================================= */
#FUNCTION h4 {
  font-size: 1rem;
}

.parent-wrapper {
display: flex;
width: 100%;
gap: 1rem;
margin: 1rem auto;
justify-content: center;
}

#FUNCTION .parent-wrapper .column-parent {
gap: 1rem;
margin-bottom: 0;
}

.parent-box1,
.parent-box2,
.parent-box3,
.parent-box4 {
flex-direction: column;
padding: 1rem 0.5rem;
box-sizing: border-box;
}

.parent-box2{
  justify-content:center;
}

main #FEATURE .reason-title {
    display: block;
    width: 90%;
    background-color: #1f3875;
    color: #fff;
    border-radius: 5vw;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin: 2rem auto;
    padding: 1rem 0;
}

.box-header h4 {
  font-size: 1.1rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 0rem;
  padding: 0.5rem 1rem;
}

.box-header p {
  font-size: 0.9rem;
  font-weight: normal;
  margin: 0.5rem 0 0.5rem;
}

.box-content {
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
}

.parent-box1 .box-content ,
.parent-box4 .box-content {
  display: grid;
}

.item {
  padding: 0.5rem 1rem;
    box-shadow: 2px 2px 0px #bbbbbb;
  font-size: 0.9rem;
  text-align: center;
  position: relative;
  width: 220px;
  margin: 0 auto;
}

.item .title {
  color: #001738;
  font-size: 0.9rem;
  font-weight: 500;
}

.item p {
  font-size: 0.7rem;
  white-space: pre-wrap; 
  color: #001738;
  margin: 0;
}

.item:hover {
  padding: 0.5rem 1rem;
}

/*==================================================
# CONTACT（問い合わせ）
================================================= */
main #CONTACT {
  display: none;
  background-color: #fff;
  flex-direction: column;
  text-align: left;
  margin-top: 4rem;
  margin-bottom: 0;
  padding-top: 2rem;
  padding-bottom: 0;
}

#CONTACT .title-0 {
  display: flex;
  margin-bottom: 0;
}

#CONTACT .h2h3 {
  flex-direction: column;
}

#CONTACT h2{
  font-size: 1.8rem;
}

main #CONTACT h3 {
  line-height: 1.6;
  padding: 0;
  margin: 0;
  font-size: 0.9;
}

main #CONTACT span {
  padding-right: 1.5rem;
  padding-left: 0.5rem;
}

#CONTACT .bottom-form {
  padding: 0rem 4rem 1rem;
  text-align: center;
  flex-direction: column;
  margin: 1rem;
  border-radius: 12px;
}

#CONTACT .bottom-form span {
  color: red;
  font-size: 1rem;
  padding: 0;
  border-left: 0;
}

#CONTACT .bottom-form ul {
  padding: 0;
}

#CONTACT .bottom-form-category {
  width: 100%;
  text-align: left;
  display: inline-block;
  font-size: 0.9rem;
  margin: 1.5rem 0 1rem;
}

#CONTACT .bottom-form .title-bold {
  color: #333;
  font-weight: bold;
  font-size: 1rem;
  text-align: left;
}

#CONTACT form .bottom-form-category p {
  font-size: 0.9rem;
  font-weight: normal;
  text-align: left;
  color: #333;
}

input[type="checkbox"] {
  -ms-transform: scale(1.5, 1.5);
  -webkit-transform: scale(1.5, 1.5);
  transform: scale(1.5, 1.5);
  margin-right: 10px;
  margin-bottom: 0.5rem;
  margin-left: 1rem;
  text-align: left;
}

.input-area {
  margin-bottom: 0.3rem;
}

.input-area p {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  width: 200px;
  color: #333;
}

.input-area-message {
  margin-bottom: 20px;
  text-align: left;
}

.input-area input[type="text"],
.input-area input[type="email"],
.input-area input[type="tel"] {
  width: 100%;
  height: 38px;
  background-color: #f0f0f0;
  border-radius: 14px;
  border: 1px solid #d1d1d1;
  font-size: 20px;
}

.bottom-form .input-area-message input[type="text"] {
  height: 155px;
  width: 100%;
  border-radius: 14px;
  margin: 0.5rem 0 1rem;
  border: 1px solid #ddd;
}


.bottom-form .input-area-message textarea {
  height: 50px;
  width: 100%;
  border-radius: 14px;
  margin-bottom: 0rem;
  font-size: 0.7rem;
  padding: 10px;
  resize: vertical;
  border: 1px solid #ddd;
}

.bottom-form .input-area-message {
  display: block;
  font-weight: bold;
}

.bottom-form .input-area-message p {
  letter-spacing: 0;
  font-size: 1rem;
  width: 100%;
  text-align: left;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 0.7rem;
  color: #333;
}

.bottom-form ::placeholder {
  text-align: left;
  color: #ccc;
  font-size: 1rem;
  padding-left: 0.5rem;
  font-weight: normal;
}

.bottom-form .input-area-message textarea {
  height: 300px;
  width: 100%;
  border-radius: 14px;
  margin-bottom: 1rem;
  font-size: 1rem;
  padding: 10px;
  resize: vertical;
  border: 1px solid #ddd;
  background-color: #f0f0f0;
}

::placeholder {
  text-align: left;
  color: #ccc;
  font-size: 16px;
}

.title-bold span,
.input-area span,
.form-category .important {
  color: red;
  font-weight: bold;
  padding: 0;
}


.bottom-form  p.form-message-privacy {
  color: #555;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: left;
}

.bottom-form a.privacy-link {
  display: inline-block;
  margin: 1rem 0;
  text-decoration: none;
  color: #2370af;
  font-weight: bold;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-align: left;
}

.bottom-form a.privacy-link:hover {
  color: #575757;
}

#CONTACT .bottom-form .btn {
  width: 350px;
  margin: auto;
  background-color: #1f3875;
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-radius: 50px;
  font-size: 0.9rem;
  border: none;
  box-shadow: 3px 3px 0 #bbb;
}

#CONTACT .bottom-form .btn:hover {
  width: 350px;
  margin: auto;
  background-color: #1f3875;
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-radius: 50px;
  font-size: 0.9rem;
  box-shadow: none;
}

.error-message {
  color: red;
  font-size: 0.8rem;
  margin-top: 5px;
}

.input-area {
  margin-bottom: 20px;
}
}

/*====================================================
- レスポンシブ ipad
==================================================== */
@media screen and (max-width: 1024px) {
  .side-form {
    display: none;
  }

  .bottom-form {
    display: block;
  }

  .PC-nav {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  /* ヘッダー */
  body header {
    justify-content: space-between;
    margin-right: 0%;
  }

  body .page-header {
    width: 100%;
    margin-right: 0;
    background-color: #ffffff;
    height: 85px;
  }

  body .page-header img {
    max-width: 200px;
    width: 200px;
    padding-top: 0.5rem;
  }

  /* ipad / SP ナビを表示 */
  .nav_toggle,
  .nav i,
  .nav-ipad {
    display: block;
  }

  /* PCのヘッダーナビメニューを非表示 */
  header .PC-nav,
  header .nav,
  .side-form {
    display: none;
  }
  
  header li {
    margin-right: 3rem;
    text-align: center;
    background-color: none;
    position: relative;
    font-weight: bold;
  }

  header .hamburger-menu {
    display: flex; /* ハンバーガーアイコンを表示 */
  }

  .open-menu.show {
    display: flex; /* ハンバーガーメニューが開いたときに表示 */
    text-align: left;
    height: 100vh;
    width: 100vw;
    background-color: #ffffff;
    padding-top: 7rem;
    align-items: center; /* 垂直方向の中央 */
    overflow-y: auto;
  }

  .open-menu {
    display: none; /* 初期状態は非表示 */
    background-color: #fff;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    text-align: center;
    font-size: 1.5rem;
    padding-bottom: 3rem;
    top: 0;
    left: 0;
    font-family: "Josefin Sans", sans-serif;
    position: fixed; /* 固定位置 */
    right: -100%; /* 初期位置は画面外 */
    transition: right 1s ease-out;
    z-index: 2;
  }
  .open-menu ul {
    text-align: center;
    margin: 0;
    width: 100%;
    padding: 5%;
  }
  
  .open-menu li {
    text-align: left;
    width: 100%;
    padding-bottom: 0.5rem;
    border-bottom: 1px dotted #666666;
    margin-bottom: 2.6rem;
  }
  
  .open-menu li a {
    text-decoration: none;
    color: #353535;
    font-weight: bold;
    font-size: 2.2rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  
  .open-menu li a span {
    margin-left: 0.5rem;  /* 文字と矢印の間に少しスペースを追加 */
  }
  
  .open-menu li a::after {
    content: '';
  width: 0;
  height: 0;
  border-top: none;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);/}
  
  .open-menu .open-menu-button {
    display: flex;
    text-align: center;
    justify-content: center;
    gap: 0 1.3rem;
  }

  .open-menu .open-menu-button span{
    color: #fff;
  }

  .open-menu .login-button {
    display: inline-block;
    background-color: #424242;
    box-shadow: 3px 3px 0px #bbbbbb;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    padding: 1rem 3rem 1rem;
    border-radius: 20px;
  }

  .open-menu .contact-button {
    display: inline-block;
    background-color: #1f3875;
    box-shadow: 3px 3px 0px #bbbbbb;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    padding: 1rem 3rem 1rem;
    border-radius: 20px;
  }

  .open-menu span {
    font-family: "Noto Sans JP", sans-serif;
    display: flex;
    flex-direction: column;
    color: #696969;
    font-weight: normal;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  .button {
    font-size: 1rem;
  }

  .parent-wrapper {
    margin: 1rem 1rem;
}

/*=====================================================
- トップページ
==================================================== */
  main {
    width: 100%;
    padding-top: 0;
    margin-right: 0;
  }

  .page-header,
  .announcement-bar,
  main,
  .page-footer {
    width: 100%;
    margin-right: 0;
  }

  main #TOPPAGE {
    width: 100%;
    height: 0;
    min-height: 770px;
    margin-top: 0;
    margin-bottom: 2rem;
    background-color: #1f3875;
    border-end-start-radius: 5vw;
    border-end-end-radius: 5vw;
    box-shadow: 4px 4px 0px #bbbbbb;
    position: relative;
    background-position: center;
    background-size: 60%;
    background-position: right bottom;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateY(-130px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  }

  main #TOPPAGE h1 {
    font-family: "Noto Sans JP", sans-serif;
    width: 100%;
    color: #fff;
    text-shadow: 2px 2px 3px rgba(39, 39, 39, 0.3);
    padding-top: 12rem;
    padding-left: 2rem;
    font-size: 2.5rem;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 2rem;
    font-weight: bold;
  }

  main #TOPPAGE h2 img {
    width: 25px;
    height: 25px;
    margin-right: 0.8rem;
    vertical-align: middle;
  }

  main #TOPPAGE h2 {
    color: #fff;
    text-shadow: 2px 2px 3px rgba(39, 39, 39, 0.3);
    padding-top: 1rem;
    padding-left: 3rem;
    text-align: left;
    font-weight: bold;
    font-size: 1.1rem;
  }

  main #TOPPAGE h2 span {
    border: 3px solid #1f3875;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 0.3rem 0.5rem;
    margin: 0.5rem 0.6rem 0.3rem 0rem;
    display: inline-block;
    font-size: 1.1rem;
  }

  main #TOPPAGE .title-container {
    position: relative;
    z-index: 99;
  }

  main #TOPPAGE .english-title {
    font-family: "Noto Sans JP", sans-serif;
    position: absolute;
    top: 30%;
    left: 48%;
    transform: translate(-50%, -50%);
    font-size: 7.5rem;
    z-index: 1;
    font-weight: bold;
    color: #ffffff23;
    text-align: left;
    width: 90%;
  }

  main #TOPPAGE .english-title span {
    font-size: 10rem;
  }

  
  /* スクロール */
  .scroll {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: #fff;
    position: fixed; /* ビューポートに対して固定 */
    text-align: center;
    left: 25%;
    bottom: 11vh;
    transform: translateX(-80%);
  }

  /* 矢印のアニメーション部分 */
  .scroll::before {
    animation: scroll 2s infinite;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    content: "";
    height: 15px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 15px;
    text-align: left;
  }

  /* 矢印のアニメーション */
  @keyframes scroll {
    0% {
      opacity: 0;
      transform: rotate(-45deg) translate(0, 0);
    }
    40% {
      opacity: 1;
    }
    90% {
      opacity: 0;
      transform: rotate(-45deg) translate(-20px, 20px);
    }
    100% {
      opacity: 0;
    }
  }

/*============================================== PC
- 上部に表示するお知らせバー
=================================================*/
body .announcement-bar {
  padding: 10px 20px;
  font-size: 0.8rem;
  text-align: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  font-weight: bold;
}

/* お知らせバーが表示されている場合、ヘッダー位置を調整 */
.page-header.announcement-visible {
  padding: 4rem 1rem 2rem;
}

body .announcement-bar.visible {
  display: block;
  width: 100%;
}

/* お知らせバーが表示されている場合、ヘッダー位置を調整 */
body .page-header.announcement-visible {
  padding: 5rem 1rem 2rem;
}



  main h1 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 55px;
    letter-spacing: 0.1em;
    font-weight: 600;
    padding-top: 2rem;
  }

  main h2 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
    width: 100%;
    max-width: 100%;
  }

  main h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.4;
  }


/*==================================== ipad =======
- コンテンツ共通部分
=================================================*/
  main #FEATURE,
  main #FUNCTION,
  main #PRICE,
  main #CONTACT,
  main #INFORMATION {
    width: 100%;
    height: auto;
    max-width: 100%;
    scroll-margin-top: 120px;
  }

  main #FUNCTION h2,
  main #PRICE h2,
  main #CONTACT h2 {
    text-align: left;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
  }

  main #FUNCTION h3,
  main #PRICE h3,
  main #CONTACT h3 {
    text-align: left;
  }

  main #FUNCTION span,
  main #CONTACT span {
    writing-mode: vertical-rl;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    padding-left: 0.5rem;
  }

/*====================================================
- 固定表示ボタン
==================================================== */
main .fixed-button-class {
  position: fixed;
  width: 390px;
  height: 60px;
  bottom: 15px; /* 最初は画面外に配置 */
  left: 0;
  right: 0;
  margin: auto;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #333;
  border: 2px solid #FF4D2D;
  box-shadow: 2px 2px 0 #9e9479;
  border-radius: 15vw;
  font-size: 1rem;
  font-weight: 700;
  flex-direction: column;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
}

main .fixed-button-class .cta-button-sub{
  font-size: 0.8rem;
}

/* 限定のバッジ */
main .cta-badge {
  position: absolute;
  top: -18px;
  left:-12px;
  width: 130px;
  height: 30px;
  padding: 2px 0;
  background-color: #ec492d;
  color: #ffffff;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  clip-path: polygon(
    0% 0%, 92% 0%, 85% 50%, 92% 100%, 0% 100%, 8% 50%
  );
  transform: rotate(-15deg); /* 左に傾ける */
  display: flex; /* Flexbox を有効化 */
  justify-content: center; /* 水平方向の中央寄せ */
  align-items: center; /* 垂直方向の中央寄せ */
  text-align: center;
  padding-right: 0.6rem;
  padding-bottom: 0.3rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fixed-button-class.show {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* ボタンが表示されるとき、バッジも一緒に表示 */
.fixed-button-class.show .cta-badge {
  opacity: 1;
  visibility: visible;
}

/*============================================== PC
# FEATURE（特徴）
=================================================*/
main #FEATURE {
  padding-bottom: 1rem;
}

main #FEATURE h2 {
  font-size: 1.3rem;
  letter-spacing: 0em;
  padding: 0 3.5rem;
}

main #FEATURE {
  padding-top: 2rem;
}

main #FEATURE h2 {
  font-size: 1.3rem;
  letter-spacing: 0em;
}
main #FEATURE {
  width:100%;
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 2rem;
  margin: 2rem 0rem;
  padding-top: 2rem;
  background-color: #fff;
}

main #FEATURE h2 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: #222;
}

main #FEATURE .reason-title {
    width: 95%;
}

main #FEATURE .reason-box {
  width: 100%;
}

main #FEATURE .reason-box ul{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 0 auto;
  width: 100%;
}

main #FEATURE .reason-box li{
  width: 100%;
  flex-direction: column;
}

main #FEATURE .reason-box li h3{
  color: #222;
  text-shadow: 2px 2px #ececec;
  font-size: 1.2rem;
  height: 30px;
  text-align: left;
  padding-left: 1rem;
  font-weight: 700;
}

main #FEATURE .reason-box .reason-text{
  font-size: 0.95rem;
  height: 110px;
}

main #FEATURE .reason-box .reason-text span {
  font-size: 1rem;
}

main #FEATURE .reason-box .reason-img {
  width: 75%;
}

/*=============================================
FUNCITON
=================================================*/
#FUNCTION h4 {
  font-size: 1rem;
}

.parent-wrapper {
display: flex;
width: 100%;
gap: 1rem;
margin: 1rem auto;
justify-content: center;
}

#FUNCTION .parent-wrapper .column-parent {
gap: 1rem;
margin-bottom: 0;
}

.parent-box1,
.parent-box2,
.parent-box3,
.parent-box4 {
flex-direction: column;
padding: 1rem 0.5rem;
box-sizing: border-box;
}

.parent-box2{
  justify-content:center;
}

main #FEATURE .reason-title {
    display: block;
    width: 90%;
    background-color: #1f3875;
    color: #fff;
    border-radius: 5vw;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin: 2rem auto;
    padding: 1rem 0;
}

.box-header h4 {
  font-size: 1.1rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 0rem;
  padding: 0.5rem 1rem;
}

.box-header p {
  font-size: 0.9rem;
  font-weight: normal;
  margin: 0.5rem 0 0.5rem;
}

.box-content {
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
}

.parent-box1 .box-content ,
.parent-box4 .box-content {
  display: grid;
  gap: 1rem;
}

.item {
  padding: 0.5rem 1rem;
    box-shadow: 2px 2px 0px #bbbbbb;
  font-size: 0.9rem;
  text-align: center;
  position: relative;
  width: 93%;
  margin: 0 auto;
}

.item .title {
  color: #001738;
  font-size: 0.9rem;
  font-weight: 500;
}

.item p {
  font-size: 0.7rem;
  white-space: pre-wrap; 
  color: #001738;
  margin: 0;
}

.item:hover {
  padding: 0.5rem 1rem;
}

/*======================================= ipad / SP
- CTAボタン - PCでは非表示
=================================================*/
  .CTA-BUTTON {
    display: block;
    background-color: #edad0b;
    box-shadow: 2px 2px 0px 0px #7a7a7a;
    border-radius: 50px;
    font-size: 1rem;
    margin: 2rem auto 1rem;
    width: 350px;
    height: auto;
    overflow: hidden;
}

.CTA-BUTTON a {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    cursor: pointer;
    color: #fff;
    letter-spacing: 0.1em;
    font-size: 1rem;
    font-weight: bold;
    padding: 0.8rem 0rem;
    box-sizing: border-box;
    transition: all 0.3s;
}

.CTA-BUTTON:hover {
    box-shadow: none;
    transform: scale(0.99, 0.99) translateY(2px);
    background-color: #edad0b;
}


/*=================================================
# FUNCTION（主な機能）
=================================================*/
#modal-main-1,
#modal-main-2,
#modal-main-3,
#modal-main-4,
#modal-main-5,
#modal-main-6,
#modal-main-7,
#modal-main-8,
#modal-main-9,
#modal-main-10,
#modal-main-11,
#modal-main-12,
#modal-main-13,
#modal-main-14,
#modal-main-15,
#modal-main-16{
  display: none;
}

/* 吹き出し部分 */
.popup {
  display: none; /* 初期状態では非表示 */
  position: absolute;
  top: 110%;
  left: 110%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #001738;
  padding: 2rem 3rem;
  font-size: 0.8rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  border-radius: 30px;
  border: 2px solid #001738;
  white-space: nowrap;
  z-index: 100;
  width: 430px;
  height: 100px;
}

.popup p,
.popup-left p{
  color: #001738;
  position: absolute;
  text-align: left;
  line-height: 1.8;
  font-size: 0.8rem;
  display: inline-block;
  padding-left: 0.3rem;
}

.popup-left {
  display: none;
  position: absolute;
  top: 110%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #001738;
  padding: 2rem 3rem;
  font-size: 0.8rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  border-radius: 30px;
  border: 2px solid #001738;
  white-space: nowrap;
  z-index: 100;
}

.popup img,
.popup-left img {
  position: absolute;
  display: flex;
  /* display: none; */
  top: 15%;
  left: 5%;
  border-radius: 8px;
}

  /* ポップアップの矢印 */
  .popup::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 20%;
    transform: translateX(-50%);
    border-width: 15px;
    border-style: solid;
    border-color: transparent transparent #001738 transparent;
  }

  /* ポップアップ（その他）の矢印 */
  .popup-left::before {
    content: "";
    position: absolute;
    top: -30px;
    right: 25%;
    transform: translateX(-50%);
    border-width: 15px;
    border-style: solid;
    border-color: transparent transparent #001738 transparent;
  }

  /* ホバー時にポップアップを表示 */
  .item:hover .popup,
  .item:hover .popup-left {
    display: block;
  }

  .item .title {
    color: #001738;
    font-size: 0.8rem;
    font-weight: normal;
  }

  .item p {
    font-size: 0.8rem;
    color: #001738;
    margin: 0;
  }

/*======================================== ipad =======
# PRICE（料金）
==================================================== */
  #PRICE {
    margin-bottom: 1rem;
    height: auto;
    background-color: #ffffff;
    box-shadow: 4px 4px 0px #bbbbbb;
    border-top-right-radius: 5vw;
    opacity: 0;
    transform: translateX(-200px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    width: 100%;
  }

#PRICE .price-text-01 {
  width: 100%;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: left;
}

#PRICE .price-text-01 .number {
  display: inline;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0 0.3rem;
}

#PRICE .price-text-02 {
  text-align: left;
  line-height: 1.7;
}

#PRICE .price-text-02 p {
  font-size: 0.8rem;
  text-align: left;
  padding-left: 0rem;
  padding-right: 2rem;
  margin-bottom: 0rem;
  margin-top: 0.3rem;
  line-height: 1.5;
}

#PRICE span {
  padding-left: 0;
  padding-bottom: 0;
}

#PRICE .pricing-table {
  display: none;
    border-collapse: collapse;
    width: 95%;
    table-layout: fixed;
    margin-left: 0;
    margin: auto;
  }

  #PRICE th,
  #PRICE td {
    border: 1px solid #b4b4b4;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    height: 50px;
  }

  /* 項目セル */
  #PRICE th:first-child,
  #PRICE td:first-child {
    border: none;
    text-align: left;
    padding-left: 1rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    border: 1px solid #b4b4b4;
    border-top: none;
    border-right: none;
    border-left: none;
  }

  #PRICE td:first-child {
    border-left: 1px solid #b4b4b4;
  }

  #PRICE th {
    font-weight: bold;
  }

  #PRICE th:first-child {
    background-color: transparent;
    width: 20%; /* 項目列の幅を短くする */
  }

  /* Aのヘッダー */
  #PRICE th.company-name {
    background-color: #edad0b; /* オレンジ */
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border: none; /* ヘッダー周りのボーダーを非表示 */
  }

  /* B・Cのヘッダー */
  #PRICE th.company-name + th {
    background-color: #333; /* 暗いグレー */
    color: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border: none;
  }

  #PRICE td {
    background-color: #fff;
    font-weight: bold;
  }

  #PRICE .highlight td {
    border: 2px solid #edad0b;
    font-size: 1.2rem;
  }

  #PRICE tr:nth-child(even) td {
    background-color: #f7f7f7;
  }

  #PRICE .highlight {
    background-color: #ffffff;
    border-left: 3px solid #edad0b;
    border-right: 3px solid #edad0b;
    border-bottom: 3px solid #edad0b;
    font-weight: bold;
    color: #edad0b;
  }

  #PRICE .company-name {
    font-weight: bold;
  }

/*===============================================
# INFORMATION
=================================================*/
#INFORMATION h2{
  margin-bottom: 0.5rem;
}

#INFORMATION .view-more {
  text-align: center;
  margin: 1rem auto;
  width: 350px;
}

/*===============================================
# INFORMATION（注意：別ページの一覧）
=================================================*/
  #INFORMATION-datail-page {
    padding: 5% 3%;
    background-color: #fff;
    border: 1px solid #001738;
    margin: 15% auto 8%;
    width: 95%;
  }

  main #INFORMATION-datail-page h2 {
    color: #001738;
    text-align: left;
    display: block;
    text-align: 0;
    margin-bottom: 1rem;
    font-size: 1.6rem;
  }

  main #INFORMATION-datail-page span {
    color: #001738;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    padding-right: 3rem;
  }

  #INFORMATION-datail-page .info-content {
    width: 100%;
    margin: auto;
    display: flex;
    font-size: 0.9rem;
    align-items: center;
    font-weight: bold;
  }

  #INFORMATION-datail-page .info-content .flex{
    display: flex;
    justify-content: center;
    vertical-align: middle;
  }

  #INFORMATION-datail-page .info-content a {
    width: 100%;
    margin: auto;
    display: flex;
    font-size: 0.9rem;
    align-items: center;
    margin: 0.5rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid #bbb;
  }

  #INFORMATION-datail-page .info-content a:hover {
    color: #5f5f5f;
  }

  #INFORMATION .info-scroll {
    padding: 0;
    margin-top: 1rem;
    width: 100%;
    margin: 2rem auto 0;
  }

  #INFORMATION-datail-page .info-date {
    color: #292929;
    margin-right: 1rem;
    font-weight: bold;
    font-size: 1rem;
    padding: 0.2rem 0.3rem;
  }

  #INFORMATION-datail-page .info-category-new {
    color: #fff;
    margin-right: 1rem;
    background-color: #238ab9;
    padding: 0.2rem 0.3rem;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  #INFORMATION-datail-page .info-category-release {
    color: #fff;
    margin-right: 1rem;
    background-color: #e9a11c;
    padding: 0.2rem 0.3rem;
    vertical-align: middle;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  #INFORMATION-datail-page .info-category-notice {
    color: #fff;
    margin-right: 1rem;
    background-color: #239e65;
    padding: 0.2rem 0.3rem;
    vertical-align: middle;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  #INFORMATION-datail-page .info-title {
    color: #292929;
    padding: 0.3rem;
    font-weight: bold;
  }

  #INFORMATION-datail-page p {
    color: #292929;
    font-size: 0.9rem;
    text-align: left;
    margin-top: 2rem;
  }

  #INFORMATION-datail-page .back-button {
    color: #353535;
    font-size: 1rem;
    text-align: left;
    margin-top: 4rem;
  }

  #INFORMATION-datail-page .back-button a:hover {
    color: #5f5f5f;
  }

  #INFORMATION-datail-page a {
    color: #001738;
    text-decoration: none;
  }

/*==================================================
# CONTACT（問い合わせ）
================================================= */
  main #CONTACT {
    display: block;
    background-color: #fff;
    flex-direction: column;
    text-align: left;
    margin-top: 4rem;
    margin-bottom: 0;
    padding-top: 2rem;
    padding-bottom: 1rem;
  }

  #CONTACT .title-0 {
    display: flex;
    margin-bottom: 0;
  }
  
  #CONTACT .h2h3 {
    flex-direction: column;
  }
  
  #CONTACT h2{
    font-size: 1.8rem;
  }
  
  main #CONTACT h3 {
    line-height: 1.6;
    padding: 0;
    margin: 0;
    font-size: 0.9;
  }

  main #CONTACT span {
    padding-right: 1.5rem;
    padding-left: 0.5rem;
  }

  #CONTACT .bottom-form {
    padding: 0rem 4rem 1rem;
    text-align: center;
    flex-direction: column;
    margin-top: 1rem;
    border-radius: 12px;
  }

  #CONTACT .bottom-form span {
    color: red;
    font-size: 1rem;
    padding: 0;
    border-left: 0;
  }

  #CONTACT .bottom-form ul {
    padding: 0;
  }

  #CONTACT .bottom-form-category {
    width: 100%;
    text-align: left;
    display: inline-block;
    font-size: 0.9rem;
    margin: 1.5rem 0 1rem;
  }

  #CONTACT .bottom-form .title-bold {
    color: #333;
    font-weight: bold;
    font-size: 1rem;
    text-align: left;
  }

  #CONTACT form .bottom-form-category p {
    font-size: 0.9rem;
    font-weight: normal;
    text-align: left;
    color: #333;
  }
  
  input[type="checkbox"] {
    -ms-transform: scale(1.5, 1.5);
    -webkit-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
    margin-right: 10px;
    margin-bottom: 0.5rem;
    margin-left: 1rem;
    text-align: left;
  }

  .input-area {
    margin-bottom: 0.3rem;
    text-align: left;
  }

  .input-area p {
    font-weight: 600;
    font-size: 1rem;
    margin: 10px 0 10px;
    letter-spacing: 0.1em;
    width: 200px;
    color: #333;
  }

  .input-area-message {
    margin-bottom: 20px;
    text-align: left;
  }

  .input-area input[type="text"],
  .input-area input[type="email"],
  .input-area input[type="tel"] {
    width: 100%;
    height: 50px;
    background-color: #f0f0f0;
    border-radius: 14px;
    border: 1px solid #d1d1d1;
    padding: 18px;
    font-size: 20px;
  }

  .bottom-form .input-area-message input[type="text"] {
    height: 155px;
    width: 100%;
    border-radius: 14px;
    margin: 0.5rem 0 1rem;
    border: 1px solid #ddd;
  }
  
  
  .bottom-form .input-area-message textarea {
    height: 50px;
    width: 100%;
    border-radius: 14px;
    margin-bottom: 0rem;
    font-size: 0.7rem;
    padding: 10px;
    resize: vertical;
    border: 1px solid #ddd;
  }
  
  .bottom-form .input-area-message {
    display: block;
    font-weight: bold;
  }
  
  .bottom-form .input-area-message p {
    letter-spacing: 0;
    font-size: 1rem;
    width: 100%;
    text-align: left;
    padding-top: 0;
    margin-top: 0;
    padding-bottom: 0.7rem;
    color: #333;
  }
  
  .bottom-form ::placeholder {
    text-align: left;
    color: #ccc;
    font-size: 1rem;
    padding-left: 0.5rem;
    font-weight: normal;
  }

  .bottom-form .input-area-message textarea {
    height: 300px;
    width: 100%;
    border-radius: 14px;
    font-size: 1rem;
    padding: 10px;
    resize: vertical;
    border: 1px solid #ddd;
    background-color: #f0f0f0;
}

  ::placeholder {
    text-align: left;
    color: #ccc;
    font-size: 16px;
  }

  .title-bold span,
  .input-area span,
  .form-category .important {
    color: red;
    font-weight: bold;
    padding: 0;
  }

  #CONTACT .bottom-form .btn {
    width: 350px;
    margin: auto;
    padding: 1rem;
    background-color: #1f3875;
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 0.1em;
    border-radius: 50px;
    font-size: 0.9rem;
    border: none;
    box-shadow: 3px 3px 0 #bbb;
  }

  #CONTACT .bottom-form .btn:hover {
    width: 350px;
    margin: auto;
    padding: 1rem;
    background-color: #1f3875;
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 0.1em;
    border-radius: 50px;
    font-size: 0.9rem;
    box-shadow: none;
  }

  .error-message {
    color: red;
    font-size: 0.8rem;
    margin-top: 5px;
  }

  .input-area {
    margin-bottom: 0;
  }

/*==================================== ipad =======
# 推奨環境とセキュリティ（トップページのみに表示）
=================================================*/
  .env-and-security {
    width: 100%;
    text-align: center;
    margin: 1rem 0;
    display: flex;
  }

  .recommended-env,
  .Security {
    margin: 1rem;
    border-radius: 8px;
    padding: 0;
  }

  .recommended-env p,
  .Security p {
    text-align-last: left;
    padding: 0.5rem 1rem 1rem;
    font-size: 0.8rem;
  }

  .recommended-env-box {
    padding: 1rem;
    font-size: 0.8rem;
    text-align-last: left;
    color: #001738;
  }

  .security-box {
    display: flex;
    justify-content: center;
  }

  .security-box img {
    width: 150px;
    margin-right: 1rem;
    margin-top: 1.5rem;
  }

  .recommended-env-box span {
    width: 90%;
    border-left: 12px solid #001738;
    border-bottom: 1px solid #001738;
    margin-bottom: 0.5rem;
    padding-right: 1rem;
    display: block;
    padding-left: 0.5rem;
  }

  .env-and-security h4 {
    display: inline-block;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    color: #001738;
  }

  .env-and-security p {
    display: inline-block;
    text-align: left;
    margin-top: 0rem;
    padding-bottom: 0.2rem;
    padding-left: 0;
    color: #001738;
  }

/*=========================================== ipad ====
# FOOTER（フッター）
==================================================== */

footer {
  width: 100%;
  text-align: center;
  padding: 1rem 1.8rem 7.5rem;
  margin-right: 0%;
  border-top-left-radius: 8vw;
  border-top-right-radius: 8vw;
}

footer .page-footer {
  width: 100%;
  bottom: 0;
  text-align: center;
}

footer .footer-contents {
  text-align: center;
  justify-content: space-between;
  gap: 20px;
  display: flex;
}

footer ul {
  text-decoration: none;
  list-style: none;
  display: inline-block;
  text-align-last: left;
  vertical-align: text-top;
  margin-right: 1.3rem;
}

footer li {
  margin-right: 0rem;
  text-align: left;
  justify-content: flex-start;
  display: inline-block;
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
}

footer li a {
  font-family: sans-serif;
  text-decoration: none;
  color: #333;
  font-size: 13px;
}

footer li a:hover {
  color: #aaaaaa;
}

footer li p {
  font-size: 13px;
}

footer li .span {
  font-size: 30px;
}

footer .footer-contents-01 li .address-01 {
  font-size: 12px;
  line-height: 2;
}

footer .footer-contents-01 li .address-02 {
  font-size: 12px;
}
footer .footer-contents-01 li .sara-tel {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

footer .footer-contents-02 li {
  font-size: 13px;
  letter-spacing: 0.2em;
}

footer .footer-contents-03 li {
  font-size: 13px;
  letter-spacing: 0.1em;
}

footer small {
  font-family: sans-serif;
  color: #aaaaaa;
  font-size: 12px;
}


/*==============================================
- RB記事ページCSS
============================================= */
#NEWS-article-base{
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.NEWS-article-area {
  width: 80%;
  margin: 8rem auto 5rem;
  background-color: #fff;
  border: 1px solid #001738;
  text-align: left;
  padding: 1rem;
}

.NEWS-article-area .date-and-category{
  display: flex;
  gap: 0.9rem;
}

.NEWS-article-area .date,
.NEWS-article-area .category{
  font-size: 0.9rem;
  color: #222;
  margin-bottom: 0.5rem;
}

.NEWS-article-area .category span {
  border: 2px solid #edad0b;
  padding: 3px 5px;
  margin: 0 3px;
  border-radius: 8px;
}

.NEWS-article-area .title {
  font-size: 1.4rem;
  color: #222;
  font-weight: 700;
  border-bottom: 1px solid #bbb;
  padding: 1rem 0;
}

.NEWS-article-area .article-main {

  padding: 2rem 0rem;
}

.NEWS-article-area p {
  color: #222;
  font-size: 0.9rem;
}

.NEWS-article-area a {
text-decoration: none;
color: #001738;
font-size: 1rem;
transition: color 0.3s;
}

.NEWS-article-area a:hover {
  color: #bbb;
}

.NEWS-article-area img.site-dummy {
  width: 100%;
  border: 1px solid #bbb;
  margin: 0.5rem auto;
}

.NEWS-article-area a.new-site-url {
  color: #1460a7;
}

}


/*=================================================
- レスポンシブ SP
=================================================*/
@media screen and (max-width: 660px) {
  
  header,
  .announcement-bar,
  main,
  footer {
    width: 100%;
  }

  html,
  body {
    height: 100%;
    margin: 0;
  }

  body header {
    justify-content: space-between;
    margin-right: 0%;
  }

  body .page-header {
    width: 100%;
    height: 80px;
    background-color: #ffffff;
    opacity: 100;
  }

  body .page-header img {
    max-width: 100%;
    width: 200px;
    padding-top: 0.5rem;
  }

/* お知らせバーが表示されている場合、ヘッダー位置を調整 */
body .page-header.announcement-visible,
#TOPPAGE.show, #FUNCTION.show, #PRICE.show, #INFORMATION.show {
  padding: 7rem 1rem 2rem;
}

  /* ipad / SP ナビを表示 */
  .nav_toggle,
  .nav i,
  .nav-ipad {
    display: block;
  }

  /* PCナビを非表示 */
  header .PC-nav,
  header .nav,
  .side-form {
    display: none;
  }

  header li {
    margin-right: 3rem;
    text-align: center;
    background-color: none;
    position: relative;
    font-weight: bold;
  }

  header .hamburger-menu {
    display: flex;
  }

  .open-menu {
    display: none;
    background-color: #fff;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    text-align: center;
    font-size: 1.5rem;
    padding-bottom: 3rem;
    top: 0;
    left: 0;
  }

 /* ハンバーガーメニューを開いた画面の詳細 */
  .open-menu {
  font-family: "Josefin Sans", sans-serif;
  display: none;
  position: fixed;
  top: 0;
  right: -100%; /* 初期位置は画面外 */
  width: 100%;
  flex-direction: column;
  font-size: 1.5rem;
  transition: right 1s ease-out;
  z-index: 2;
}

.open-menu ul {
  text-align: center;
  margin: 0;
  width: 100%;
  padding: 2rem 1.5rem;
}

.open-menu li {
  text-align: left;
  width: 100%;
  padding-bottom: 0.5rem;
  border-bottom: 1px dotted #666666;
  margin-bottom: 3rem;
}

.open-menu li a {
  text-decoration: none;
  color: #353535;
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: flex;  /* フレックスボックスを適用 */
  justify-content: space-between;  /* テキストと矢印を左右に配置 */
  align-items: center;  /* 垂直方向のセンタリング */
  position: relative; /* 右矢印を相対的に配置 */
}

.open-menu li a span {
  margin-left: 0.5rem;  /* 文字と矢印の間に少しスペースを追加 */
}

.open-menu li a::after {
  content: '';
  width: 0;
  height: 0;
  border-top: none;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.open-menu .open-menu-button {
  margin: 4rem 2.5rem 1rem;
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 0 1.3rem;
}

.open-menu .open-menu-button span{
  color: #fff;
  font-size: 0.8rem;
}

.open-menu .login-button {
  display: inline-block;
  box-shadow: 3px 3px 0px #bbbbbb;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  padding: 1rem 1.4rem 1rem;
  border-radius: 20px;
}

.open-menu .contact-button {
  display: inline-block;
  background-color:  #1f3875;
  box-shadow: 3px 3px 0px #bbbbbb;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  padding: 1rem 1.4rem 1rem;
  border-radius: 20px;
}

.open-menu span {
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  flex-direction: column;
  color: #696969;
  font-weight: normal;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.button {
  font-size: 1rem;
}

main .fixed-button-class {
  position: fixed;
  width: 330px;
  height: 60px;
  bottom: 15px; /* 最初は画面外に配置 */
  left: 0;
  right: 0;
  margin: auto;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #333;
  /* border: 3px solid #edad0b; */
  /* box-shadow: 2px 2px 0 #9e9479; */
  border-radius: 15vw;
  font-size: 1rem;
  font-weight: bold;
  flex-direction: column;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
}

/* 限定のバッジ */
main .cta-badge {
  position: absolute;
  top: -18px;
  left:-12px;
  width: 130px;
  height: 30px;
  padding: 2px 0;
  /* background-color: #1d9dac; */
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  clip-path: polygon(
    0% 0%, 92% 0%, 85% 50%, 92% 100%, 0% 100%, 8% 50%
  );
  transform: rotate(-15deg); /* 左に傾ける */
  display: flex; /* Flexbox を有効化 */
  justify-content: center; /* 水平方向の中央寄せ */
  align-items: center; /* 垂直方向の中央寄せ */
  text-align: center;
  padding-right: 0.6rem;
  padding-bottom: 0.3rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fixed-button-class.show {
  opacity: 1;
  visibility: visible;
}

/* ボタンが表示されるとき、バッジも一緒に表示 */
.fixed-button-class.show .cta-badge {
  opacity: 1;
  visibility: visible;
}

  header,
  .announcement-bar,
  main,
  footer {
    width: 100%;
  }

  html,
  body {
    height: 100%;
    margin: 0;
  }

  body header {
    justify-content: space-between;
    margin-right: 0%;
  }

  body .page-header {
    width: 100%;
    height: 80px;
    background-color: #ffffff;
    opacity: 100;
  }

  body .page-header img {
    max-width: 100%;
    width: 220px;
    padding-top: 0.5rem;
  }

/* お知らせバーが表示されている場合、ヘッダー位置を調整 */
.page-header.announcement-visible {
  padding: 4rem 1rem 2rem;
}


  /* ipad / SP ナビを表示 */
  .nav_toggle,
  .nav i,
  .nav-ipad {
    display: block;
  }

  /* PCナビを非表示 */
  header .PC-nav,
  header .nav,
  .side-form {
    display: none;
  }

  header li {
    margin-right: 3rem;
    text-align: center;
    background-color: none;
    position: relative;
    font-weight: bold;
  }

  header .hamburger-menu {
    display: flex;
  }

  .open-menu {
    display: none;
    background-color: #fff;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    text-align: center;
    font-size: 1.5rem;
    padding-bottom: 3rem;
    top: 0;
    left: 0;
  }

 /* ハンバーガーメニューを開いた画面の詳細 */
  .open-menu {
  font-family: "Josefin Sans", sans-serif;
  display: none;
  position: fixed;
  top: 0;
  right: -100%; /* 初期位置は画面外 */
  width: 100%;
  flex-direction: column;
  font-size: 1.5rem;
  transition: right 1s ease-out;
  z-index: 2;
}

.open-menu ul {
  text-align: center;
  margin: 0;
  width: 100%;
  padding: 2rem 1.5rem;
}

.open-menu li {
  text-align: left;
  width: 100%;
  padding-bottom: 0.5rem;
  border-bottom: 1px dotted #666666;
  margin-bottom: 3rem;
}

.open-menu li a {
  text-decoration: none;
  color: #353535;
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: flex;  /* フレックスボックスを適用 */
  justify-content: space-between;  /* テキストと矢印を左右に配置 */
  align-items: center;  /* 垂直方向のセンタリング */
  position: relative; /* 右矢印を相対的に配置 */
}

.open-menu li a span {
  margin-left: 0.5rem;  /* 文字と矢印の間に少しスペースを追加 */
}

.open-menu li a::after {
  content: '';
  width: 0;
  height: 0;
  border-top: none;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.open-menu .open-menu-button {
  margin: 0rem 2.5rem 1rem;
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 0 1.3rem;
}

.open-menu .open-menu-button span{
  color: #fff;
  font-size: 0.8rem;
}

.open-menu .login-button {
  display: inline-block;
  box-shadow: 3px 3px 0px #bbbbbb;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  padding: 1rem 1.4rem 1rem;
  border-radius: 20px;
}

.open-menu .contact-button {
  display: inline-block;
  background-color: #1f3875;
  box-shadow: 3px 3px 0px #bbbbbb;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  padding: 1rem 1.4rem 1rem;
  border-radius: 20px;
}

.open-menu span {
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  flex-direction: column;
  color: #696969;
  font-weight: normal;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.button {
  font-size: 1rem;
}

/*=====================================================
- トップページ
==================================================== */
  main {
    padding-top: 0vh;
  }

  main #TOPPAGE {
    width: 100%;
    height: 0;
    min-height: 800px;
    background-color: #1f3875;
    margin-top: -10vh;
    border-end-start-radius: 15vw;
    border-end-end-radius: 15vw;
    box-shadow: 4px 4px 0px #bbbbbb;
    position: relative;
    background-position: center;
    background-size: 68%;
    background-position: right bottom;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateY(-130px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  }

  main #TOPPAGE h1 {
    font-family: "Noto Sans JP", sans-serif;
    width: 100%;
    color: #fff;
    text-shadow: 2px 2px 3px rgba(39, 39, 39, 0.3); /* 軽い影 */
    padding-top: 5.5rem;
    padding-left: 1.5rem;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 2rem;
    font-weight: bold;
    font-size: 2rem;
  }
  
main #TOPPAGE h2 {
  display: none;
}

main #TOPPAGE h2.SP {
  display: block;
}

  main #TOPPAGE h2.SP img {
    width: 20px;
    height: 20px;
    margin-right: 0.8rem;
    vertical-align: middle;
  }
  main #TOPPAGE h2.SP {
    color: #fff;
    text-shadow: 2px 2px 3px rgba(39, 39, 39, 0.3);
    padding-left: 0;
    text-align: left;
    font-weight: bold;
    font-size: 1rem;
    text-indent: 0em;
  }

  main #TOPPAGE h2.SP span {
    border: none;
    font-size: 1.4rem;
    color: #1f3875;
    font-weight: bold;
    padding: 0.3rem 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.3rem;
    margin-right: 0;
    display: inline-block;
    font-size: 1rem;
  }

  main #TOPPAGE h2.indent {
    display: block;
    padding-left: 1.5rem; /* インデントを追加 */
    margin-top: 0.3rem; /* 行間を調整 */
  }

  main #TOPPAGE .title-container {
    position: relative;
    z-index: 99;
  }

  main #TOPPAGE .english-title {
    font-family: "Noto Sans JP", sans-serif;
    position: absolute;
    top: 20%;
    left: 48%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    z-index: 1;
    font-weight: bold;
    color: #ffffff23;
    text-align: left;
    width: 90%;
  }

  main #TOPPAGE .english-title span {
    font-size: 6rem;
  }


  /* スクロール */
  .scroll {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: #fff;
    position: fixed; /* ビューポートに対して固定 */
    text-align: center;
    left: 25%;
    bottom: 15vh;
    transform: translateX(-80%);
  }

  /* 矢印のアニメーション部分 */
  .scroll::before {
    animation: scroll 2s infinite;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    content: "";
    height: 10px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    bottom: -5px;
    width: 10px;
    text-align: left;
  }

  /* 矢印のアニメーション */
  @keyframes scroll {
    0% {
      opacity: 0;
      transform: rotate(-45deg) translate(0, 0);
    }
    40% {
      opacity: 1;
    }
    50% {
      opacity: 0;
      transform: rotate(-45deg) translate(-15px, 15px);
    }
    100% {
      opacity: 0;
    }
  }

/*=====================================================
- トップページ
==================================================== */
  main #TOPPAGE {
    width: 100%;
    height: 0;
    min-height: 700px;
    margin-top: 0;
    margin-bottom: 2rem;
    background-color: #1f3875;
    border-end-start-radius: 15vw;
    border-end-end-radius: 15vw;
    box-shadow: 4px 4px 0px #bbbbbb;
    position: relative;
    background-position: center;
    background-size: 70%;
    background-position: right bottom;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateY(-130px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  }

  main #TOPPAGE h1 {
    font-family: "Noto Sans JP", sans-serif;
    width: 100%;
    color: #fff;
    text-shadow: 2px 2px 3px rgba(39, 39, 39, 0.3); /* 軽い影 */
    padding-top: 8rem;
    padding-left: 0rem;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 2rem;
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 2;
  }

  main #TOPPAGE h2 img {
    width: 20px;
    height: 20px;
    margin-right: 0.8rem;
    vertical-align: middle;
  }

  main #TOPPAGE .title-container {
    position: relative;
    z-index: 99;
  }

  main #TOPPAGE .english-title {
    font-family: "Noto Sans JP", sans-serif;
    position: absolute;
    top: 28%;
    left: 43%;
    transform: translate(-50%, -50%);
    font-size: 4.5rem;
    z-index: 1;
    font-weight: bold;
    color: #ffffff23;
    text-align: left;
    width: 90%;
  }

  main #TOPPAGE .english-title span {
    font-size: 6rem;
  }

  /* スクロール */
  .scroll {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: #fff;
    position: fixed; /* ビューポートに対して固定 */
    text-align: center;
    left: 20%;
    bottom: 15vh;
    transform: translateX(-80%);
  }

  /* 矢印のアニメーション部分 */
  .scroll::before {
    animation: scroll 2s infinite;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    content: "";
    height: 10px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    bottom: -5px;
    width: 10px;
    text-align: left;
  }

  /* 矢印のアニメーション */
  @keyframes scroll {
    0% {
      opacity: 0;
      transform: rotate(-45deg) translate(0, 0);
    }
    40% {
      opacity: 1;
    }
    50% {
      opacity: 0;
      transform: rotate(-45deg) translate(-15px, 15px);
    }
    100% {
      opacity: 0;
    }
  }

/*=================================================
- コンテンツ共通部分
=================================================*/
  main #FEATURE,
  main #FUNCTION,
  main #PRICE,
  main #CONTACT,
  main #INFORMATION {
    width: 100%;
    height: auto;
    max-width: 100%;
    scroll-margin-top: 120px;
    padding: 1rem;
  }

  main #FUNCTION h2,
  main #PRICE h2,
  main #CONTACT h2 {
    text-align: left;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    font-size: 1.5rem;
  }

  main #FUNCTION h3,
  main #PRICE h3,
  main #INFORMATION h3,
  main #CONTACT h3 {
    margin-bottom: 0rem;
    padding-left: 0rem;
    text-align: left;
    padding-right: 0.5rem;
    font-weight: bold;
    line-height: 1.7;
  }

  main #FUNCTION span,
  main #CONTACT span {
    writing-mode: vertical-rl;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    padding-left: 0.5rem;
  }

  main #PRICE span {
    writing-mode: vertical-rl;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    padding-left: 0rem;
    padding-left: 0.5rem;
  }

  #CONTACT {
    display: none;
  }

/*=================================================
# FEATURE （特徴）
=================================================*/
main #FEATURE {
  padding: 2rem 1rem 0;
}

main #FEATURE h2 {
  font-size:1.1rem;
  letter-spacing: 0em;
  color: #222;
  padding: 0rem;
  display: none;
  line-height: 1.8;
}

main #FEATURE h2.SP {
  display: block;
  font-size:1.1rem;
  letter-spacing: 0em;
  color: #222;
  padding: 0rem;
}

main #FEATURE h2 span.SP {
  font-size:1.3rem;
  letter-spacing: 0em;
  color: #222;
  font-weight: 900;
  padding: 0rem;
}

main #FEATURE .reason-title {
  display: block;
  width: 100%;
  background-color: #1f3875;
  color: #fff;
  border-radius: 10vw;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 2rem auto;
  padding: 1rem 0;
}

main #FEATURE .reason-box {
  width: 100%;
}

.parent-box2 .box-content {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding-top: 1rem;
}

main #FEATURE .reason-box ul{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  margin: 0 auto;
  padding: 0 0rem;
  width: 100%;
}

main #FEATURE .reason-box li{
  width: 100%;
  flex-direction: column;
  padding: 0.5rem 0.5rem;
  border-right: 0;
  border-bottom: 1px solid #222;
  padding-bottom: 1.5rem;
}

main #FEATURE .reason-box li h3{
  color: #222;
  text-shadow: 2px 2px #ececec;
  font-size: 1.4rem;
  height: 65px;
  text-align: left;
  padding-left: 0;
  font-weight: 700;
}

main #FEATURE .reason-box .reason-text{
  width: 100%;
  height: auto;
  color: #222;
  font-size: 1rem;
  margin: 0;
  padding: 0;
  line-height: 1.8;
  text-align: left;
  font-weight: 500;
}

main #FEATURE .reason-box .reason-text span {
  color: #FF4D2D;
  font-weight: 700;
  font-size: 1.1rem;
}

main #FEATURE .reason-box .reason-img {
  width: 85%;
}


/*======================================= SP（660px）
- CTAボタン - PCでは非表示
=================================================*/
  .CTA-BUTTON {
    display: block;
    background-color: #edad0b;
    box-shadow: 2px 2px 0px 0px #7a7a7a;
    border-radius: 50px;
    font-size: 1rem;
    margin: 2rem auto 1rem;
    width: 330px;
    height: auto;
    overflow: hidden;
  }

/*=================================================
# FUNCTION（主な機能）
=================================================*/
 /* モーダル */
#MODAL {
  display: none;
  z-index: 0;
  font-size: 1rem;
}

#modal-open {
display: none;
display: block;
}

/* モーダル コンテンツエリア */
#modal-main-1,
#modal-main-2 ,
#modal-main-3 ,
#modal-main-4 ,
#modal-main-5 ,
#modal-main-6 ,
#modal-main-7 ,
#modal-main-8 ,
#modal-main-9 ,
#modal-main-10 ,
#modal-main-11 ,
#modal-main-12 ,
#modal-main-13 ,
#modal-main-14 ,
#modal-main-15 ,
#modal-main-16 {
  display: none;
  font-size: 1rem;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 1rem;
  background-color: #1f3875;
  color: #ffffff;
  position:fixed;
  z-index: 99;
  overflow: visible; /* 必要に応じて指定 */
  position: fixed;
  overflow-y: auto;
}

.feature-datail-title {
  padding: 2rem auto 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: #ffffff;
  font-weight: bold;
  z-index: 100;
  width: 100%;
  margin: auto;
  margin-top: 7rem;
}

#modal-main-1 p.feature-datail ,
#modal-main-2 p.feature-datail ,
#modal-main-3 p.feature-datail ,
#modal-main-4 p.feature-datail ,
#modal-main-5 p.feature-datail ,
#modal-main-6 p.feature-datail ,
#modal-main-7 p.feature-datail ,
#modal-main-8 p.feature-datail ,
#modal-main-9 p.feature-datail ,
#modal-main-10 p.feature-datail ,
#modal-main-11 p.feature-datail ,
#modal-main-12 p.feature-datail ,
#modal-main-13 p.feature-datail ,
#modal-main-14 p.feature-datail ,
#modal-main-15 p.feature-datail ,
#modal-main-16 p.feature-datail {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-align: left;
  margin: 1.5rem auto;
}

#modal-main-1 img,
#modal-main-2 img,
#modal-main-3 img,
/* #modal-main-4 img htmlでサイズ指定のため非表示 */
#modal-main-5 img,
#modal-main-6 img,
#modal-main-7 img,
#modal-main-8 img,
#modal-main-9 img,
#modal-main-10 img,
#modal-main-11 img,
#modal-main-13 img
/* #modal-main-14 img, */
/* #modal-main-15 img */
/* #modal-main-16 img */
/* #modal-main-12 img htmlでサイズ指定のため非表示*/
{
  width: 85%;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

#modal-main-15 img{
  width: 170px;
  height: auto;
}

.modal-bottom-area {
  margin: 0 auto 2rem;
  padding: 5%;
}

.modal-bottom-area p.on-btn{
  display: block;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
}

.modal-bottom-area .modal-contact-button a{
  display: inline-block;
  background-color: #ec492d;
  box-shadow: 2px 2px 0px #353535;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  border-radius: 10vw;
}

.modal-bottom-area .modal-contact-button a:hover{
  box-shadow: none;
}

/* モーダル 背景エリア */
#modal-bg {
  display:none;
  width:100%;
  height:100%;
  background-color: rgba(0,0,0,0.5);
  position:fixed;
  top:0;
  left:0;
  z-index: 1;
}

/* ×ボタン */
#modal-close-1,
#modal-close-2,
#modal-close-3,
#modal-close-4,
#modal-close-5,
#modal-close-6,
#modal-close-7,
#modal-close-8,
#modal-close-9,
#modal-close-10,
#modal-close-11,
#modal-close-12,
#modal-close-13,
#modal-close-14,
#modal-close-15,
#modal-close-16{
  position: fixed;
  top: 0%;
  right: 0%;
  cursor: pointer;
  font-size: 2rem;
  color: #333;
  padding: 0.5rem 1.2rem 1rem;
  border-bottom-left-radius: 5vw;
  background-color: #fff;
}
/* モーダル終わり */

  main #FUNCTION {
    background-color: #1f3875;
    box-shadow: 4px 4px 0px #bbbbbb;
    text-align: center;
    border-top-right-radius: 130px;
    opacity: 0;
    transform: translateX(-200px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    padding-top: 1.5rem;
  }

  #TOPPAGE.show{
    opacity: 1;
    transform: translateX(0);
    padding: 0 1rem;
  }

  #FUNCTION.show,
  #PRICE.show,
  #INFORMATION.show {
    opacity: 1;
    transform: translateX(0);
    padding: 2rem 1rem 1rem;
  }

  #FUNCTION h3 {
    font-size: 0.9rem;
  }

  #FUNCTION h4 {
    font-size: 1rem;
    color: #fff;
    width: 80%;
    margin: 0.3rem auto;
    padding: 1rem;
  }

  #FUNCTION .title-0 {
    margin-bottom: 2rem;
  }

  .parent-wrapper {
    flex-direction:column;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1rem;
        width: 100%;
        gap: 1rem;
        margin: 1rem auto;
        justify-content: center;
    }

  .parent-box1 ,
  .parent-box2 ,
  .parent-box3 {
      width: 100%;
  }

  .box-header p {
    font-size: 0.8rem;
    font-weight: normal;
    margin: 0.5rem 0 0.5rem;
  }

  .box-content {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding-top: 0.5rem;
  }

  /* SPではホバーでの見た目の変化もなくす */
  .item {
    width: 80%;
    margin: auto;
    padding: 0.8rem 0.5rem;
    text-align: center;
    box-shadow: 2px 2px 0 #bbbbbb;
    position: relative;
  }

  .item:hover {
    background-color: #d9edf1;
    padding: 0.8rem 0.5rem;
  }

  /* ポップアップ非表示 */
  .popup,
  .popup-left,
  .popup img,
  .popup-left img,
  .popup::before ,
  .popup-left::before,
  .item:hover .popup,
  .item:hover .popup-left {
    display: none;
  }

  .item .title {
    color: #001738;
    font-size: 0.9rem;
    font-weight: normal;
    padding-left: 0.5rem;
  }

  .item p {
    font-size: 0.8rem;
    color: #001738;
    margin: 0;
  }

/* 
# PRICE（料金）
==================================================== */
  main #PRICE {
    padding: 2rem 1rem 2rem;
    height: auto;
    background-color: #ffffff;
    box-shadow: 4px 4px 0px #bbbbbb;
    border-top-right-radius: 15vw;
    opacity: 0;
    transform: translateX(-200px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    width: 100%;
  }

  #PRICE span {
    padding-left: 0;
  }

  #PRICE .price-text-01 {
    border-bottom: none;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-align: left;
    margin-left: 0rem;
    width: 100%;
    margin: 1rem 0 0.5rem 0;
  }

  
#PRICE .price-text-01 {
  width: 100%;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: left;
}

#PRICE .price-text-01 .number {
  display: inline;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0 0.3rem;
}

#PRICE .price-text-02 {
  text-align: left;
  line-height: 1.7;
}

#PRICE .price-text-02 p {
  font-size: 0.9rem;
  text-align: left;
  padding-left: 0rem;
  padding-right: 1rem;
  margin-bottom: 0rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}


  #PRICE .pricing-table {
    border-collapse: collapse;
    width: 95%;
    table-layout: fixed;
    margin-left: 0;
    margin: auto;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    margin: 0 auto;
    width: 95%;
    table-layout: fixed;
    display: none;
  }

  #PRICE th,
  #PRICE td {
    border: 1px solid #b4b4b4;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    height: 50px;
  }

  /* 項目セル */
  #PRICE th:first-child,
  #PRICE td:first-child {
    border: none;
    text-align: left;
    padding-left: 1rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    border: 1px solid #b4b4b4;
    border-top: none;
    border-right: none;
    border-left: none;
  }

  #PRICE td:first-child {
    border-left: 1px solid #b4b4b4;
  }

  #PRICE th {
    font-weight: bold;
  }

  #PRICE th:first-child {
    background-color: transparent;
    min-width: 150px; /* 最小幅を設定（必要に応じて調整） */
  }

  /* Aのヘッダー */
  #PRICE th.company-name {
    background-color: #edad0b;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border: none;
    min-width: 200px;
  }

  /* B・Cのヘッダー */
  #PRICE th.company-name + th {
    background-color: #333;
    color: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border: none;
    min-width: 200px;
  }

  #PRICE td {
    background-color: #fff;
    font-weight: bold;
  }

  #PRICE .highlight td {
    border: 2px solid #edad0b;
    font-size: 1.2rem;
  }

  #PRICE tr:nth-child(even) td {
    background-color: #f7f7f7;
  }

  #PRICE .highlight {
    background-color: #ffffff;
    border-left: 3px solid #edad0b;
    border-right: 3px solid #edad0b;
    border-bottom: 3px solid #edad0b;
    font-weight: bold;
    color: #edad0b;
  }

  #PRICE .company-name {
    font-weight: bold;
  }

/*====================================
# INFORMATION（お知らせ・最新情報）
=================================================*/
  main #INFORMATION {
    padding: 1rem 1rem 3rem;
    background-color: #1f3875;
    border: 1px solid #001738;
    border-top-right-radius: 15vw;
    box-shadow: 4px 4px 0px #bbbbbb;
    margin-top: 1rem;
    transform: translateX(-200px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    width: 85%;
    margin-left: 0rem;
  }

  main #INFORMATION h2 {
    color: #ffffff;
    text-align: left;
    font-size: 1.5rem;
    width: 100%;
    display: block;
    text-align: 0;
  }

  main #INFORMATION h3 {
    font-size: 0.9rem;
    padding: 0;
    color: #ffffff;
  }

  main #INFORMATION span {
    color: #ffffff;
    writing-mode: vertical-rl;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    padding-left: 0.5rem;
  }

  /* スクロールバーの設定 */

  #INFORMATION .info-scroll {
    max-height: 260px;
    width: 100%;
    margin: auto;
    margin-top: 1rem;
    overflow-y: auto; /* 縦方向のスクロールを有効にする */
  }

  .info-scroll::-webkit-scrollbar {
    width: 10px;
  }

  .info-scroll::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 5px;
  }

  #INFORMATION .info-content {
    border-bottom: 1px solid #bbb;
    width: 100%;
    display: flex;
  }

  .info-content a {
    flex-wrap: wrap; /* スマホでは要素を折り返し */
  }

  .info-content .info-date,
  .info-content .info-category-new {
    flex-basis: auto;
    margin-bottom: 0; /* 上下の余白は調整 */
  }

  .info-content .info-title {
    flex-basis: 100%; /* タイトルを新しい行に */
    margin-top: 0.5rem;
    font-size: 1rem;
  }

  #INFORMATION .info-date {
    margin-right: 0.5rem;
    font-size: 0.9rem;
  }

  #INFORMATION .info-category-new {
    color: #fff;
    margin-left: 1rem;
    background-color: #238ab9;
    padding: 0rem 0.3rem;
    font-size: 0.9rem;
  }

  #INFORMATION .info-category-release {
    color: #fff;
    margin-right: 0.5rem;
    background-color: #e9a11c;
    padding: 0rem 0.3rem;
    vertical-align: middle;
    font-size: 0.9rem;
  }

  #INFORMATION .info-category-notice {
    color: #fff;
    margin-right: 1rem;
    background-color: #239e65;
    padding: 0rem 0.3rem;
    vertical-align: middle;
    font-size: 0.9rem;
  }

  #INFORMATION .info-title {
    padding: 0;
    font-size: 0.9rem;
  }

  #INFORMATION .view-more {
    text-align: center;
    margin: auto;
    margin-top: 1rem 0;
    width: 350px;
  }

  #INFORMATION .view-more a {
    display: inline-block;
    width: 330px;
    margin: 0;
    font-size: 1rem;
  }

  #INFORMATION .view-more a:hover {
    box-shadow: none;
    transform: scale(0.99, 0.99) translateY(2px);
    background-color: #fff;
  }

/*=================================================
# INFORMATION（お知らせ・最新情報一覧ページ）
=================================================*/
  #INFORMATION-datail-page {
    background-color: #fff;
    border: 1px solid #001738;
    padding: 3% 5%;
    margin: 23% auto 8%;
    width: 90%;
  }

  main #INFORMATION-datail-page h2 {
    color: #001738;
    font-size: 1.8rem;
    text-align: left;
    display: block;
    text-align: 0;
    margin-bottom: 0rem;
    margin-left: 0;
  }

  main #INFORMATION-datail-page span {
    color: #001738;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    padding-right: 3rem;
  }

  #INFORMATION-datail-page .info-content {
    width: 100%;
    margin: 0;
    display: flex;
    font-size: 0.9rem;
    display: inline-block;
    text-align: left;
  }

  #INFORMATION-datail-page .info-content .flex {
    display: flex!important;
    text-align: left;
    justify-content: left;
    align-items: left;
    margin-bottom: 0.5rem;
  }

  #INFORMATION-datail-page .info-content a {
    width: 100%;
    margin: auto;
    display: flex;
    font-size: 0.9rem;
    align-items: center;
    margin: 0;
    padding: 0.8rem 0.5rem;
    border-bottom: 1px solid #bbb;
    vertical-align: middle;
    align-items: center;
  }

  #INFORMATION-datail-page .info-content a:hover {
    color: #5f5f5f;
  }

  #INFORMATION-datail-page .info-date {
    color: #001738;
    margin-right: 0.3rem;
    font-size: 0.9rem;
    padding-left: 0;
    font-weight: bold;
  }

  #INFORMATION-datail-page .info-category-new {
    color: #fff;
    margin-right: 0;
    background-color: #238ab9;
    padding: 0rem 0.2rem 0rem;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    height: 20px;
    margin-top: 0.3rem;
    width: 100px;
  }


  #INFORMATION-datail-page .info-category-release {
    color: #fff;
    margin-right: 0;
    background-color: #e9a11c;
    padding: 0rem 0.2rem 0rem;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    height: 20px;
    margin-top: 0.3rem;
    width: 100px;
  }

  #INFORMATION-datail-page .info-category-notice {
    color: #fff;
    margin-right: 0;
    background-color: #239e65;
    padding: 0rem 0.2rem 0rem;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    height: 20px;
    margin-top: 0.3rem;
    width: 100px;
  }

  #INFORMATION-datail-page .info-title {
    color: #292929;
    padding: 0.1rem;
    font-weight: normal;
    font-size: 0.9rem;
    display: block;
    padding-bottom: 0.5rem;
  }
  #INFORMATION-datail-page p {
    color: #292929;
    font-size: 0.9rem;
    text-align: left;
    margin-top: 0rem;
  }

  #INFORMATION-datail-page .back-button {
    color: #353535;
    font-size: 1rem;
    text-align: left;
    margin-top: 4rem;
  }

  #INFORMATION-datail-page .back-button a:hover {
    color: #5f5f5f;
  }

  #INFORMATION-datail-page a {
    color: #001738;
    text-decoration: none;
  }

/*=====================================================
# CONTACT（問い合わせ）
==================================================== */
  main #CONTACT {
    display: block;
    background-color: #fff;
    flex-direction: column;
    border: 0;
    text-align: left;
    margin-top: 2rem;
    padding: 2rem 1rem 1rem;
    margin-bottom: 0;
    border: 0;
  }

  main #CONTACT h2 {
    padding: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }

  main #CONTACT h3 {
    font-size: 0.9rem;
    line-height: 1.5;
    letter-spacing: 0em;
    padding: 0;
    margin-bottom: 0;
  }


  /* 下部に表示する問い合わせフォーム */
  #CONTACT .bottom-form {
    text-align: center;
    flex-direction: column;
    border-radius: 12px;
    margin: 0;
    padding: 0rem 1.5rem;
    padding-bottom: 1rem;
  }

  #CONTACT .bottom-form span {
    color: red;
    font-weight: bold;
    padding: 0rem;
    padding-right: 0rem;
  }

  .title-bold span,
  .input-area span,
  .form-category .important {
    color: red;
    font-weight: bold;
    padding: 0;
    margin: 0;
  }

  #CONTACT .bottom-form ul {
    padding: 0;
    margin: 0;
  }

  #CONTACT .bottom-form-category {
    width: 100%;
    text-align: left;
    display: inline-block;
    font-size: 0.9rem;
    margin: 1.5rem 0 1rem;
  }

  #CONTACT .bottom-form .title-bold {
    color: #333;
    font-weight: bold;
    font-size: 1rem;
    text-align: left;
    padding-bottom: 0.5rem;
  }

  #CONTACT form .bottom-form-category p {
    color: #555555;
    font-size: 0.9rem;
    font-weight: normal;
    padding-bottom: 0.2rem;
  }
  input[type="checkbox"] {
    -ms-transform: scale(1.5, 1.5);
    -webkit-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
    margin-right: 10px;
    margin-bottom: 0.5rem;
    margin-left: 1rem;
    text-align: left;
  }

  .input-area {
    margin-bottom: 0.3rem;
    text-align: left;
    flex-direction: column;
  }

  .input-area p {
    font-weight: 600;
    font-size: 1rem;
    margin: 0px 0 10px;
    letter-spacing: 0.1em;
    color: #333;
  }

  .input-area-message p {
    font-weight: 600;
    font-size: 1rem;
    margin: 10px 0 10px;
    letter-spacing: 0.1em;
    color: #333;
  }

  .input-area-message {
    margin-bottom: 20px;
    text-align: left;
  }

  .input-area input[type="text"],
  .input-area input[type="email"],
  .input-area input[type="tel"] {
    width: 100%;
    height: 50px;
    background-color: #f0f0f0;
    border-radius: 10px;
    border: 1px solid #d1d1d1;
    padding: 18px;
    font-size: 20px;
  }

  .input-area-message input[type="text"] {
    width: 100%;
    height: 100px;
    background-color: #f0f0f0;
    border-radius: 4px;
    border: 1px solid #d1d1d1;
    padding: 18px;
    font-size: 20px;
  }

  .bottom-form .input-area input[type="text"]::placeholder,
  .bottom-form .input-area input[type="email"]::placeholder,
  .bottom-form .input-area input[type="tel"]::placeholder,
  .bottom-form .input-area-message textarea::placeholder {
    font-size: 0.9rem;
  }

  ::placeholder {
    text-align: left;
    color: #ccc;
    font-size: 16px;
  }

  .bottom-form .input-area-message {
    margin-bottom: 0;
  }

  .bottom-form .input-area-message textarea {
  height: 150px;
  margin-bottom: 0;
  }

  #CONTACT .bottom-form .btn {
    width: 300px;
    margin: auto;
    padding: 1rem;
    background-color: #1f3875;
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 0.1em;
    border-radius: 50px;
    font-size: 0.9rem;
    border: none;
    box-shadow: 3px 3px 0 #bbb;
  }

  #CONTACT .bottom-form .btn:hover {
    margin: auto;
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 0.1em;
    border-radius: 50px;
    font-size: 0.9rem;
    transform: translateY(4px);
    box-shadow: none;
  }

  
/*==================================== ipad =======
# 推奨環境とセキュリティ（トップページのみに表示）
=================================================*/
.env-and-security {
  width: 100%;
  text-align: left;
  margin: 0;
  flex-direction: column
}

.recommended-env,
.Security {
  margin: 1rem;
  border-radius: 8px;
  padding: 0;
  flex-direction: column;
}

.recommended-env p,
.Security p {
  text-align-last: left;
  padding: 0.5rem 1rem 1rem;
  font-size: 0.8rem;
}

.recommended-env-box {
  padding: 0;
  margin-top: 1rem;
  font-size: 0.8rem;
  text-align-last: left;
  color: #001738;
}

.security-box {
  display: block;
  justify-content: center;
}

.security-box img {
  width: 150px;
  margin-right: 1rem;
  margin-top: 1.5rem;
}

.recommended-env-box span {
  width: 90%;
  border-left: 12px solid #001738;
  border-bottom: 1px solid #001738;
  margin-bottom: 0.5rem;
  padding-right: 0rem;
  flex-direction: column;
  padding-left: 0.5rem;
}

.env-and-security h4 {
  display: inline-block;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #001738;
}

.env-and-security p {
  display: inline-block;
  text-align: left;
  margin-top: 0rem;
  padding-bottom: 0.2rem;
  padding-left: 0;
  color: #001738;
}

/*====================================================
# FOOTER（フッター）
==================================================== */
  footer {
    width: 100%;
    text-align: center;
    padding:1.5rem 1rem 7rem;
    margin-right: 0%;
    border-top-left-radius: 12vw;
    border-top-right-radius: 12vw;
  }

  footer .page-footer {
    width: 100%;
    bottom: 0;
    text-align: center;
    padding: 1rem 0.5rem 0rem;
  }

  footer .footer-contents {
    padding: 0.5rem 0 0;
    justify-content: center;
    display: block;
    text-align: left;
  }

  footer ul {
    text-decoration: none;
    list-style: none;
    display: inline-block;
    text-align-last: left;
    vertical-align: text-top;
    margin-right: 1rem;
    margin-bottom: 0rem;
    padding-bottom: 1rem;
  }

  footer li {
    font-size: 0.9rem;
    margin-right: 0rem;
    text-align: left;
    justify-content: flex-start;
    display: inline-block;
    margin-bottom: 0;
    line-height: 1.9;
  }

  footer li a {
    font-family: "Noto Sans JP", sans-serif;
    text-decoration: none;
    font-size: 0.9rem;
  }

  footer li a:hover {
    color: #aaaaaa;
  }

  footer li p {
    font-size: 0.9rem;
  }

  footer li .span {
    font-size: 30px;
  }

  footer .footer-contents-01 li .address-01 {
    font-size: 0.95rem;
    line-height: 1;
    padding: 1rem 0 0.3rem;
  }

  footer .footer-contents-01 li .address-02 {
    font-size: 0.9rem;
  }
  footer .footer-contents-01 li .sara-tel {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    display: block;
  }

  footer .footer-contents-02 li {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
  }

  footer .footer-contents-03 li {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  footer small {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
  }

/*==============================================
- RB記事ページCSS
============================================= */
#NEWS-article-base{
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.NEWS-article-area {
  width: 95%;
  margin: 7rem auto 3rem;
  background-color: #fff;
  border: 1px solid #001738;
  text-align: left;
  padding: 1rem;
}

.NEWS-article-area .date-and-category{
  display: flex;
  gap: 0.9rem;
}

.NEWS-article-area .date,
.NEWS-article-area .category{
  font-size: 0.9rem;
  color: #222;
  margin-bottom: 0.5rem;
}

.NEWS-article-area .category span {
  border: 2px solid #edad0b;
  padding: 3px 5px;
  margin: 0 3px;
  border-radius: 8px;
}

.NEWS-article-area .title {
  font-size: 1.3rem;
  color: #222;
  font-weight: 700;
  border-bottom: 1px solid #bbb;
  padding: 1rem 0;
}

.NEWS-article-area .article-main {

  padding: 2rem 0rem;
}

.NEWS-article-area p {
  color: #222;
  font-size: 0.9rem;
}

.NEWS-article-area a {
text-decoration: none;
color: #001738;
font-size: 1rem;
transition: color 0.3s;
}

.NEWS-article-area a:hover {
  color: #bbb;
}

.NEWS-article-area img.site-dummy {
  width: 100%;
  border: 1px solid #bbb;
  margin: 0.5rem auto;
}

.NEWS-article-area a.new-site-url {
  color: #1460a7;
}

}



/*=================================================
- レスポンシブ SP
=================================================*/
@media screen and (max-width: 390px) {
  header,
  .announcement-bar,
  main,
  footer {
    width: 100%;
  }

  html,
  body {
    height: 100%;
    margin: 0;
  }

/*============================================== PC
- 上部に表示するお知らせバー
=================================================*/
body .announcement-bar {
  padding: 10px 20px;
  font-size: 0.8rem;
  text-align: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  font-weight: bold;
}

body .announcement-bar.visible {
  display: block;
}

/* お知らせバーが表示されている場合、ヘッダー位置を調整 */
.page-header.announcement-visible {
  padding: 3.8rem 0.5rem 1.8rem;
}

  body header {
    justify-content: space-between;
    margin-right: 0%;
  }

  body .page-header {
    width: 100%;
    height:60px;
    background-color: #ffffff;
  }

  body .page-header img {
    max-width: 100%;
    width: 200px;
  }

  .page-header.announcement-visible {
    height: 90px;
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
  }

  /* ipad / SP ナビを表示 */
  .nav_toggle,
  .nav i,
  .nav-ipad {
    display: block;
  }

  /* PCナビを非表示 */
  header .PC-nav,
  header .nav,
  .side-form {
    display: none;
  }

  header li {
    margin-right: 3rem;
    text-align: center;
    background-color: none;
    position: relative;
    font-weight: bold;
  }

  header .hamburger-menu {
    display: flex;
  }

  .open-menu {
    display: none;
    background-color: #fff;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    text-align: center;
    font-size: 1.5rem;
    padding-bottom: 3rem;
    top: 0;
    left: 0;
  }

  .open-menu.show {
    display: flex; /* ハンバーガーメニューが開いたときに表示 */
    text-align: left;
    height: 100vh;
    width: 100%;
    background-color: #ffffff;
    padding-top: 5rem;
    overflow-y: auto;
    overflow-x: hidden;
  }

 /* ハンバーガーメニューを開いた画面の詳細 */
  .open-menu {
    font-family: "Josefin Sans", sans-serif;
    display: none;
    position: fixed;
    top: 0;
    right: -100%; /* 初期位置は画面外 */
    width: 100%;
    flex-direction: column;
    font-size: 1.5rem;
    transition: right 1s ease-out;
    z-index: 2;
  }

.open-menu ul {
  text-align: center;
  margin: 0;
  width: 100%;
  padding: 2rem 1rem;
}

.open-menu li {
  text-align: left;
  width: 100%;
  padding-bottom: 0.5rem;
  border-bottom: 1px dotted #666666;
}

.open-menu li a {
  text-decoration: none;
  color: #353535;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
  display: flex;  /* フレックスボックスを適用 */
  justify-content: space-between;  /* テキストと矢印を左右に配置 */
  align-items: center;  /* 垂直方向のセンタリング */
  position: relative; /* 右矢印を相対的に配置 */
}

.open-menu li a span {
  margin-left: 0.5rem;  /* 文字と矢印の間に少しスペースを追加 */
}

.open-menu li a::after {
  content: '';
width: 0;
height: 0;
border-top: none;
border-bottom: none;
border-left: none;
position: absolute;
right: 1rem;
top: 50%;
transform: translateY(-50%);/}

.open-menu .open-menu-button {
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 0 1.3rem;
}

.open-menu .open-menu-button span{
  color: #fff;
}

.open-menu .login-button {
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  box-shadow: 3px 3px 0px #bbbbbb;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  padding: 1rem 1.4rem 1rem;
  border-radius: 20px;
}

.open-menu .contact-button {
  display: inline-block;
  background-color: #1f3875;
  box-shadow: 3px 3px 0px #bbbbbb;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  padding: 1rem 1.4rem 1rem;
  border-radius: 20px;
}

.open-menu span {
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  flex-direction: column;
  color: #696969;
  font-weight: normal;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.button {
  font-size: 1rem;
}


/*=====================================================
- トップページ
==================================================== */
  main {
    padding-top: 0;
  }

  main #TOPPAGE {
    height: 0;
    min-height: 670px;
    margin-top: 1.3rem;
    margin-bottom: 0.5rem;
    background-color: #1f3875;
    border-end-start-radius: 15vw;
    border-end-end-radius: 15vw;
    box-shadow: 4px 4px 0px #bbbbbb;
    position: relative;
    background-position: center;
    background-size: 80%;
    background-position: right bottom;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateY(-130px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  }

  #TOPPAGE.show{
    opacity: 1;
    transform: translateX(0);
}

  main #TOPPAGE h1 {
    font-family: "Noto Sans JP", sans-serif;
    width: 100%;
    color: #fff;
    text-shadow: 2px 2px 3px rgba(39, 39, 39, 0.3); /* 軽い影 */
    padding-top: 6.5rem;
    padding-left: 0;
    padding-right: 0;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 1.3rem;
    line-height: 1.8;
  }

  main #TOPPAGE h2 img {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    vertical-align: middle;
  }

  main #TOPPAGE h2 {
    color: #fff;
    text-shadow: 2px 2px 3px rgba(39, 39, 39, 0.3);
    padding-top: 1rem;
    padding-left: 0.5rem;
    text-align: left;
    font-weight: bold;
    font-size: 0.9rem;
  }

  main #TOPPAGE h2 span {
    border: 3px solid #1f3875;
    font-size: 0.9rem;
    color: #1f3875;
    font-weight: bold;
    padding: 0 0.3rem;
    margin-bottom: 0.3rem;
    display: inline-block;
    font-size: 0.9rem;
  }

  main #TOPPAGE .title-container {
    position: relative;
    z-index: 99;
  }

  main #TOPPAGE .english-title {
    font-family: "Noto Sans JP", sans-serif;
    position: absolute;
    top: 20%;
    left: 45%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    letter-spacing: 0.05em;
    z-index: 1;
    font-weight: bold;
    color: #ffffff23;
    text-align: left;
    width: 90%;
  }

  main #TOPPAGE .english-title span {
    font-size: 5.2rem;
  }

  /* スクロール */
  .scroll {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: #fff;
    position: fixed; /* ビューポートに対して固定 */
    text-align: center;
    left: 18%;
    bottom: 15vh;
    transform: translateX(-80%);
  }

  /* 矢印のアニメーション部分 */
  .scroll::before {
    animation: scroll 2s infinite;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    content: "";
    height: 10px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    bottom: -5px;
    width: 10px;
    text-align: left;
  }

  /* 矢印のアニメーション */
  @keyframes scroll {
    0% {
      opacity: 0;
      transform: rotate(-45deg) translate(0, 0);
    }
    40% {
      opacity: 1;
    }
    50% {
      opacity: 0;
      transform: rotate(-45deg) translate(-15px, 15px);
    }
    100% {
      opacity: 0;
    }
  }

  
main .fixed-button-class {
  position: fixed;
  width: 350px;
  height: 60px;
  bottom: 15px; /* 最初は画面外に配置 */
  left: 0;
  right: 0;
  margin: auto;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #333;
  /* border: 3px solid #edad0b; */
  /* box-shadow: 2px 2px 0 #9e9479; */
  border-radius: 15vw;
  font-size: 1rem;
  font-weight: bold;
  flex-direction: column;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
}

/* 限定のバッジ */
main .cta-badge {
  position: absolute;
  top: -18px;
  left:-12px;
  width: 130px;
  height: 30px;
  padding: 2px 0;
  /* background-color: #1d9dac; */
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  clip-path: polygon(
    0% 0%, 92% 0%, 85% 50%, 92% 100%, 0% 100%, 8% 50%
  );
  transform: rotate(-15deg); /* 左に傾ける */
  display: flex; /* Flexbox を有効化 */
  justify-content: center; /* 水平方向の中央寄せ */
  align-items: center; /* 垂直方向の中央寄せ */
  text-align: center;
  padding-right: 0.6rem;
  padding-bottom: 0.3rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fixed-button-class.show {
  opacity: 1;
  visibility: visible;
}

/* ボタンが表示されるとき、バッジも一緒に表示 */
.fixed-button-class.show .cta-badge {
  opacity: 1;
  visibility: visible;
}


/*=====================================
- コンテンツ共通部分
=================================================*/
  main #FEATURE,
  main #FUNCTION,
  main #PRICE,
  main #CONTACT,
  main #INFORMATION {
    color: #222;
    width: 100%;
    height: auto;
    max-width: 100%;
    scroll-margin-top: 120px;
  }
  main #FUNCTION span,
  main #CONTACT span {
    writing-mode: vertical-rl;
    font-size: 0.8rem;
  }

  main #PRICE h2,
  main #PRICE span{
    color: #222;
  }

  #CONTACT {
    display: none;
  }

/*======================================
- CTAボタン - PCでは非表示
=================================================*/
  .CTA-BUTTON {
    display: block;
    background-color: #edad0b;
    box-shadow: 2px 2px 0px 0px #7a7a7a;
    border-radius: 50px;
    font-size: 1rem;
    margin: 2rem auto 1rem;
    width: 300px;
    height: auto;
    overflow: hidden;
  }

  .CTA-BUTTON a {
      text-decoration: none;
      display: block;
      height: 100%;
      text-align: center;
      cursor: pointer;
      color: #fff;
      letter-spacing: 0.1em;
      font-size: 1rem;
      font-weight: bold;
      padding: 0.8rem 0.5rem;
      box-sizing: border-box;
      transition: all 0.3s;
    }

    .CTA-BUTTON:hover {
      box-shadow: none;
      transform: scale(0.99, 0.99) translateY(2px);
      background-color: #edad0b;
    }


/*=================================================
# FEATURE
=================================================*/
main #FEATURE {
  padding: 2rem 1rem;
}

main #FEATURE h2 {
  font-size: 1.1rem;
  letter-spacing: 0em;
  color: #222;
  padding: 0rem;
}

main #FEATURE .reason-title {
  display: block;
  width: 100%;
  background-color: #1f3875;
  color: #fff;
  border-radius: 10vw;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 2rem auto;
  padding: 1rem 0;
}

main #FEATURE .reason-box {
  width: 100%;
}

main #FEATURE .reason-box ul{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.5rem;
  margin: 0 auto;
  padding: 0rem;
  width: 100%;
}

main #FEATURE .reason-box li{
  width: 100%;
  flex-direction: column;
  padding: 0rem 0.5rem;
}

main #FEATURE .reason-box li h3{
  color: #333;
  text-shadow: 2px 2px #ececec;
  font-size: 1.3rem;
  height: 40px;
  text-align: left;
  padding-left: 0;
  font-weight: 700;
}

main #FEATURE .reason-box .reason-text{
  width: 100%;
  height: auto;
  color: #222;
  font-size: 1rem;
  margin: 2rem 0;
  padding: 0;
  line-height: 1.7;
  text-align: left;
  font-weight: 500;
}

main #FEATURE .reason-box .reason-text span {
  color: #FF4D2D;
  font-weight: 700;
  font-size: 1rem;
}

main #FEATURE .reason-box .reason-img {
  width: 85%;
}

/*=================================================
# FUNCTION（主な機能）
=================================================*/

/* モーダル */
#MODAL {
  display: none;
  z-index: 0;
  font-size: 1rem;
}

#modal-open {
display: none;
color: #cc0000;
display: block;
}

/* モーダル コンテンツエリア */
#modal-main-1,
#modal-main-2 ,
#modal-main-3 ,
#modal-main-4 ,
#modal-main-5 ,
#modal-main-6 ,
#modal-main-7 ,
#modal-main-8 ,
#modal-main-9 ,
#modal-main-10 ,
#modal-main-11 ,
#modal-main-12 ,
#modal-main-13 ,
#modal-main-14 ,
#modal-main-15 ,
#modal-main-16 {
  display: none;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  color: #ffffff;
  position:fixed;
  z-index: 99;
  overflow: visible; /* 必要に応じて指定 */
  position: fixed;
  justify-content: center; /* 水平方向の中央寄せ */
  align-items: center;    /* 垂直方向の中央寄せ */
  padding: 1rem;
  
}

#modal-main-1 p.feature-datail ,
#modal-main-2 p.feature-datail ,
#modal-main-3 p.feature-datail ,
#modal-main-4 p.feature-datail ,
#modal-main-5 p.feature-datail ,
#modal-main-6 p.feature-datail ,
#modal-main-7 p.feature-datail ,
#modal-main-8 p.feature-datail ,
#modal-main-9 p.feature-datail ,
#modal-main-10 p.feature-datail ,
#modal-main-11 p.feature-datail ,
#modal-main-12 p.feature-datail ,
#modal-main-13 p.feature-datail ,
#modal-main-14 p.feature-datail ,
#modal-main-15 p.feature-datail ,
#modal-main-16 p.feature-datail {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #ffffff;
}

#modal-main-1 img,
#modal-main-2 img,
#modal-main-3 img,
/* #modal-main-4 img, */
#modal-main-5 img,
#modal-main-6 img,
#modal-main-7 img,
#modal-main-8 img,
#modal-main-9 img,
#modal-main-10 img,
#modal-main-11 img,
/* #modal-main-12 img, */
#modal-main-13 img{
/* #modal-main-14 img */
/* #modal-main-15 img, */
/* #modal-main-16 img */
  width: 85%;
}

.modal-bottom-area {
  margin: 0;
  padding: 2%;
}

.modal-bottom-area p.on-btn{
  display: block;
  font-size: 0.9rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.5rem;
}

.modal-bottom-area .modal-contact-button a{
  display: inline-block;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 0.8rem 2.5rem 0.8rem;
  border-radius: 10vw;
}

/* ×ボタン */
#modal-close-1,
#modal-close-2,
#modal-close-3,
#modal-close-4,
#modal-close-5,
#modal-close-6,
#modal-close-7,
#modal-close-8,
#modal-close-9,
#modal-close-10,
#modal-close-11,
#modal-close-12,
#modal-close-13,
#modal-close-14,
#modal-close-15,
#modal-close-16{
  position: fixed;
  top: 0%;
  right: 0%;
  cursor: pointer;
  font-size: 1.7rem;
  color: #333;
  padding: 1rem 1.3rem 1rem;
  border-bottom-left-radius: 5vw;
  background-color: #fff;
}

#modal-close:hover {
  color: gray;
}

/* モーダル終わり */
  #FUNCTION {
    background-color: #1f3875;
    box-shadow: 4px 4px 0px #bbbbbb;
    padding: 1rem 1rem 1rem;
    text-align: center;
    border-top-right-radius: 15vw;
    opacity: 0;
    transform: translateX(-200px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  }

  .parent-wrapper {
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1rem;
  }

  .parent-box1,
  .parent-box2,
  .parent-box3,
  .parent-box4 {
    width: 98%;
    margin: auto;
    flex: 1 1 20%;
    padding: 1rem 0.5rem 1rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-sizing: border-box;
  }

  .box-header h4 {
    font-size: 1.3rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 0rem;
    letter-spacing: 0.1em;
    color: #001738;
  }

  .box-header p {
    font-size: 0.8rem;
    font-weight: normal;
    margin: 0.5rem 0 0.5rem;
  }

  .box-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-top: 1rem;
  }

  /* SPではホバーでの見た目の変化もなくす */
  .item {
    width: 95%;
    margin: auto;
    padding: 0.5rem 0.5rem;
    text-align: center;
    position: relative;
  }

  .item:hover {
    padding: 0.5rem 0.5rem;
    background-color: #d9edf1;
  }

  /* ポップアップ非表示 */
  .popup,
  .popup-left,
  .popup img,
  .popup-left img,
  .popup::before ,
  .popup-left::before,
  .item:hover .popup,
  .item:hover .popup-left {
    display: none;
  }

  .item .title {
    color: #001738;
    font-size: 0.85rem;
    font-weight: normal;
  }

  .item p {
    font-size: 0.8rem;
    color: #001738;
    margin: 0;
  }
  

/*=====================================================
# PRICE（料金）
==================================================== */
  #PRICE {
    padding: 2rem 0 4rem;
    margin-bottom: 1rem;
    height: auto;
    background-color: #fff;
    box-shadow: 4px 4px 0px #bbbbbb;
    border-top-right-radius: 15vw;
    opacity: 0;
    transform: translateX(-200px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    width: 100%;
  }

  #PRICE.show {
    padding: 1rem 1rem 2rem; 
  }

  #PRICE .price-text-01 {
    display: none;
  }

  #PRICE .price-text-01-SP {
    display: block;
    padding: 0.5rem 0;
    letter-spacing: 0;
    font-size: 1.1rem;
    justify-content: flex-start;
    text-align: left;
    font-weight: 700;
  }
  
#PRICE .price-text-01-SP .point-text {
  display: inline;
  font-size: 1.2rem;
  color: #f45511;
  border-left: 0;
  writing-mode:horizontal-tb;
  font-weight: bold;
  padding: 0rem;
}

#PRICE .price-text-02 {
  color: #222;
  font-size: 0.9rem;
  text-align: left;
  line-height: 2;
  margin-bottom: 1rem;
}

#PRICE span.point {
  color: #222;
}

#PRICE span.kome {
  border-left: 0;
  padding-right: 0;
  font-weight: 700;
}

#PRICE .pricing-table {
  display: none;
  border-collapse: collapse;
  width: 90%;
  table-layout: fixed;
  margin: auto;
}

  #PRICE .price-text-01 .number {
    padding: 0 0.2rem;
    font-size: 1rem;
    letter-spacing: 0;
  }

  #PRICE .price-text-02 {
    padding: 0;
    margin-top: 0;
    font-size: 0.9rem;
  }


  #PRICE h2,
  #PRICE h3 {
    color: #1f3875;
  }

  #PRICE span {
    color: #1f3875;
    padding-left: 0;
  }

  #PRICE span.kome {
    border-left: 0;
    padding-left: 0;
    padding-right: 0;
    font-weight: 700;
}

  #PRICE .pricing-table {
    border-collapse: collapse;
    width: 95%;
    table-layout: fixed;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    margin: 0 auto;
    display: none;
  }

  #PRICE th,
  #PRICE td {
    border: 1px solid #b4b4b4;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    height: 50px;
  }

  /* 項目セル */
  #PRICE th:first-child,
  #PRICE td:first-child {
    border: none;
    text-align: left;
    padding-left: 1rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    border: 1px solid #b4b4b4;
    border-top: none;
    border-right: none;
    border-left: none;
  }

  #PRICE td:first-child {
    border-left: 1px solid #b4b4b4;
  }

  #PRICE th {
    font-weight: bold;
  }

  #PRICE th:first-child {
    background-color: transparent;
    min-width: 150px; /* 最小幅を設定（必要に応じて調整） */
  }

  /* Aのヘッダー */
  #PRICE th.company-name {
    background-color: #edad0b;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border: none;
    min-width: 200px;
  }

  /* B・Cのヘッダー */
  #PRICE th.company-name + th {
    background-color: #333;
    color: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border: none;
    min-width: 200px;
  }

  #PRICE td {
    background-color: #fff;
    font-weight: bold;
  }

  #PRICE .highlight td {
    border: 2px solid #edad0b;
    font-size: 1.2rem;
  }

  #PRICE tr:nth-child(even) td {
    background-color: #f7f7f7;
  }

  #PRICE .highlight {
    background-color: #ffffff;
    border-left: 3px solid #edad0b;
    border-right: 3px solid #edad0b;
    border-bottom: 3px solid #edad0b;
    font-weight: bold;
    color: #edad0b;
  }

  #PRICE .company-name {
    font-weight: bold;
  }

/*==================================== SP（390px）
# INFORMATION（お知らせ・最新情報）
=================================================*/
  main #INFORMATION {
    background-color: #1f3875;
    padding: 1rem 1rem 2rem;
    border: 1px solid #001738;
    border-top-right-radius: 15vw;
    box-shadow: 4px 4px 0px #bbbbbb;
    margin-top: 3rem;
    transform: translateX(-200px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    width: 75%;
    margin-left: 0rem;
  }

  main #INFORMATION h2 {
    color: #fff;
    text-align: left;
    font-size: 1.5rem;
    width: 100%;
    display: block;
    text-align: 0;
    margin-bottom: 1rem;
  }

  main #INFORMATION h3 {
    color: #fff;
    font-size: 0.9rem;
    padding: 0rem;
  }

  main #INFORMATION span {
    color: #fff;
    writing-mode: vertical-rl;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    padding-right: 1.5rem;
    padding-left: 0;
  }

  #INFORMATION .info-scroll {
    max-height: 260px;
    width: 100%;
    margin: auto;
    margin-top: 1rem;
    overflow-y: auto; /* 縦方向のスクロールを有効にする */
  }

  .info-scroll::-webkit-scrollbar {
    width: 10px;
  }

  .info-scroll::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 5px;
  }

  .info-scroll::-webkit-scrollbar-track {
    background-color: #f0f0f0;
  }

  #INFORMATION .info-content {
    border-bottom: 1px solid #bbb;
    width: 95%;
    display: flex;
  }

  .info-content a {
    flex-wrap: wrap; /* スマホでは要素を折り返し */
  }

  .info-content .info-date,
  .info-content .info-category-new {
    flex-basis: auto;
    margin-bottom: 0; /* 上下の余白は調整 */
  }

  .info-content .info-title {
    flex-basis: 100%; /* タイトルを新しい行に */
    margin-top: 0.5rem;
    font-size: 1rem;
  }

  #INFORMATION .info-date {
    color: #222;
    margin-right: 0.5rem;
    font-size: 0.9rem;
  }

  #INFORMATION .info-category-new {
    color: #fff;
    margin-left: 1rem;
    background-color: #238ab9;
    padding: 0rem 0.3rem;
    font-size: 0.9rem;
  }

  #INFORMATION .info-category-release {
    color: #fff;
    margin-right: 0.5rem;
    background-color: #e9a11c;
    padding: 0rem 0.3rem;
    vertical-align: middle;
    font-size: 0.9rem;
  }

  #INFORMATION .info-category-notice {
    color: #fff;
    margin-right: 1rem;
    background-color: #239e65;
    padding: 0rem 0.3rem;
    vertical-align: middle;
    font-size: 0.9rem;
  }

  #INFORMATION .info-title {
    color: #222;
    padding: 0;
    font-size: 0.9rem;
  }

  #INFORMATION .view-more {
    text-align: center;
    margin: auto;
    margin-top: 2rem;
    width: 350px;
  }

  #INFORMATION .view-more a {
    display: inline-block;
    width: 330px;
    margin: 0;
    font-size: 1rem;
  }

  #INFORMATION .view-more a:hover {
    box-shadow: none;
    transform: scale(0.99, 0.99) translateY(2px);
    background-color: #fff;
  }

/*=================================================
# INFORMATION（お知らせ・最新情報一覧ページ）
=================================================*/
  #INFORMATION-datail-page {
    background-color: #fff;
    border: 1px solid #001738;
    padding: 5% 3%;
    margin: 23% auto 8%;
    width: 94%;
  }

  main #INFORMATION-datail-page h2 {
    color: #001738;
    font-size: 1.5rem;
    text-align: left;
    display: block;
    text-align: 0;
    margin-bottom: 1rem;
    margin-left: 0.5rem;
  }

  main #INFORMATION-datail-page span {
    color: #001738;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    padding-right: 3rem;
  }

  #INFORMATION-datail-page .info-content {
    width: 100%;
    margin: 0;
    flex-direction: column;
    font-size: 0.9rem;
    display: inline-block;
    text-align: left;
  }

  #INFORMATION-datail-page .info-content a {
    width: 100%;
    margin: auto;
    display: flex;
    font-size: 0.9rem;
    align-items: center;
    margin: 0;
    /* padding: 0.8rem 0.5rem; */
    border-bottom: 1px solid #bbb;
    vertical-align: middle;
    align-items: center;
  }

  #INFORMATION-datail-page .info-content a:hover {
    color: #5f5f5f;
  }

  #INFORMATION-datail-page .info-date {
    color: #292929;
    margin-right: 1rem;
    font-weight: bold;
    font-size: 0.8rem;
    padding-left: 0;
    margin-right: 0.2rem;
  }

  #INFORMATION-datail-page .info-category-new {
    color: #fff;
    margin-right: 0;
    background-color: #238ab9;
    vertical-align: middle;
    text-align: center;
    letter-spacing: 0;
    font-size: 0.8rem;
  }

  #INFORMATION-datail-page .info-category-release {
    color: #fff;
    margin-right: 0;
    background-color: #e9a11c;
    padding: 0rem 0.2rem;
    vertical-align: middle;
    text-align: center;
    font-size: 0.8rem;
  }

  #INFORMATION-datail-page .info-category-notice {
    color: #fff;
    margin-right: 0;
    background-color: #239e65;
    padding: 0rem 0.2rem;
    vertical-align: middle;
    text-align: center;
    font-size: 0.8rem;
  }

  #INFORMATION-datail-page .info-title {
    color: #292929;
    font-weight: normal;
    font-size: 0.8rem;
    padding-top: 0.5rem;
  }

  #INFORMATION-datail-page p {
    color: #292929;
    font-size: 0.9rem;
    text-align: left;
    margin-top: 2rem;
  }

  #INFORMATION-datail-page .back-button {
    color: #353535;
    font-size: 1rem;
    text-align: left;
    margin-top: 4rem;
  }

  #INFORMATION-datail-page .back-button a:hover {
    color: #5f5f5f;
  }

  #INFORMATION-datail-page a {
    color: #001738;
    text-decoration: none;
  }

  #CONTACT .bottom-form {
  padding: 0 0.5rem;
  }

  #CONTACT .bottom-form ul {
    padding: 0rem;
    margin: 0;
  }

  #CONTACT .bottom-form .title-bold {
    margin-bottom: 0rem;
    font-size: 0.9rem;
  }

  #CONTACT .bottom-form label {
    font-size: 0.8rem;
  }

  .input-area p {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
  }

  .input-area input[type="text"],
  .input-area input[type="email"],
   .input-area input[type="tel"] {
    height: 40px;
  }

  .bottom-form .input-area-message p {
    margin-bottom: 0;
    font-size: 0.9rem;
  }

  
/*==================================== SP（390px）
# 推奨環境とセキュリティ（トップページのみに表示）
=================================================*/

  .env-and-security {
    text-align: center;
    margin-top: 0.5rem;
    display: flex;
    padding: 0rem;
    margin-bottom: 1.5rem;
  }

  .recommended-env {
    margin: 1rem;
    border-radius: 8px;
    padding: 0;
  }

  .recommended-env p{
    text-align-last: left;
    padding: 0.5rem 0rem 1rem;
    font-size: 0.8rem;
    width: 100%;
  }

  .recommended-env-box {
    padding: 0;
    font-size: 0.8rem;
    text-align-last: left;
    color: #001738;
  }

  .recommended-env-box span {
    width: 100%;
    border-left: 12px solid #333;
    border-bottom: 1px solid #001738;
    margin-bottom: 0.5rem;
    padding-right: 1rem;
    display: block;
    padding-left: 0.5rem;
    padding-bottom: 0.3rem;
    text-align: left;
    font-size: 0.8rem;
  }

  .env-and-security h4 {
    display: inline-block;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 0;
  }

  .env-and-security p {
    display: inline-block;
    text-align: left;
    margin-top: 0rem;
    padding-bottom: 0.2rem;
    font-size: 0.8rem;
  }

/*=====================================================
# FOOTER（フッター）
==================================================== */
  footer {
    width: 100%;
    text-align: center;
    padding: 3rem 1rem;
    padding-bottom: 7rem;
    margin-right: 0%;
    border-top-left-radius: 12vw;
    border-top-right-radius: 12vw;
  }

  footer .page-footer {
    width: 100%;
    bottom: 0;
    text-align: center;
    padding: 1rem 0.5rem 0rem;
  }

  footer .footer-contents {
    padding: 0.5rem 0;
    justify-content: center;
    display: block;
    text-align: left;
  }

  footer ul {
    text-decoration: none;
    list-style: none;
    display: inline-block;
    text-align-last: left;
    vertical-align: text-top;
    margin-right: 0rem;
    margin-bottom: 0;
  }

  footer li {
    margin-right: 0rem;
    text-align: left;
    justify-content: flex-start;
    display: inline-block;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 5px;
  }

  footer li a {
    font-family: "Noto sans JP" , sans-serif;
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
  }

  footer li a:hover {
    color: #aaaaaa;
  }

  footer li p {
    font-size: 0.9rem;
  }

  footer li .span {
    font-size: 0.9rem;
  }

  footer ul.footer-contents-01 {
    margin-right: 0;
  }

  footer .footer-contents-01 li .address-01 {
    font-size: 0.9rem;
  }

  footer .footer-contents-01 li .address-02 {
    font-size: 0.9rem;
  }
  footer .footer-contents-01 li .sara-tel {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    width: 100%;
  }

  footer .footer-contents-02 li {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    margin-bottom: 0;
  }

  footer .footer-contents-03 li {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 0;
  }

  footer small {
    font-family: sans-serif;
    font-size: 0.75rem;
  }
}