@charset "utf-8";
.pay_attension {
  text-align: center;
  margin-top: 4rem;
  font-size: 120%;
}
#countdown {
  text-align: center;
  padding: 12px;
  background: rgb(33, 33, 33);
  background: linear-gradient(0deg, rgba(33, 33, 33, 1) 0%, rgba(24, f24, 24, 1) 100%);
  color: var(--yellow);
  font-weight: bold;
  font-size: 110%;
}
#countdown span {
  font-size: 110%;
}
@media (min-width:768px) {
  #countdown {
    font-size: 120%;
  }
  #countdown span {
    font-size: 120%;
  }
}
/*==========================
floating-button
=============================*/
#floating-button {
  display: none;
  position: fixed;
  bottom: 5px;
  right: 0px;
  z-index: 1000;
  opacity: 0;
  left: 0;
  text-align: center;
  transition: opacity 0.5s ease;
}
#floating-button button {
  width: 90%;
  text-align: center;
  background-color: #de2f00;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.5);
  max-width: 650px;
  font-weight: bold;
  cursor: pointer;
  font-size: 130%;
  position: relative;
}
#floating-button button::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50vh;
  background-color: #041b2d;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 1
}
#floating-button button::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: white;
  z-index: 2;
  font-size: 14px;
}
/*========================
logo
===========================*/
/*
#logo_area {
  padding: 16px 0 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;

  min-height: 130px;
            transform: translateY(-100%);
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
    #logo_area.slide-in {
            transform: translateY(0);
  box-shadow: 0 5px 5px 0px rgba(0, 0, 0, 0.2);
        }
*/
#logo_area {
  padding: 0px 0 0;
  width: 100%;
  z-index: 1000;
  background: #005856;
  background: linear-gradient(82deg, rgba(0, 88, 86, 1) 0%, rgba(20, 117, 114, 1) 100%);
}
.logo {
  width: 25%;
  max-width: 150px;
}
.nav_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.navigation_menu {
  display: flex;
  flex-wrap: wrap;
  border-top: solid 1px #aaa;
}
.navigation_menu li {
  width: 33.33333%; /* 未対応ブラウザ用フォールバック */
  width: -webkit-calc(100% / 3);
  width: calc(100% / 3);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  font-size: 14px;
  border-right: solid 1px #aaa;
/*  background-color: cornsilk;*/
  transition: 0.2s all ease;
color:white;
}
.navigation_menu li:nth-child(1), .navigation_menu li:nth-child(2), .navigation_menu li:nth-child(3) {
  border-bottom: solid 1px #aaa;
}
.navigation_menu li:last-child, .navigation_menu li:nth-child(3) {
  border-right: none;
}
.nav_btn {
  width: 90%;
  text-align: center;
  background-color: #e84e4e;
  color: white;
  border: none;
  padding: 4px;
  border-radius: 4px;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.5);
  max-width: 120px;
  font-weight: bold;
  cursor: pointer;
}
.navigation_menu li:hover {
  text-decoration: underline;
  color: rgb(226, 191, 51);
}
@media (min-width:768px) {
  #logo_area {
    padding: 16px 0 8px;
    min-height: 80px;
  }
  .nav_flex {
    margin-bottom: 0;
  }
  .nav_container {
    width: 70%;
  }
  .navigation_menu {
    display: block;
    border-top: none;
    text-align: right;
  }
  .navigation_menu li {
    width: calc(90% / 7);
    text-align: center;
    background-color: transparent;
    font-size: 16px;
  }
  .navigation_menu li:nth-child(1), .navigation_menu li:nth-child(2), .navigation_menu li:nth-child(3) {
    border-bottom: none;
  }
  .navigation_menu li:nth-child(3) {
    border-right: solid 1px #aaa;
  }
  .nav_btn {
    padding: 4px 8px;
    max-width: 150px;
    font-size: 18px;
  }
}
/*===========================*/
#fv_area {
  margin-top: 130px;
}
#fv_area.hf {
  margin-top: 0;
}
@media (min-width:768px) {
  #fv_area {
    margin-top: 80px;
  }
}
.head_img {
  position: relative;
  height: 100%;
}
.head_img img {
  display: block;
  width: 100%;
}
.head_img .main_logo img {
  display: inline;
  width: 80%;
  max-width: 640px;
  vertical-align: middle;
}
.head_text {
  position: absolute;
  z-index: 10;
  text-align: center;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  font-size: clamp(1.125rem, 0.622rem + 2.15vw, 2.5rem)
}
.head_text h1 {
  margin-top: 20px;
}
.head_text h2 {
  font-size: 110%;
  margin-top: 12px;
}
.head_text span {
  background: #005856;
  background: linear-gradient(82deg, rgba(0, 88, 86, 1) 0%, rgba(20, 117, 114, 1) 100%);
  padding: 4px 8px;
  border-radius: 4px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  color: white;
}
.head_text h1 span {
  padding: 20px 16px;
}
@media (min-width:768px) {
  .head_text {
    transform: translateY(10%);
  }
  .head_text h2 {
    margin-top: 12px;
  }
  .head_text span {
    padding: 4px 20px;
  }
}
@media (min-width:1024px) {
  .head_text {
    transform: translateY(-0%);
  }
  .head_text h2 {
    margin-top: 24px;
  }
  .head_text span {
    padding: 4px 20px;
  }
}
/*=========================
banner
========================*/
#banner_area {
  background: rgb(250, 250, 250);
  background: linear-gradient(180deg, rgba(250, 250, 250, 1) 0%, rgba(236, 236, 236, 1) 100%);
}
.banner {
  text-align: center;
}
.banner img {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
/*=======================
read
===================*/
#read {
  text-align: center;
  /* font-family: "Noto Serif Jp", serif;*/
  background-color: #f7f7f1 !important;
}
#read .title {
  font-size: clamp(1.375rem, 0.819rem + 2.54vw, 2.375rem);
  position: relative;
  padding-bottom: 24px;
}
#read .title span {
  color: #de2f00;
}
#read .title::before {
  content: "";
  width: 2px;
  height: 40px;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #ccc;
}
.satisfaction-container {
  background-color: var(--white);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
}
.satisfaction-container h3 {
  font-size: clamp(1.375rem, 1.143rem + 0.99vw, 1.75rem);
  text-align: center;
  margin-bottom: 12px;
}
.satisfaction-img {
  width: 80%;
  max-width: 440px;
  margin: 0 auto;
}
.satisfaction-img.border-under {
  border-bottom: solid 1px #ccc;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.satisfaction-container ul {
  text-align: center;
  display: inline-block;
}
.satisfaction-container ul li {
  position: relative;
  text-align: left;
  background: #005856;
  background: linear-gradient(82deg, rgba(0, 88, 86, 1) 0%, rgba(20, 117, 114, 1) 100%);
  color: var(--white);
  padding: 4px 24px 4px 36px;
  border-radius: 4px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.12);
  margin-top: 8px;
}
.satisfaction-container ul li::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  background: center /contain url("./icon_check_white.png") no-repeat;
}
#read .satisfaction-container p{
	margin-bottom: 0;
}
#read .satisfaction-container p.caution{
	font-size: 60%;
}
  #read p {
     margin-bottom: 40px;
  }
@media (min-width:768px) {
  #read p {
    font-size: 110%;
	  margin-bottom: 60px;
  }
  #read .title::before {
    height: 50px;
    bottom: -36px;
  }
	.satisfaction-flex{
		display: flex;
		align-items: flex-end;
		justify-content: space-around;
		margin-bottom: 24px;
	}
	.satisfaction-img.border-under {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
	.satisfaction-img {
  width: 60%;
}
}
/*==================================
overview
=============================*/
#overview .title, #curriculum .title, #feature .title {
  background: #005856;
  background: linear-gradient(82deg, rgba(0, 88, 86, 1) 0%, rgba(20, 117, 114, 1) 100%);
  color: white;
  border-radius: 8px;
}
.overview_contents li {
  background-color: #F5F5DC;
  margin-bottom: 20px;
  border-radius: 4px;
  padding: 12px;
  position: relative;
}
.overview_number {
  background-color: #e0b711;
  display: inline-block;
  width: 26px;
  height: 26px;
  text-align: center;
  color: white;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
#overview .img{
	margin: 40px auto;
	max-width: 850px;
	width: 95%;
}
#overview .img.small{
	max-width: 560px;
	width: 95%;
}
.overview_img {
  display: none;
}
.overview_contents p {
  display: inline;
}
.overview_contents li:nth-child(2) {
  background-color: #f7e5c0;
}
.overview_contents li:nth-child(3) {
  background-color: #cef1f1;
  margin-bottom: 0;
}
.overview_contents li:nth-child(2) .overview_number {
  background-color: #daa05e;
}
.overview_contents li:nth-child(3) .overview_number {
  background-color: #7abbc3;
}
@media (min-width:600px) {
  .overview_contents {
    display: flex;
    justify-content: space-between;
    max-width: 840px;
    margin: 0 auto;
  }
  .overview_contents li {
    width: calc(33% - 20px);
    padding: 20px 16px;
    margin-bottom: 0;
  }
  .overview_img {
    display: block;
    width: 30%;
    max-width: 200px;
    text-align: center;
    margin: 0 auto;
  }
  .overview_contents p {
    display: block;
    text-align: center;
    margin-top: 8px;
  }
}
/*=====================
curriculum
==========================*/
#curriculum table {
  margin-bottom: 28px;
}
#curriculum table th, #curriculum table td {
  padding: 8px;
  display: block;
}
#curriculum table tr:nth-child(1) {
  background-color: #F5F5DC;
}
#curriculum table tr:nth-child(2) {
  background-color: #cef1f1;
}
#curriculum table tr:nth-child(1) th {
  background-color: #e0b711;
  font-size: 110%;
}
#curriculum table tr:nth-child(2) th {
  background-color: #7abbc3;
  font-size: 110%;
}
@media (min-width:600px) {
  #curriculum table {
    margin-bottom: 28px;
  }
  #curriculum table th {
    ;
    width: 30%;
  }
  #curriculum table th, #curriculum table td {
    display: table-cell;
    padding: 12px;
    vertical-align: middle
  }
}
.curri_box {
  margin-top: 40px;
}
.curri_img {
  text-align: left;
  max-width: 520px;
}
.curri_title {
  margin-top: 20px;
  margin-bottom: 40px;
  font-weight: bold;
  font-size: clamp(1.25rem, 0.813rem + 2vw, 2rem);
}
.sub_title {
  border-left: solid 8px #005856;
  padding: 4px;
  padding-left: 1.2rem;
  font-weight: bold;
  font-size: 120%;
  margin-bottom: 24px;
  display: inline-block;
}
.sub_title span{
  background: #005856;
  background: linear-gradient(82deg, rgba(0, 88, 86, 1) 0%, rgba(20, 117, 114, 1) 100%);
  color: white;
  border-radius: 8px;
	padding: 4px 20px;
	font-size: 120%;
}
.curri_list {
  background-color: #f9f4e2;
  padding: 12px;
  border-radius: 4px;
  margin-bottom: 28px;
}
.curri_list li {
  padding-left: 1.5rem;
  margin-bottom: 8px;
  padding-bottom: 8px;
  position: relative;
  border-bottom: solid 1px #493b08;
}
.curri_list li span {
  background-color: var(--yellow);
}
.curri_list li::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 4px;
  background: center/contain url("./icon_check.png") no-repeat;
}
.caution {
  font-size: 80%;
}
.live_box {
  margin-bottom: 40px;
}
.live_text {
  margin-bottom: 16px;
}
@media (min-width:768px) {
  .curri_box {
    padding: 0 28px;
  }
  .sub_title {
    padding: 8px;
    padding-left: 1.2rem;
    margin-bottom: 36px;
    margin-top: 40px;
  }
  .curri_list {
    padding: 32px 28px;
    margin-bottom: 40px;
  }
  .curri_list li {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  .curri_list li::before {
    width: 18px;
    height: 18px;
    top: 6px;
  }
  .live_box {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
  }
  .live_img {
    max-width: 400px;
    margin-right: 28px;
    padding-right: 28px;
    border-right: solid 1px #aaa;
  }
}
@media (min-width:980px) {
  .curri_title_box {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
  }
  .curri_title {
    margin-left: 28px;
    font-size: 120%
  }
  .curri_img {
    max-width: 380px;
  }
}
.guarantee_img {
  margin: 40px auto 0;
  max-width: 700px;
  width: 90%;
}
.guarantee_list {
  background-color: white;
  padding: 12px;
  border-radius: 4px;
  margin-top: 20px;
  border: solid 1px #999;
}
.guarantee_list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: solid 1px;
}
.guarantee_list li::before {
  content: "1.";
  position: absolute;
  left: 0;
  font-weight: bold;
}
.guarantee_list li:nth-child(2)::before {
  content: "2.";
}
.guarantee_list li:nth-child(3)::before {
  content: "3.";
}
.guarantee_list li:last-child {
  margin-bottom: 0;
}
.box {
  background-color: var(--white);
  padding: 12px;
  border-radius: 4px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
}
.title {
  font-size: min(6vw, 36px);
  text-align: center;
  font-weight: bold;
  margin-bottom: 28px;
}
.text {
  margin-bottom: 28px;
}
@media (min-width:768px) {
  .box {
    padding: 28px 40px;
  }
  .title {
    margin-bottom: 60px;
  }
  .text {
    margin-bottom: 40px;
  }
  .guarantee_img {
    margin: 80px auto 0;
  }
  .guarantee_list {
    padding: 28px;
    margin-top: 32px;
  }
  .guarantee_list li {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
}
/*=================
offer
=================*/
#offer {
  background: rgb(244, 244, 244);
  background: linear-gradient(61deg, rgba(244, 244, 244, 1) 0%, rgba(224, 224, 224, 1) 100%);
}
.img {
  text-align: center;
}
/*-----tokuten-----*/
#offer .box {
  margin-top: 40px;
}
.tokuten_box {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #aaa;
}
.tokuten_box.special {
  background: #FCFAEF;
  background: linear-gradient(82deg, rgba(252, 250, 239, 1) 0%, rgba(255, 251, 235, 1) 100%);
  padding: 12px;
  border-bottom: none;
}
/*.special .tokuten_number .member {
  background: var(--white)
}*/
.tokuten_number {
  text-align: center;
  font-size: 24px;
  color: #de2f00;
}
.tokuten_number span {
  padding: 4px 8px;
  font-weight: bold;
  border-radius: 2px;
  /*box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);*/
}
.tokuten_title {
  font-weight: bold;
  font-size: clamp(1.25rem, 0.804rem + 1.9vw, 1.875rem);
  line-height: 1.2;
  text-align: center;
}
.tokuten_title span {
  font-weight: normal;
  font-size: 70%;
  display: block;
}
.tokuten_img {
  margin: 20px auto;
  text-align: center;
  width: 40%;
}
.tokuten_img.wide{
width:65%;
}
.tokuten_img.w100 {
  width: 80%;
}
.tokuten_text_list {
  background: #f9f4e2;
  padding: 12px;
  border-radius: 4px;
  margin: 20px auto;
}
.special .tokuten_text_list {
  background: white;
}
.tokuten_text_list li {
  position: relative;
  padding-left: 1.2rem;
  padding-bottom: 8px;
  border-bottom: dotted 1px;
  margin-bottom: 8px;
}
.tokuten_text_list li:last-child {
  padding-bottom: 0;
  margin-bottom: 0px;
}
.tokuten_text_list li::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 4px;
  background: center / contain url("./icon_check.png") no-repeat;
}
.tokuten_number .member {
  display: block;
  background: #e7d8b8;
  /*  background: linear-gradient(82deg, rgba(0, 88, 86, 1) 0%, rgba(20, 117, 114, 1) 100%);*/
  color: #1c1c1c;
  box-shadow: none;
  font-size: 16px;
  margin: 8px auto 16px;
  width: 80%;
}
@media (min-width:768px) {
  .tokuten_box {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .tokuten_box.special {
    padding: 32px 40px;
  }
  .tokuten_number {
    text-align: left;
    font-size: 200%;
  }
  .tokuten_title {
    text-align: left;
    margin-bottom: 20px;
  }
  .tokuten_title span {
    margin-bottom: 4px;
  }
  .tokuten_img {
    float: right;
    margin-left: 3rem;
    margin-top: -150px;
    text-align: right;
    width: 27%;
  }
.tokuten_img.wide{
width:30%;
}
  .tokuten_img.w100 {
    width: 45%;
  }
  .tokuten_number .member {
    display: inline;
    font-size: 22px;
    margin-top: 0px;
  }
  .tokuten_title {
    margin-top: 20px;
  }
}
/*=========================
比較表
===*/
#comparison table, #comparison td, #comparison th {
  border-collapse: collapse;
  border: solid 3px #7f7f7f;
}
#comparison td, #comparison th {
  padding: 8px;
  border: solid 1px #7f7f7f;
  text-align: left;
  vertical-align: middle;
}
#comparison th {
  background: #eee;
  width: 40%;
}
#comparison .sp-only {
  display: table;
  width: 100%;
}
.comparison_offie {
  text-align: center;
  background-color: #7f7f7f;
  font-weight: bold;
  padding: 8px;
  color: white;
}
#comparison p{
font-size:110%;
text-align:center;
}
@media (min-width:768px){
#comparison p{
font-size:120%;
}
}
.mt {
  margin-top: 40px;
}
.ai.comparison_offie {
  background-color: #e8443c;
}
table.ai {
  border: solid 3px #e8443c !important;
  font-weight: bold
}
table.ai th, table.ai td {
  border: solid 1px #e8443c !important;
}
table.ai th {
  background-color: #ffeae9 !important;
}
.bg_price {
  background-color: var(--yellow) !important;
  font-size: 120%;
}
.gold.ai.comparison_offie {
  background: #005856
}
table.ai.gold {
  border: solid 3px #005856 !important;
  font-weight: bold;
}
table.ai.gold th, table.ai.gold td {
  border: solid 1px #005856 !important;
}
table.ai.gold th {
  background: #bed4d0;
  background: linear-gradient(82deg, rgba(244, 252, 255, 1) 0%, rgba(213, 242, 235, 1) 100%) !important;
}
.bg_price {
  background-color: var(--yellow) !important;
  font-size: 120%;
}
.gold .bg_price {
  background-color: transparent !important;
  color: #de2f00 !important
}
@media (min-width:768px) {
  #comparison table {
    border: none;
  }
  #comparison .sp-only {
    display: none;
  }
  #comparison table tr td:nth-child(1) {
    background-color: #efefef;
  }
  #comparison table tr:nth-child(1) td {
    text-align: center;
  }
  #comparison table tr:nth-child(1) td:nth-child(1) {
    background-color: #fff;
    border: none
  }
  #comparison table tr td {
    width: 21%;
  }
  #comparison table tr td:nth-child(1) {
    width: 16%
  }
  #comparison table tr td:nth-child(4) {
    border-right: solid 1px #e8443c;
  }
  #comparison table tr:nth-child(1) td {
    background-color: #efefef;
  }
  #comparison table tr td:nth-child(5) {
    background-color: #ffeae9;
    border: solid 1px #e8443c;
    font-weight: bold;
  }
  #comparison table tr:nth-child(1) td:nth-child(5) {
    background-color: #e8433c;
    color: white;
    border: solid 1px #e8443c;
    font-weight: bold;
  }
}
/*=====================
profile
==================*/
#profile {
  background-color: #efefef;
}
#profile.sec_pad {
  padding-bottom: 0;
}
.company_table {
  margin-bottom: 60px;
}
.company_img {
  width: 70%;
  max-width: 250px;
  margin: 20px auto 0;
}
.company_table th {
  width: 25%;
  text-align: right;
}
.company_table td, .company_table th {
  padding: 8px;
}
.pro_img01 {
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
}
.pro_img02 {
  width: 60%;
  margin: 0 auto 20px;
  max-width: 280px;
}
.pro_img01 p {
  text-align: center
}
.pro_title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 120%;
}
.kurisu_bg {
  background-color: #ddd;
  padding: 28px 0;
  margin-top: 40px;
}
@media (min-width:768px) {
  .company_table {
    display: flex;
    align-items: flex-start;
    margin-bottom: 100px;
  }
  .company_img {
    margin: 0px auto;
  }
  .company_table th {
    width: 20%;
    text-align: right;
  }
  .company_table table {
    flex: 0 0 60%;
  }

  .pro_img01 {
    margin-left: 28px;
	  float: right;
  }
  .pro_img01 p {
    text-align: center;
    width: 100%;
  }
  .pro_title {
    margin-bottom: 40px;
    font-size: 150%;
  }
  .kurisu_bg {
    padding: 48px 0;
  }
}
/*=============
footer
===================*/
footer {
  background: rgb(42, 42, 42);
  background: linear-gradient(0deg, rgba(42, 42, 42, 1) 0%, rgba(50, 50, 50, 1) 100%);
  padding: 20px 0;
  text-align: center;
  color: var(--white);
}
footer p {
  font-size: 18px;
  margin-bottom: 24px;
}
.footer_link {
  margin-bottom: 40px;
  font-size: 12px;
}
.footer_link li {
  padding-bottom: 8px;
  display: inline;
  padding: 0 8px
}
.copy {
  display: block;
  font-size: 12px;
}
/*===================
form
======================*/
.pay {
  background-color: #eaeaea;
  padding: 12px;
  border-radius: 4px;
  margin-top: 20px;
}
.pay li {
  margin-bottom: 8px;
}
.pay li:last-child {
  margin-bottom: 0;
}
.payment {
  display: flex;
  justify-content: center;
  margin: 40px auto 20px;
}
.payment input[type="radio"] {
  display: none;
}
.payment label {
  background-color: #bbb;
  color: var(--white);
  font-weight: bold;
  font-size: 18px;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  margin: 0 12px;
}
.payment input:checked + label {
  background: #005856;
  background: linear-gradient(82deg, rgba(0, 88, 86, 1) 0%, rgba(20, 117, 114, 1) 100%);
  color: #fff;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}
#verfy_area .text {
  max-width: 650px;
  margin: 0 auto;
}
input[type="text"] {
  padding: 16px 4px 16px 52px;
  font-size: 20px;
  font-family: Arial, sans-serif;
  color: #1E1E1E;
  border: solid 1px #FF8D49;
  margin: 0 auto 20px;
  width: 100%;
}
.icon {
  position: absolute;
  width: 1.8rem;
  margin-left: .9375rem;
  margin-top: 13px;
  pointer-events: none;
}
.cp_ipselect.cp_sl01 {
  position: relative;
  border: 1px solid #bbbbbb;
  border-radius: 2px;
  background: #ffffff;
}
.cp_ipselect {
  overflow: hidden;
  width: 100%;
  margin: 0em auto 1.5em;
  text-align: center;
}
.cp_ipselect.cp_sl01 select {
  padding: 15px 38px 15px 8px;
  color: #666666;
  width: 100%;
  font-size: 16px;
}
input[type="email"] {
  padding: 15px 5px 15px 50px;
  font-size: 20px;
  font-family: Arial, sans-serif;
  color: #1E1E1E;
  border: solid 1px #FF8D49;
  margin: 0 0 20px;
  width: 100%;
}
#form_area {
  background-color: var(--gray);
}
.form_box {
  background-color: var(--white);
  padding: 16px;
  border-radius: 4px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
}
.form_index {
  font-size: 120%;
  font-weight: bold;
}
.form_index span {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 8px;
}
.form-content {
  text-align: left;
}
.form_index span {
  background: #c60e0e;
  padding: 0px 4px;
  color: var(--white);
  display: inline-block;
  margin-left: 8px;
  border-radius: 4px;
  font-weight: normal;
}
.form-control {
  width: 100%;
  padding: 8px;
  font-size: 16px;
}
#FormNameSei {
  margin-bottom: 4px;
}
.boxArea .none {
  padding: 0;
  box-shadow: none;
  display: none;
}
.order_title {
  font-size: 120%;
}
.order_index {
  display: flex;
  justify-content: space-between;
  margin: 4px 0px;
}
.text-right {
  text-align: right;
}
input[type="submit"] {
  border-width: 0;
  font-weight: bold;
  width: 650px;
  max-width: 100%;
  font-size: 115%;
  color: #fff !important;
  background: #de2f00;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
  text-decoration: none;
  margin-top: 25px;
  margin-bottom: 8px;
  border-radius: 4px;
  padding: 12px 0;
  cursor: pointer
}
/* 表示されるコンテンツにフェードイン効果を追加 */
.text.active {
  display: block;
  animation: fadeIn 0.5s ease;
}
/* フェードインアニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.boxArea .box {
  max-width: 450px;
  margin: 0 auto;
}
#verfy_area h1 {
  text-align: center;
  font-size: 18px;
  margin: 20px auto 28px;
}
.per_price {
  max-width: 450px;
  padding: 12px 16px;
  border-radius: 4px;
  background: #f7f7f1;
  font-size: 110%;
  margin: 20px auto 0
}
.per_price li {
  display: flex;
  justify-content: space-between;
  border-bottom: dotted 1px;
  padding-bottom: 8px;
  margin-bottom: 8px;
  align-items: center;
}
.per_price li span {
  font-weight: bold;
  background: #1c7a77;
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--white);
}
@media (min-width:768px) {
  .pay {
    padding: 32px 40px;
    margin-top: 40px;
  }
  .pay li {
    margin-bottom: 12px;
  }
  .payment label {
    font-size: 22px;
    padding: 12px 40px;
    margin: 0 40px;
  }
  #verfy_area h1 {
    font-size: 20px;
  }
  #verfy_area .title + p {
    font-size: 26px;
  }
  .cp_ipselect.cp_sl01 select {
    font-size: 20px;
  }
  input[type="submit"] {
    font-size: 32px;
    padding: 20px 0;
  }
  .per_price {
    padding: 20px 24px;
    font-size: 130%;
  }
}
.bar {
  content: "";
  width: 85%;
  height: 1px;
  background-color: #dfdfdf;
  margin: 60px auto;
}
@media (min-width:768px) {
  .bar {
    margin: 100px auto;
  }
}
.tri {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
  border-top: 40px solid #555555;
  border-bottom: 0;
  display: block;
  margin: 20px auto;
}
.pay_box {
  border: solid 5px #777;
  border-radius: 4px;
  padding: 12px;
  max-width: 650px;
  margin: 0 auto;
}
.pay_number {
  text-align: center;
  font-weight: bold;
}
.pay_number span {
  background-color: #555;
  color: white;
  border-radius: 4px;
  padding: 2px 16px;
}
.pay_number.mb {
  margin-bottom: 20px;
}
.pay_box.mt {
  margin-top: 40px;
}
@media (min-width:768px) {
  .pay_box {
    padding: 32px 28px;
  }
  .pay_box.mt {
    margin-top: 60px;
  }
  .pay_number {
    font-size: 120%;
  }
  .pay_number.mb {
    margin-bottom: 40px;
  }
}
/*========================
faq
============================*/
#faq {
  background-color: #efefef;
}
.index_title {
  text-align: center;
  font-size: min(5vw, 28px);
}
.index_title span {
  background-color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
}
.index_box {
  border: solid 2px #D8EDD8;
  background-color: var(--white);
  text-align: center;
  margin-top: 24px;
  border-radius: 8px;
  overflow: hidden;
}
.list_title {
  background-color: #D8EDD8;
  padding: 4px;
  font-weight: bold;
  font-size: min(4.5vw, 20px);
}
.index_list {
  padding: 8px;
  display: inline-block;
  text-align: left;
}
.index_list li {
  padding-bottom: 8px;
  position: relative;
  text-indent: -0.6rem;
  padding-left: 0.8rem;
}
.index_list li::before {
  content: "・";
}
#faq a {
  transition: 0.2s all ease;
}
#faq a:hover {
  text-decoration: underline;
  color: #aa8908
}
@media (min-width:768px) {
  .index_container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .index_box {
    width: calc(50% - 16px);
    font-size: 18px;
  }
}
.answer_title {
  background-color: #1c7a77;
  font-weight: bold;
  font-size: min(6vw, 26px);
  padding: 8px 16px;
  margin-bottom: 32px;
  border-radius: 4px;
  color: white;
}
.answer_box {
  padding: 0 8px;
}
.question span {
  font-weight: bold;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 4px;
  background: #E6EBF5;
  display: inline-block;
  text-align: center;
  margin-right: 8px;
  flex-basis: 15%;
  max-width: 30px;
  min-width: 30px;
}
.question {
  margin-bottom: 24px;
  font-weight: bold;
  font-size: 120%;
  display: flex;
  color: #5574ad;
}
.answer {
  padding-bottom: 32px;
  border-bottom: solid 1px #aaa;
  margin-bottom: 32px;
}
.answer ol, .answer ul {
  margin: 20px auto;
  background-color: #efefef;
  padding: 12px;
  border-radius: 4px;
}
.answer ol li, .answer ul li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: solid 1px;
}
.answer_box + .answer_title {
  margin-top: 80px;
}
#q05 .answer, #q12 .answer, #q22 .answer, #q25 .answer {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media (min-width:768px) {
  .list_title {
    padding: 8px;
  }
  .index_list {
    padding: 16px;
  }
  .question span {
    width: 35px;
    height: 35px;
    max-width: 35px;
    min-width: 35px;
  }
  .question {
    margin-bottom: 32px;
    font-size: 130%;
  }
}
@media (min-width:1024px) {
  .answer_title {
    margin-bottom: 64px;
  }
  .answer_box {
    padding: 0 24px;
  }
  .answer {
    padding-bottom: 56px;
    margin-bottom: 56px;
  }
  .answer_box + .answer_title {
    margin-top: 120px;
  }
  .answer ol, .answer ul {
    margin: 40px auto;
    padding: 24px;
  }
  .answer ol li, .answer ul li {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
}
#scroll-button {
  border-width: 0;
  font-weight: bold;
  width: 650px;
  max-width: 100%;
  font-size: 130%;
  color: #fff !important;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
  text-decoration: none;
  margin-bottom: 8px;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  margin: 40px auto 0;
}
#scroll-button a {
  background: #de2f00;
  padding: 12px 0;
  display: block;
}
@media (min-width:768px) {
  #scroll-button {
    margin-top: 80px;
  }
}
/*========================
アーカイブ用に追加
========================*/
.expired-content h2 {
  text-align: center;
  font-size: min(6vw, 32px);
  color: var(--red);
  margin-bottom: 12px;
}
.expired-content p {
  text-align: center;
}
.info_box {
  max-width: 600px;
  margin: 20px auto 0;
  margin-bottom: 25vh;
}
.info_box table {
  width: 100%;
  border: solid 1px #aaa;
}
.info_box table tr, .info_box table th, .info_box table td {
  display: block;
  text-align: center;
  border-collapse: collapse;
}
.info_box table th, .info_box table td {
  padding: 8px
}
.info_box table th {
  font-size: 120%;
  background-color: #efefef;
}
@media (min-width:768px) {
  .info_box {
    margin-top: 60px;
  }
  .info_box table {
    border-right: none;
    border-left: none;
  }
  .info_box table tr {
    display: table-row;
  }
  .info_box table tr:nth-child(1) {
    border-bottom: solid 1px #aaa;
  }
  .info_box table th, .info_box table td {
    display: table-cell;
    padding: 16px;
    vertical-align: middle;
    text-align: left;
  }
  .info_box table th {
    font-size: 100%;
    background-color: #fafafa;
  }
  .info_box table td {}
}
.limit {
  color: var(--white);
  font-weight: bold;
  font-size: min(5vw, 24px);
  background-color: #555;
  text-align: center;
  padding: 8px;
}
.secure_attension {
  background-color: #dfdfdf;
  padding: 12px;
  margin-bottom: 20px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  font-size: 16px;
}
.secure_attension strong {
  font-size: 110%;
}
.secure_attension ul {
  background-color: #fff;
  padding: 4px 12px 12px;
  border-radius: 4px;
  margin: 16px 8px;
}
.secure_attension ul li {
  padding: 8px;
  border-bottom: dotted 1px;
}
.secure_attension table {
  margin: 16px 8px;
  border-collapse: collapse;
  border: solid 1px #aaa;
  border-radius: 8px;
  background-color: #fff;
}
.secure_attension table tr, .secure_attension table th, .secure_attension table td {
  padding: 8px;
  display: block;
}
.secure_attension table tr {
  margin: 0 8px;
  padding: 0;
}
.secure_attension table tr:nth-child(2), .secure_attension table tr:nth-child(3) {
  border-top: solid 1px #aaa;
  margin-top: 20px;
}
.secure_attension table th {
  text-align: left;
  font-size: 105%;
}
.accordion, .accordion2 {
  background-color: #efefef;
  color: #1c1c1c;
  cursor: pointer;
  padding: 12px 18px;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 16px;
  transition: 0.4s;
  border: 1px solid #555;
  border-radius: 4px;
  margin-bottom: 5px;
  position: relative;
  font-weight: bold;
  margin-top: 2rem;
}
.accordion:after, .accordion2::after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}
.accordion.active:after, .accordion2.active:after {
  content: "\2212";
}
.accordion:hover, .accordion2:hover {
  background-color: #f1f1f1;
}
.secure_attension p strong {
  margin-top: 32px;
  display: inline-block;
}
.panel, .panel2 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  margin-top: -5px;
  margin-bottom: 10px;
}
.accordion.active, .accordion2.active {
  background-color: #f1f1f1;
}
.secure_attension .caution {
  background-color: #fff;
  padding: 12px;
  font-size: 16px;
  display: block;
  border-radius: 8px;
  margin-top: 16px;
}
.panel2 {
  background-color: #fff;
}
.panel2 img {
  max-width: 400px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
@media (min-width:768px) {
  .secure_attension {
    padding: 24px;
  }
}
/*===========

20250627tsuika
===========*/
.fv-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  background-image: url("./base-cross.png");
  background-repeat: repeat;
  background-size: auto;
}
/* 左右の画像配置エリア */
.side-images {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 400px;
  pointer-events: none;
}
.side-images.left {
  left: 0;
}
.side-images.right {
  right: 0;
}
.image-item {
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 左側画像の配置 */
.left .image-item:nth-child(1) {
  width: 25vw;
  max-width: 300px;
  height: 25%;
  max-height: 280px; /* 正方形に近い */
  top: 8px;
  left: 8px;
}
.left .image-item:nth-child(2) {
  width: 25vw;
  max-width: 300px;
  height: 23%;
  max-height: 220px; /* 短い長方形 */
  top: 26.5%; /* 180 + 4px gap */
  left: 8px;
}
.left .image-item:nth-child(3) {
  width: 25vw;
  max-width: 300px;
  height: 30%;
  max-height: 160px; /* 短い長方形 */
  top: 49.5%; /* 184 + 100 + 4px gap */
  left: 8px;
}
.left .image-item:nth-child(4) {
  width: 25vw;
  max-width: 300px;
  height: 30%;
  max-height: 285px; /* FV下まで、右側と下端を揃える */
  top: 66.5%; /* 288 + 120 + 4px gap */
  left: 8px;
}
/* 右側画像の配置（5枚構成） */
.right .image-item:nth-child(1) {
  width: 12.5vw;
  max-width: 148px; /* 横並び用、間に4px隙間を作るため調整 */
  height: 188px; /* 縦長の長方形 */
  top: 8px;
  right: 160px; /* 98 + 4px gap */
}
.right .image-item:nth-child(2) {
  width: 12.5vw;
  max-width: 148px; /* 横並び用、間に4px隙間を作るため調整 */
  height: 188px; /* 縦長の長方形 */
  top: 8px;
  right: 8px; /* 一番右 */
}
.right .image-item:nth-child(3) {
  width: 25vw;
  max-width: 300px;
  height: 20%;
  max-height: 190px; /* 短い長方形 */
  top: 20.5%; /* 160 + 4px gap */
  right: 8px;
}
.right .image-item:nth-child(4) {
  width: 25vw;
  max-width: 300px;
  height: 30%; /* 正方形に近い形 */
  max-height: 240px;
  top: 40.5%; /* 164 + 100 + 4px gap */
  right: 8px;
}
.right .image-item:nth-child(5) {
  width: 25vw;
  max-width: 300px;
  height: 30%;
  max-height: 312px; /* FV下まで、右側と下端を揃える */
  top: 65.5%; /* 288 + 120 + 4px gap */
  right: 8px;
}
/* メインコンテンツ */
.main-content {
  text-align: center;
  z-index: 10;
  max-width: 920px;
  padding: 0 0px;
}
@media (min-width:768px) {
  .main-content {
    padding: 0 20px;
  }
}
.hero-title {
  margin-bottom: 20px;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
.cta-button {
  display: inline-block;
  text-align: center;
  padding: 8px 12px;
  background: #e84e4e;
  color: white;
  text-decoration: none;
  border-radius: 50vh;
  font-size: 20px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(201, 34, 34, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 0px;
  width: 90%;
  max-width: 600px;
  animation: pulse 2s ease-in-out infinite;
  position: relative;
}
.cta-button::after {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  line-height: 40px;
  background-color: #041b2d;
  color: white;
  border-radius: 50vh;
  width: 40px;
  height: 40px;
  content: '→';
  font-size: 16px;
}
@media (min-width:768px) {
  .cta-button {
    padding: 18px 40px;
    font-size: 24px;
    box-shadow: 0 8px 32px rgba(201, 34, 34, 0.3);
    margin-bottom: 40px;
  }
  .cta-button::after {
    line-height: 60px;
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}
/* レスポンシブ対応 */
@media (max-width: 1400px) {
  /* メインコンテンツ */
  .main-content {
    max-width: 720px;
  }
  .side-images {
    width: 200px;
  }
  /* 左側 */
  .left .image-item:nth-child(1) {
    width: 200px;
    height: 162px;
    top: 0;
  }
  .left .image-item:nth-child(2) {
    width: 200px;
    height: 160px;
    top: 166px;
  } /* 162 + 4px */
  .left .image-item:nth-child(3) {
    width: 200px;
    height: 160px;
    top: 330px;
  } /* 166 + 90 + 4px */
  .left .image-item:nth-child(4) {
    width: 200px;
    height: 277px;
    top: 498px;
  } /* 260 + 108 + 4px */
  /* 右側 */
  .right .image-item:nth-child(1) {
    width: 96px;
    height: 144px;
    top: 0;
    right: 100px;
  } /* 88 + 4px */
  .right .image-item:nth-child(2) {
    width: 96px;
    height: 144px;
    top: 0;
    right: 0;
  }
  .right .image-item:nth-child(3) {
    width: 200px;
    height: 150px;
    top: 152px;
    right: 0;
  } /* 144 + 4px */
  .right .image-item:nth-child(4) {
    width: 200px;
    height: 246px;
    top: 310px;
    right: 0;
  } /* 148 + 90 + 4px */
  .right .image-item:nth-child(5) {
    width: 200px;
    height: 246px;
    top: 552px;
    right: 0;
  } /* 242 + 246 + 4px */
}
@media (max-width: 1200px) {
  /* メインコンテンツ */
  .main-content {
    max-width: 680px;
  }
}
@media (max-width: 768px) {
  .side-images {
    display: none;
  }
  .challenge-text {
    font-size: 42px;
  }
  .innovation-text {
    font-size: 36px;
  }
  .subtitle {
    font-size: 18px;
  }
  .logo-text {
    font-size: 36px;
  }
}
@media (max-width: 1100px) {
  /* メインコンテンツ */
  .main-content {
    max-width: 720px;
  }
  .side-images {
    width: 180px;
  }
  /* 左側 */
  .left .image-item:nth-child(1) {
    width: 180px;
    height: 162px;
    top: 0;
  }
  .left .image-item:nth-child(2) {
    width: 180px;
    height: 160px;
    top: 166px;
  } /* 162 + 4px */
  .left .image-item:nth-child(3) {
    width: 180px;
    height: 160px;
    top: 330px;
  } /* 166 + 90 + 4px */
  .left .image-item:nth-child(4) {
    width: 180px;
    height: 277px;
    top: 498px;
  } /* 260 + 108 + 4px */
  /* 右側 */
  .right .image-item:nth-child(1) {
    width: 96px;
    height: 144px;
    top: 0;
    right: 100px;
  } /* 88 + 4px */
  .right .image-item:nth-child(2) {
    width: 96px;
    height: 144px;
    top: 0;
    right: 0;
  }
  .right .image-item:nth-child(3) {
    width: 180px;
    height: 150px;
    top: 152px;
    right: 0;
  } /* 144 + 4px */
  .right .image-item:nth-child(4) {
    width: 180px;
    height: 246px;
    top: 310px;
    right: 0;
  } /* 148 + 90 + 4px */
  .right .image-item:nth-child(5) {
    width: 180px;
    height: 246px;
    top: 552px;
    right: 0;
  } /* 242 + 246 + 4px */
}
/* レスポンシブ対応 */
@media (max-width: 1000px) {
  /* メインコンテンツ */
  .main-content {
    max-width: 600px;
  }
  .hero-title {
    margin-bottom: 20px;
  }
  .side-images {
    width: 150px;
  }
  /* 左側 */
  .left .image-item:nth-child(1) {
    width: 150px;
    height: 130px;
    top: 0;
  }
  .left .image-item:nth-child(2) {
    width: 150px;
    height: 120px;
    top: 138px;
  } /* 162 + 4px */
  .left .image-item:nth-child(3) {
    width: 150px;
    height: 160px;
    top: 268px;
  } /* 166 + 90 + 4px */
  .left .image-item:nth-child(4) {
    width: 150px;
    height: 200px;
    top: 434px;
  } /* 260 + 108 + 4px */
  /* 右側 */
  .right .image-item:nth-child(1) {
    width: 70px;
    height: 120px;
    top: 0;
    right: 78px;
  } /* 88 + 4px */
  .right .image-item:nth-child(2) {
    width: 70px;
    height: 120px;
    top: 0;
    right: 0;
  }
  .right .image-item:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 128px;
    right: 0;
  } /* 144 + 4px */
  .right .image-item:nth-child(4) {
    width: 150px;
    height: 130px;
    top: 286px;
    right: 0;
  } /* 148 + 90 + 4px */
  .right .image-item:nth-child(5) {
    width: 150px;
    height: 208px;
    top: 426px;
    right: 0;
  } /* 242 + 246 + 4px */
}
/* レスポンシブ対応 */
@media (max-width: 900px) {
  /* メインコンテンツ */
  .main-content {
    max-width: 550px;
  }
  .side-images {
    width: 120px;
  }
  /* 左側 */
  .left .image-item:nth-child(1) {
    width: 120px;
    height: 130px;
    top: 0;
  }
  .left .image-item:nth-child(2) {
    width: 120px;
    height: 114px;
    top: 138px;
  } /* 162 + 4px */
  .left .image-item:nth-child(3) {
    width: 120px;
    height: 158px;
    top: 258px;
  } /* 166 + 90 + 4px */
  .left .image-item:nth-child(4) {
    width: 120px;
    height: 188px;
    top: 424px;
  } /* 260 + 108 + 4px */
  /* 右側 */
  .right .image-item:nth-child(1) {
    width: 56px;
    height: 110px;
    top: 0;
    right: 60px;
  } /* 88 + 4px */
  .right .image-item:nth-child(2) {
    width: 56px;
    height: 110px;
    top: 0;
    right: 0;
  }
  .right .image-item:nth-child(3) {
    width: 120px;
    height: 140px;
    top: 118px;
    right: 0;
  } /* 144 + 4px */
  .right .image-item:nth-child(4) {
    width: 120px;
    height: 130px;
    top: 264px;
    right: 0;
  } /* 148 + 90 + 4px */
  .right .image-item:nth-child(5) {
    width: 120px;
    height: 196px;
    top: 416px;
    right: 0;
  } /* 242 + 246 + 4px */
}
/* 企業ロゴスクロールエリア */
#company-scroll {
  margin: 50px 0 28px;
  overflow: hidden;
  background: #fffcf1;
  border-radius: 8px;
  padding: 30px 0;
  position: relative;
  width: 100%;
}
#company-scroll::before, #company-scroll::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  z-index: 10;
  pointer-events: none;
}
#company-scroll::before {
  left: 0;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}
#company-scroll::after {
  right: 0;
  background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}
/* スクロールアニメーション */
.scroll-wrapper {
  width: 100%;
  overflow: hidden;
}
.scroll-content {
  display: flex;
  animation: infiniteScroll 100s linear infinite;
  /* 19社 × (180px + 60px margin) × 2セット = 9120px */
  width: 8056px;
}
.logo-set {
  display: flex;
  align-items: center;
  /* 19社 × 240px = 4560px */
  min-width: 4028px;
  flex-shrink: 0;
}
.company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 16px;
  flex-shrink: 0;
  height: 70px;
  width: 180px;
  padding: 8px 12px;
  background: #fafafa;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.company-logo img {
  max-width: 150px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}
/* アニメーション */
@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-4028px); /* 1セット分の幅 */
  }
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
  .company-logo {
    margin: 0 20px;
    width: 160px;
    height: 60px;
    padding: 8px 12px;
  }
  .company-logo img {
    max-width: 130px;
    max-height: 45px;
  }
  .scroll-content {
    animation-duration: 80s;
    /* モバイル: 19社 × (160px + 40px margin) × 2セット = 7600px */
    width: 7600px;
  }
  .logo-set {
    /* モバイル: 19社 × 200px = 3800px */
    min-width: 3800px;
  }
  @keyframes infiniteScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-3800px); /* モバイル用 1セット分の幅 */
    }
  }
}
#curriculum .curri-table {
  max-width: 860px;
  margin: 0 auto 40px;
}
.table-title {
  padding: 8px;
  background: center / cover url("./img05-01bg.png") no-repeat;
}
.table-title p {
  background-color: white;
  padding: 8px;
  border-radius: 8px;
  text-align: center;
}
td.table-img {
  padding: 0 !important;
}
td.table-img img {
  display: block;
}
@media (max-width:500px) {
  td.table-img img {
    width: 80%;
    border-radius: 12px;
    overflow: hidden;
    margin: 12px auto;
  }
}
#curriculum table.curri-table tr:nth-child(1), #curriculum table.curri-table tr:nth-child(2) {
  background-image: linear-gradient(135deg, #e7e7e7 0%, #eaeaea 100%) !important
}
#curriculum .curri-table tr:nth-child(1) {
  margin-bottom: 28px;
  display: block;
}
#curriculum .table-title:nth-child(2) .table-title {
  background: center / cover url("./img06-01bg.png") no-repeat;
}
@media (min-width:480px) {
  #curriculum .curri-table tbody {
    display: flex;
    justify-content: space-around;
  }
  #curriculum .curri-table tr:nth-child(1) {
    margin-bottom: 0px;
    display: block;
  }
  #curriculum .curri-table tr {
    width: calc(50% - 3rem);
  }
  #curriculum .curri-table th, #curriculum .curri-table td {
    display: block;
    width: 100%;
  }
}
.read-img {
  text-align: center;
  max-width: 720px;
  width: 95%;
  margin: 0 auto 28px;
  overflow: hidden;
  border-radius: 12px;
}
#read .scroll-container + .wrap .read-img.mb {
  margin: 20px auto -20px;
}
@media (min-width:768px) {
  #read .scroll-container + .wrap .read-img.mb {
    margin: 40px auto -40px;
  }
}
@media (min-width:768px) {
  .read-img {
    width: 80%;
  }
}
.read-img img {
  display: block;
}
#read .title + .read-img {
  max-width: 420px;
}
.title span {
  position: relative;
}
/*
.title span::before {
  content: "";
  width: 40%;
  height: 5px;
  border-radius: 50vh;
  max-width: 150px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -10px;
  background: #020024;
  background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}*/
.scroll-container {
  position: relative;
  height: 100%;
  overflow: hidden;
}
/* スクロールトラック */
.scroll-track {
  display: flex;
  height: 100%;
  animation: scroll 50s linear infinite;
}
/* 画像アイテム */
.scroll-item {
  flex-shrink: 0;
  height: 180px;
  margin-right: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 各画像のサイズ設定（PC：高さ180px、モバイル：高さ120px） */
.scroll-item:nth-child(1) {
  width: 311px;
}
.scroll-item:nth-child(2) {
  width: 311px;
}
.scroll-item:nth-child(3) {
  width: 311px;
}
.scroll-item:nth-child(4) {
  width: 225px;
}
.scroll-item:nth-child(5) {
  width: 189px;
}
.scroll-item:nth-child(6) {
  width: 180px;
}
.scroll-item:nth-child(7) {
  width: 207px;
}
.scroll-item:nth-child(8) {
  width: 248px;
}
.scroll-item:nth-child(9) {
  width: 297px;
}
.scroll-item:nth-child(10) {
  width: 180px;
}
.scroll-item:nth-child(11) {
  width: 180px;
}
/* 複製された画像も同じサイズ */
.scroll-item:nth-child(12) {
  width: 311px;
}
.scroll-item:nth-child(13) {
  width: 311px;
}
.scroll-item:nth-child(14) {
  width: 311px;
}
.scroll-item:nth-child(15) {
  width: 225px;
}
.scroll-item:nth-child(16) {
  width: 189px;
}
.scroll-item:nth-child(17) {
  width: 180px;
}
.scroll-item:nth-child(18) {
  width: 207px;
}
.scroll-item:nth-child(19) {
  width: 248px;
}
.scroll-item:nth-child(20) {
  width: 297px;
}
.scroll-item:nth-child(21) {
  width: 180px;
}
.scroll-item:nth-child(22) {
  width: 180px;
}
/* グラデーションオーバーレイ */
.gradient-overlay {
  position: absolute;
  top: 0;
  height: 100%;
  width: 80px;
  pointer-events: none;
  z-index: 10;
}
.gradient-left {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 100%);
}
.gradient-right {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 100%);
}
/* スクロールアニメーション - シームレスループのため1セット分の幅だけ移動 */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-2859px); /* 1セット分の幅（207+207+207+150+126+120+138+165+198) + マージン(20×9) = 1518 + 180 = 1698px */
  }
}
/* ホバー時にアニメーション一時停止
        .scroll-container:hover .scroll-track {
            animation-play-state: paused;
        } */
/* レスポンシブ対応 */
@media (max-width: 767px) {
  .scroll-item {
    height: 120px;
  }
  .scroll-item:nth-child(1) {
    width: 207px;
  }
  .scroll-item:nth-child(2) {
    width: 207px;
  }
  .scroll-item:nth-child(3) {
    width: 207px;
  }
  .scroll-item:nth-child(4) {
    width: 150px;
  }
  .scroll-item:nth-child(5) {
    width: 126px;
  }
  .scroll-item:nth-child(6) {
    width: 120px;
  }
  .scroll-item:nth-child(7) {
    width: 138px;
  }
  .scroll-item:nth-child(8) {
    width: 165px;
  }
  .scroll-item:nth-child(9) {
    width: 198px;
  }
  .scroll-item:nth-child(10) {
    width: 120px;
  }
  .scroll-item:nth-child(11) {
    width: 120px;
  }
  .scroll-item:nth-child(12) {
    width: 207px;
  }
  .scroll-item:nth-child(13) {
    width: 207px;
  }
  .scroll-item:nth-child(14) {
    width: 207px;
  }
  .scroll-item:nth-child(15) {
    width: 150px;
  }
  .scroll-item:nth-child(16) {
    width: 126px;
  }
  .scroll-item:nth-child(17) {
    width: 120px;
  }
  .scroll-item:nth-child(18) {
    width: 138px;
  }
  .scroll-item:nth-child(19) {
    width: 165px;
  }
  .scroll-item:nth-child(20) {
    width: 198px;
  }
  .scroll-item:nth-child(21) {
    width: 120px;
  }
  .scroll-item:nth-child(22) {
    width: 120px;
  }
  .gradient-overlay {
    width: 40px;
  }
  /* レスポンシブ時のアニメーション調整 */
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-1978px); /* モバイル時の1セット分の幅 */
    }
  }
}
#instructor {
  background-color: #efefef;
}
.instructor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.instructor-card {
  background: #efefef;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.instructor-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.instructor-photo {
  width: 150px;
  border-radius: 8px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #718096;
}
.instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.instructor-specialties {
  margin-bottom: 20px;
}
.specialty-label {
  font-weight: 600;
  margin-bottom: 4px;
}
.specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.specialty-tag {
  background: #f9f4e2;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
}
.instructor-description {
  line-height: 1.7;
  text-align: center;
}
.instructor-grid + p {
  text-align: right;
  margin-top: 12px;
}
/* タブレット: 2列 */
@media (min-width: 768px) {
  .instructor-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .instructor-card {
    padding: 20px;
  }
  .instructor-photo {
    width: 140px;
    margin-bottom: 16px;
  }
}
/* デスクトップ: 3列 */
@media (min-width: 1024px) {
  .instructor-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
/* 大画面: 4列は削除し、3列を維持 */
@media (min-width: 1280px) {
  .instructor-grid {
    gap: 24px;
  }
}
/* ========== オフライン勉強会セクション ========== */
.workshop-section {
  border-top: 1px solid #e2e8f0;
}
.workshop-header {
  text-align: center;
  margin-bottom: 24px;
}
.workshop-title {
  font-weight: 700;
  color: #2d3748;
  line-height: 1.4;
  margin-bottom: 16px;
}
.title-highlight {
  color: #e53e3e;
  font-weight: 700;
}
.workshop-gallery {
  position: relative;
}
.gallery-container {
  overflow: hidden;
  border-radius: 8px;
}
.gallery-track {
  display: flex;
  animation: scroll 110s linear infinite;
}
/*   .gallery-track:hover {
            animation-play-state: paused;
        }*/
.gallery-item {
  flex: 0 0 auto;
  margin-right: 12px;
}
.gallery-item:last-child {
  margin-right: 0;
}
.gallery-item img {
  width: 190px;
  height: 130px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-280px * 11 - 12px * 10));
  }
}
/* タブレット対応 */
@media (min-width: 768px) {
  .workshop-header {
    margin-bottom: 48px;
  }
  .gallery-item img {
    width: 300px;
    height: 200px;
  }
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-300px * 11 - 12px * 10));
    }
  }
}
/* デスクトップ対応 */
@media (min-width: 1024px) {
  .workshop-section {
    padding: 100px 40px;
  }
}
/* ========== 動画講座セクション ========== */
.course-gallery {
  position: relative;
  margin-top: 20px;
}
.course-row {
  overflow: hidden;
  margin-bottom: 12px;
}
.course-row:last-child {
  margin-bottom: 0;
}
.course-track {
  display: flex;
}
.course-track-1 {
  animation: courseScroll1 140s linear infinite;
}
.course-track-2 {
  animation: courseScroll2 160s linear infinite;
}
.course-track-3 {
  animation: courseScroll3 120s linear infinite;
}
/*     .course-track:hover {
            animation-play-state: paused;
        }*/
.course-item {
  flex: 0 0 auto;
  margin-right: 8px;
}
.course-item:last-child {
  margin-right: 0;
}
.course-item img {
  width: 180px;
  height: 101px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  border: 1px solid #e2e8f0;
}
/* 各行のアニメーション */
@keyframes courseScroll1 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-180px * 16 - 8px * 15));
  }
}
@keyframes courseScroll2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-180px * 16 - 8px * 15));
  }
}
@keyframes courseScroll3 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-180px * 16 - 8px * 15));
  }
}
/* タブレット対応 */
@media (min-width: 768px) {
  .course-title {
    font-size: 28px;
  }
  .course-highlight {
    font-size: 32px;
  }
  .course-subtitle {
    font-size: 18px;
  }
  .course-item img {
    width: 200px;
    height: 112px;
  }
  @keyframes courseScroll1 {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-200px * 16 - 8px * 15));
    }
  }
  @keyframes courseScroll2 {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-200px * 16 - 8px * 15));
    }
  }
  @keyframes courseScroll3 {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-200px * 16 - 8px * 15));
    }
  }
}
/* デスクトップ対応 */
@media (min-width: 1024px) {
  .course-section {
    padding: 100px 40px;
  }
  .course-title {
    font-size: 32px;
  }
  .course-highlight {
    font-size: 36px;
  }
  .course-subtitle {
    font-size: 20px;
  }
}
/*==================
202508追加
==================*/
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
  margin-bottom: 28px;
}
.category-card {
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 350px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #005856;
  background: linear-gradient(82deg, rgba(0, 88, 86, 1) 0%, rgba(20, 117, 114, 1) 100%);
}
.category-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #fff, #efefef);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 20px rgba(245, 245, 245, 0.3);
}
.category-title {
  font-weight: 600;
  color: var(--white);
}
/* アイコンのカスタマイズ */
.icon-business::before {
  content: "";
  width: 55px;
  height: 55px;
  background: center / contain url("./cate-icon01.png") no-repeat;
}
.icon-side-job::before {
  content: "";
  width: 65px;
  height: 55px;
  background: center / contain url("./cate-icon02.png") no-repeat;
}
.icon-investment::before {
  content: "";
  width: 55px;
  height: 55px;
  background: center / contain url("./cate-icon03.png") no-repeat;
}
.icon-health::before {
  content: "";
  width: 55px;
  height: 55px;
  background: center / contain url("./cate-icon04.png") no-repeat;
}
.icon-hobby::before {
  content: "";
  width: 55px;
  height: 55px;
  background: center / contain url("./cate-icon05.png") no-repeat;
}
/* スマホ用レスポンシブ（2カラム） */
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .category-card {
    padding: 30px 20px;
    max-width: none;
  }
  .category-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  .icon-business::before {
    width: 35px;
    height: 35px;
  }
  .icon-side-job::before {
    width: 45px;
    height: 35px;
  }
  .icon-investment::before {
    width: 35px;
    height: 35px;
  }
  .icon-health::before {
    width: 35px;
    height: 35px;
  }
  .icon-hobby::before {
    width: 35px;
    height: 35px;
  }
  .category-description {
    font-size: 0.9rem;
  }
  .container {
    padding: 30px 15px;
  }
}
/* タブレット用 */
@media (max-width: 1024px) and (min-width: 769px) {
  .category-grid {
    gap: 25px;
  }
  .category-card {
    padding: 35px 25px;
  }
}
/* 超小さい画面用 */
@media (max-width: 480px) {
  .category-grid {
    gap: 12px;
  }
  .category-card {
    padding: 16px 12px;
  }
}
/*====================
feature
===============*/
#feature {
  background-color: #f7f7f1;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  justify-items: center;
  margin-bottom: 28px;
}
.feature-card {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  padding: 16px;
}
.feature-number {
  background: #005856;
  background: linear-gradient(82deg, rgba(0, 88, 86, 1) 0%, rgba(20, 117, 114, 1) 100%);
  color: white;
  text-align: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50vh;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-weight: 700;
}
.feature-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 12px;
}
.feature-img {
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto;
  width: 95%;
}
.feature-img img {
  display: block;
}
@media (min-width:768px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.line {
  width: 2px;
  height: 60px;
  background-color: #ccc;
  margin: 40px auto;
}
.feature-bg {
  background-color: var(--white);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.12);
}
.feature-box-number {
  text-align: center;
  margin-bottom: 20px;
}
.feature-box-number span {
  background: #005856;
  background: linear-gradient(82deg, rgba(0, 88, 86, 1) 0%, rgba(20, 117, 114, 1) 100%);
  color: white;
  padding: 8px 3rem;
  border-radius: 8px;
}
.feature-box-title {
  color: #005856;
  text-align: center;
  font-size: clamp(1.375rem, 0.819rem + 2.54vw, 2.375rem);
  font-weight: 700;
  margin-bottom: 28px;
}
.feature-flex-box p {
  font-weight: 700;
  text-align: center;
  font-size: clamp(1.25rem, 0.972rem + 1.27vw, 1.75rem);
  margin-bottom: 32px;
  position: relative;
}
.feature-flex-box p::before {
  content: "";
  width: 20%;
  height: 4px;
  border-radius: 50vh;
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #005856;
}
.feature-flex-box p span {
  color: #de2f00;
}
.feature-flex-img {
  width: 80%;
  max-width: 320px;
  margin: 0 auto 24px;
  border-radius: 12px;
  overflow: hidden;
}
.feature-flex-img.flex-kurisu{
	max-width: 240px;
}
.feature-flex-img.line {
  max-width: 120px;
  height: auto;
  background-color: transparent;
}
.feature-flex-img img {
  display: block;
}
.feature-flex-img.support {
  max-width: 180px!important;
}
.box-img {
  margin: 28px auto 0;
  max-width: 620px;
  width: 85%;
}
.box-img.support{
	width: 100%;
	max-width: 750px;
	box-shadow: 0 0 12px 0 rgba(0,0,0,0.12);
	border-radius: 12px;
	overflow: hidden;
}
.box-img.support img{
	display: block;
}
.tri + .title.mt{
	background: transparent!important;
	color:inherit!important;
}.tri + .title.mt strong{
	color: #de2f00
}

.feature-container table{
	border: solid 3px #7f7f7f;
	background-color: white;
}
.feature-container table.ai.gold td{
font-weight: normal;
}
.feature-container table th,.feature-container table td{
	padding: 8px;
	text-align: left;
	border:solid 1px #7f7f7f
}
.feature-container table th{
	width: 40%;
	background-color: #efefef;
}
.feature-top-img {
  margin: 0 auto 28px;
  max-width: 600px;
  width: 95%;
}
.feature-list {
  background-color: #efefef;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
  margin: 24px auto;
}
.feature-list li {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: solid 1px #ccc;
  position: relative;
  padding-left: 1.8rem;
}
.feature-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 4px;
  left: 0;
  background: center / contain url("./icon_check.png") no-repeat;
}
.tool {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}
.tool-box {
  background-color: #f7f7f1 !important;
  text-align: center;
  padding: 16px;
  border-radius: 12px;
}
.tool-icon {
  max-width: 80px;
  margin: 0 auto 12px;
}
h4.text {
  text-align: center;
  font-size: clamp(1.25rem, 0.833rem + 1.9vw, 2rem);
}
@media (min-width:768px) {
  .feature-flex-img.line {
    max-width: 160px!important;
	  margin-top: -80px!important;
  }
  .feature-bg {
    padding: 40px 32px;
  }
  .feature-flex-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
  }
  .feature-flex-box p {
    text-align: left;
    margin-bottom: 0px;
    border-left: solid 4px #005856;
    padding-left: 1.8rem;
  }
	.feature-flex-box.float{
		display: block;

	}
	.feature-flex-box.float .feature-flex-img{
		float: right;
		margin-top: -50px;
		margin-left: 48px;
		max-width: 280px;
	}

  .feature-flex-box p::before {
    content: none;
  }
  .feature-flex-img {
    margin: 0;
  }
  .tool {
    gap: 32px;
    grid-template-columns: repeat(3, 1fr);
  }
  .feature-box.mt {
    margin-top: 60px;
  }
}
@media (min-width:1024px) {
  .feature-box {
    padding: 56px 44px;
  }
  .feature-box.mt {
    margin-top: 80px;
  }
}

/*====================
一括決済のみ変更時追加 2025/12/24
=======================*/
.cv-info{
    background-color: #efefef;
    padding: 16px;
    margin-top: 20px;
    border-radius: 8px;
}
@media (min-width:768px){
.cv-info{
	padding:24px;
}
}
.cv-info strong{
margin-bottom: 16px;
    display: block;
    text-align: center;
    font-size:120%;
}

.cv-info ol{
    margin: 24px auto;
    border: solid 1px #333;
    padding: 16px;
    border-radius: 8px;
    background-color: #fff;

}
.cv-info ol li{
    margin-bottom: 16px;
    border-bottom: solid 1px #333;
    padding-bottom: 16px;
    text-indent: -1.6rem;
    padding-left: 1.6rem;
}
.cv-info ol li:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

#q26 {
    padding-top: 32px;
    border-top: solid 1px #aaa;
    margin-top: 32px;
}
#q26 .answer {
    padding-bottom: 0px;
    border-bottom: none;
    margin-bottom: 0px;
}


.tokuten_list {
    background-color: #ddd;
    padding: 16px;
    margin: 20px auto;
    border-radius: 8px;
}
.tokuten_list li {
    margin-bottom: 8px;
}
.tokuten_list li:last-child {
    margin-bottom: 0;
}
