@charset "utf-8";
/* CSS Document */

/* Reset--------------------------------------------------------------------------- */
/**================================= Layout Setting =================================**/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {margin: 0;padding: 0;border: 0;font-size: 100%;font: inherit;vertical-align: baseline;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {display: block;}
body {
line-height: 1;
font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
/*font-weight: 500;*/
}

ol, ul, li {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}

.clearfix:before,
.clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}
.clearfix::after {
content: " ";
display: block;
clear: both;
}
img {
vertical-align: bottom;
width: 100%;
height: auto;
}

*:focus {
outline: none;
}

.center {
text-align: center;
}

.spOnly {
display: none !important;
}
.pcOnly {
display: flow-root;
}
.mt20 { margin-top: 20px;}
.mt40 { margin-top: 40px;}
.mt60 { margin-top: 60px;}
.mt80 { margin-top: 80px;}

.ml20 { margin-left: 20px;}
.ml40 { margin-left: 40px;}
.ml80 { margin-left: 60px;}
.ml80 { margin-left: 80px;}

.pb10 { padding-bottom: 10px;}
.pb20 { padding-bottom: 20px;}

/**================================= Link Setting =================================**/

a:link		{text-decoration:none; color: #333;}
a:visited	{text-decoration:none; color: #333;}
a:hover		{text-decoration:underline; opacity: 0.6; transition: 0.3s ;}
a:active	{text-decoration:none; }
a:focus 	{outline: none; }

/**================================= Common Setting =================================**/
html{margin: 0;padding: 0;}

body {
background: #fff;
font-family :"Noto Sans JP",YuGothic, 'Yu Gothic', sans-serif;
color: #333;
font-size: 18px;
line-height: 1.5;
padding: 0;
margin: 0;
-webkit-font-smoothing: antialiased;
}

p { font-size: 16px; -moz-osx-font-smoothing: grayscale; line-height: 1.5;}

.bold {font-weight: bold;}
.clearfix::after {
content: "";
display: block;
clear: both;
}
/* Reset end------------------------------------------------------------------------ */
/*ペライチフッターコピーライトエリア調整*/
.p-footer__inner {
    padding-top: 10px!important;
    padding-bottom: 18px!important;
}

/* header ヘッダーエリア… **********************************************/
header{	position: fixed ;}
.c-header {
  align-items: center;
  background-color: #FFF;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  width: 100%;
}

.c-header__logo {
  color: #000;
  min-width: 80px;
  text-decoration: none;
}

.c-header__list {
  box-sizing: border-box;
  display: flex;
  margin: 0;
  padding: 0;
}

.c-header__list-item {
  position: relative;
  list-style: none;
  text-decoration: none;
  width:100%;
  border-bottom: 2px solid #FFF;
}
.c-header__list-item:last-child {
  border-bottom: none;
}
.c-header__list-item::before {
content:"»";
position: absolute;
top: 5px;
left: 0px;
font-size:22px;
font-weight:bold;
color:#EAD93B;
}
.contact_btn::before {
content:"";
}
.contact_btn a{margin:20px 40px 10px ;background:#0B83C5; color:#FFF;border-radius:50px;text-align:center;font-weight: bold;}

.c-header__list-link {
color: #333; /* カスタマイズしてください */
display: block;
margin-right: 0; /* カスタマイズしてください */
text-decoration: none;
padding: 14px 16px; /* カスタマイズしてください */
font-size:14px;
}

.c-header__list-link:hover {
  filter: opacity(0.6); /* カスタマイズしてください */
}

.c-hamburger-menu {
  position: fixed;
  box-shadow: 1px 3px 10px -9px;
  z-index: 99999;
}
@media screen and (max-width: 990px) {
/* header ヘッダーエリア… **********************************************/

.c-header__list-item {
  width:100%!important;
  border-bottom: 2px solid #D6EEFF!important;
}
.c-header__list-item:last-child {
  border-bottom: none!important;
}
.contact_btn a{margin: 20px 40px!important;}

  .c-hamburger-menu__list {
    background-color: #EEF8FF; /* カスタマイズしてください */
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 20px; /* カスタマイズしてください */
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s; /* カスタマイズしてください */
    top: 100%;
    width: 100%;
  }

  #hamburger:checked ~ .c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
  }
	
}

.c-hamburger-menu__input {
  display: none;
}

.c-hamburger-menu__bg {
  background-color: #000; /* カスタマイズしてください */
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4; /* カスタマイズしてください */
  position: absolute;
  top: 0;
  width: 100%;
}

#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
}

.c-hamburger-menu__button {
  display: none;
}

@media screen and (max-width: 990px) {
  .c-hamburger-menu__button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    background-color: #0B83C5;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px; /* カスタマイズしてください */
    /*height: 32px; *//* カスタマイズしてください */
    justify-content: center;
    width: 32px; /* カスタマイズしてください */
    /*padding: 16px 18px 20px 18px;*/
    padding: 24px 32px 25px 34px;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 0 0 20px;
  }
}

.c-hamburger-menu__button-mark {
  background-color: #FFF; /* カスタマイズしてください */
  display: block;
  height: 3px; /* カスタマイズしてください */
  transition: 0.3s; /* カスタマイズしてください */
  width: 26px; /* カスタマイズしてください */
  border-radius: 10px;
}

@media screen and (max-width: 990px) {
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
}	

/* 共通のスタイル *********************************************/
#wrapper{padding-top:68px;}
.mv_set,.about_set,.taikan_set,.theme_set,.voice_set,.instructor_set {margin:0 auto;max-width:1200px;}

.title_center,.title_left{font-size:20px;font-weight: 600;position: relative;}
.title_center{color:#FFF;text-align:center;}
.title_left{color:#0C3A7E;}
.title_center::after,.title_left::after{
content:"";
position: absolute;
top: 40px;
left: 0;
right: 0;
bottom:0;
width: 50px;
height: auto;
border-bottom: 6px dotted #EAD93B;
}
.title_center::after{
margin: auto;
}

p{font-size:14px;}
section{padding:40px 20px 0;position: relative;}

.btn{text-align:center;font-size:14px;font-weight: bold; position: relative;}
.btn::before {
content:"»";
position: absolute;
top: 3px;
right: 16px;
font-size:26px;
font-weight:bold;
color:#EAD93B;
}
.btn a{padding:16px 0 17px ;  border-radius:50px ; display:block;}
.logo{width:145px;}

.br-sp {display: block; }


/* #mv メインビジュアルエリア… **********************************************/
#mv{padding:172px 0 20px; background:url(https://peraichi.com/user_files/download/daf39811-1317-4c42-85e5-42ee4ad274b5) no-repeat top center; background-size: contain; }


.mv_set {text-align: center;}
.mv_set .mv_copy{font-size: 16px;font-weight: bold;}
.mv_set .mv_copy .strong{color:#0B83C5;font-size: 24px;}
.mv_set .mv_img{margin:5px auto 15px;max-width: 270px;}
.mv_set .btn{margin:0 auto ; width:300px;}
.mv_set .btn a{color:#FFF;background:#0B83C5;}

/* #about デジハイクとは？ **********************************************/
#about{padding:40px 20px;position: relative;}
.about_title::after{
content: "ABOUT";
position: absolute;
top: 66px;
right: 20px;
font-size: 34px;
font-weight: bold;
color: #0b83c5;
z-index: -8888;
opacity: 0.6;
}
.about_message{margin:40px 0 0 0;}
.about_message p{line-height:1.8em;}
.about_message span{ background: linear-gradient(transparent 60%, #FFF7B0 60%);}
.about_img img{margin:20px auto 0 ;width:100%;border-radius: 20px;}
.about_bg{width: 140px; position: absolute; top:20px; right:40px;opacity:0.3;z-index: -9999;}

/* #taikan デジハイク3つの「体感」 **********************************************/
#taikan{padding:40px 20px;background:linear-gradient(225deg,#0B83C5,#0C3A7E);}

.taikan_3point{margin:40px 0 0 0;padding:20px; background:#FFF;border-radius:20px;}
.taikan_3point h3 {margin:0 0 10px 0;color:#0B83C5;font-size:18px;font-weight:bold;}
.taikan_3point p {margin:0 0 0 -40px;}

.point1, .point2, .point3{
position: relative;
padding: 0 0 20px 40px;font-size:14px;
}
.point3{
padding: 0 0 0 40px;
}
.point1::before,.point2::before,.point3::before{
position: absolute;
top: -10px;
left: 0;
font-size:50px;
font-weight:bold;
color:#D6EEFF;
}
.taikan_3point .point1::before { content:"1";}
.taikan_3point .point2::before { content:"2";}
.taikan_3point .point3::before { content:"3";}

/* #theme 講義テーマ *//* voice 事例・主催者・受講者の声 **********************************************/
#theme,#voice{background:#FFF;}
#theme{padding:80px 0 20px ;}
#voice{padding:60px 0 40px ;}
.theme_set,.voice_set{position: relative;z-index: 9999;}
.theme_contents,.voice_contents{margin:0 0 0 20px;padding:20px;border-radius:20px 0 0 20px;position: relative;
background:linear-gradient(225deg,#FFF,#EEF8FF);
}

/*飾り英文字*/
.theme_contents::after,.voice_contents::after{
position: absolute;
top: -38px;
left: 0px;
font-size:34px;
font-weight: bold;
color:#D6EEFF;
}
.theme_contents::after{content:"LECTURE THEME";}
.voice_contents::after{content:"CUSTOMER VOICE";}

/*背景オブジェクト*/
.theme_set::before,.voice_set::before,.theme_set::after,.voice_set::after{
content:"";
position: absolute;
height: 100px;
border-radius:0 20px 0 0;
z-index: -9999;
}
.theme_set::before,.voice_set::before{
top: -60px;
left: 0px;
width: 146px;
background:linear-gradient(225deg,#FFF,#FFF7B0);
}

.theme_set::after,.voice_set::after{
top: 40px;
left: 0px;
width: 60px;
/*background:#FFF7B0;*/
background:linear-gradient(225deg,#0B83C5,#0C3A7E);
}

.theme_contents ol,.voice_contents p {margin:40px 0 20px;}

.theme_contents .btn,.voice_contents .btn{margin: 0 -20px 0 150px;}
.theme_contents .btn a,.voice_contents .btn a{color:#FFF;background:#0B83C5;border-radius:50px 0 0 50px;}

.theme_contents ol {counter-reset: count 0;font-size:14px;}
.theme_contents li:before {content: counter(count) ". "; counter-increment: count 1;}

/* #instructor 講師について **********************************************/

#instructor{padding:40px 0;background:linear-gradient(225deg,#0B83C5,#0C3A7E);}
.instructor_photo {margin:40px auto 20px ;width:100%;}
.instructor_photo img {background: linear-gradient(180deg,#FFF,#D6EEFF);}

.instructor_contents .btn{margin: 0 auto; max-width:300px;}
.instructor_contents .btn a{color:#0B83C5;background:#FFF;}

/* footer フッターエリア **********************************************/
footer{padding:0;background:#EEF8FF;}
footer .wrapper{margin:0 auto;padding:40px 20px;text-align: center;}

footer .nav_menu{margin: 0 auto;}
footer .nav_menu li {padding:0 12px;display: inline-block;font-size:14px;position: relative;}
footer .nav_menu li ::before {
content:"»";
position: absolute;
top: 0;
left: 0;
font-size:14px;
font-weight:bold;
color:#EAD93B;
}
footer .logo {margin: 40px auto 20px; width:300px;display: flex;}
footer .logo_dh {width:145px;padding:0 10px 0 0 ;}
footer .logo_sym {width:115px;padding:0 0 0 10px;}

footer .company {font-size:12px;}
footer .copyright {padding:10px 0;background:#0C3A7E;color:#FFF;text-align:center;font-size:12px;}


/* 下層 ************************************************************************************************下層***下層***/
/* 共通のスタイル *********************************************/
.theme_set_box,.case_set_box,.instructor_set_box,.plan_set_box{margin: 0 auto; max-width:1200px;}
.title_set{padding:20px 0 40px;background:linear-gradient(225deg,#0B83C5,#0C3A7E);}
.s_title_set{padding:20px 0 40px;}
.s_title_message p{}
.lower .btn{margin: 40px auto 40px ;max-width: 300px;position: relative;}
.lower .btn::before {
content:"»";
position: absolute;
top: 3px;
right:16px;
font-size:26px;
font-weight:bold;
color:#EAD93B;
}
.lower .btn a{color:#FFF;background:#0B83C5;}
.remarks{font-size: 11px!important;font-weight: normal!important;padding: 10px 0 0;}

/* #下層#theme 講義テーマ **********************************************/
#theme_set_1 .theme_item_set,#theme_set_3 .theme_item_set {margin: 40px 0 0;}

.theme_photo{position:relative;}
.theme_photo img{position:absolute;top:-15px;right: 0;width:240px; }

#theme_set_1 .theme_item_set .point{display:block;text-align: center;}
#theme_set_1 .theme_item_set .point .point1,#theme_set_1 .theme_item_set .point .point2{
padding:10px;background: #EEF8FF;font-size: 18px;color: #333; border-radius: 20px;position: relative;
}
#theme_set_1 .theme_item_set .point .plus{background: none;color: #0C3A7E;font-size: 40px;}

#theme_set_1 .theme_item_set .point .point1::before{background: url(https://peraichi.com/user_files/download/24195f0a-a8ce-4e95-8a26-bf4fc320cca7) no-repeat;
top: -4px;
left: 0;
width: 100px;
height: 100px;
}
#theme_set_1 .theme_item_set .point .point1::after{background: url(https://peraichi.com/user_files/download/41a27c5e-0051-4ccb-afa3-67c73d15089b) no-repeat;
top: -26px;
right: 0;
width: 100px;
height: 100px;
}
#theme_set_1 .theme_item_set .point .point2::before{background: url(https://peraichi.com/user_files/download/926d7443-9f9a-4850-bda5-190211353c66) no-repeat;
top: -20px;
left: 0;
width: 100px;
height: 100px;
}
#theme_set_1 .theme_item_set .point .point2::after{background: url(https://peraichi.com/user_files/download/90691738-b504-44ee-9f3d-ad4483775b90) no-repeat;
top: 10px;
right: 0;
width: 100px;
height: 100px;
}
#theme_set_1 .theme_item_set .point .point1::before,
#theme_set_1 .theme_item_set .point .point1::after,
#theme_set_1 .theme_item_set .point .point2::before,
#theme_set_1 .theme_item_set .point .point2::after
{	
content: "";
position: absolute;
display: inline-block;
background-size: contain;
vertical-align: middle;
}
#theme_set_1 .theme_item_set .point .point1 span,
#theme_set_1 .theme_item_set .point .point2 span{ background: linear-gradient(transparent 60%, #FFF7B0 60%);}

#theme_set_1 .theme_item_set .detail {margin:40px 0 0;}
#theme_set_1 .theme_item_set .detail p{padding: 0 0 0 23px; background:transparent;position: relative;border-radius: 20px;font-size:14px;}
#theme_set_1 .theme_item_set .detail p::before{
content: "●";
position: absolute;
top: 1px;
left: 5px;
color:#0B83C5;
font-size:13px;
}

#theme_set_2 .theme_item_set .theme_title li{margin: 20px 0; padding: 20px; background: linear-gradient(225deg,#FFF,#EEF8FF);border-radius: 20px;}
#theme_set_2 .theme_item_set .theme_title li:last-child{margin: 20px 0 0; }
#theme_set_2 .theme_item_set h4{margin: 0 0 10px 0; ;}
#theme_set_2 .theme_item_set h4 span{margin: 0 16px 0 0;font-size:14px; color: #0B83C5;background: linear-gradient(transparent 60%, #FFF7B0 60%);}

#theme_set_2 .theme_item_set .theme_title_goal p{font-size:18px;color: #0B83C5;font-weight: bold;}

#theme_set_2 .theme_item_set .theme_title_day1,#theme_set_2 .theme_item_set .theme_title_day2,#theme_set_2 .theme_item_set .theme_title_goal{padding: 30px 0 10px 0 ; position: relative;}

#theme_set_2 .theme_item_set .theme_title_day1::before, #theme_set_2 .theme_item_set .theme_title_day2::before, #theme_set_2 .theme_item_set .theme_title_goal::before{
position: absolute;
top: 2px;
left: 0;
background: linear-gradient(225deg,#0B83C5,#0C3A7E);
color:#FFF;
border-radius: 100px;
padding:1px 15px;
font-size: 14px;
width: 80px;
text-align:center;
}
#theme_set_2 .theme_item_set .theme_title_day1::before {content: "Day 1";}
#theme_set_2 .theme_item_set .theme_title_day2::before {content: "Day 2";}
#theme_set_2 .theme_item_set .theme_title_goal::before {content: "GOAL";}

#theme_set_2 .theme_item_set .tobe{position: relative;}
#theme_set_2 .theme_item_set .tobe::after{
content: "";
position: absolute;
top:-114px;
right: -20px;
width: 140px;
height: 140px;
background:  url(https://peraichi.com/user_files/download/ac86b7c4-1dc8-4b8c-845a-539e5b3599af) no-repeat ;	
display: inline-block;
background-size: contain;
vertical-align: middle;
}
#theme_set_2 .theme_item_set .tobe_if{margin:0 0 40px 0;font-size: 18px;color: #0B83C5;}
#theme_set_2 .theme_item_set .tobe_if span{background: linear-gradient(transparent 60%, #FFF7B0 60%);}
	
#theme_set_2 .theme_item_set .tobe_list li{padding:0 0 10px 23px; background:transparent;position: relative;font-size:14px;}
#theme_set_2 .theme_item_set .tobe_list li:last-child{padding:0 0 0 23px; }
#theme_set_2 .theme_item_set .tobe_list li::before{
content: "●";
position: absolute;
top: 1px;
left: 5px;
color:#0B83C5;
font-size:13px;
}

#theme_set_3 .theme_item_set .assessment{margin:0 auto;text-align: center;max-width: 1200px;}
#theme_set_3 .theme_item_set .assessment{max-width: 768px;display: block;position: relative;}
#theme_set_3 .theme_item_set .assessment::before{background: url(https://peraichi.com/user_files/download/bc015f86-9516-4a27-8a74-c011fb804fd4) no-repeat;
bottom: -60px;
left: 0;
width: 80px;
height: 80px;
}
#theme_set_3 .theme_item_set .assessment::after{background: url(https://peraichi.com/user_files/download/fae45a78-dcd4-4eb9-b7b2-d377951361e1) no-repeat;
bottom: -60px;
right: 0;
width: 80px;
height: 80px;
}
#theme_set_3 .theme_item_set .assessment::before,
#theme_set_3 .theme_item_set .assessment::after
{	
content: "";
position: absolute;
display: inline-block;
background-size: contain;
vertical-align: middle;
}
#theme_set_3 .theme_item_set .tobe_if{margin:70px 0 10px;font-size: 18px;color: #0B83C5;text-align: center;}
#theme_set_3 .theme_item_set .tobe_if span{background: linear-gradient(transparent 60%, #FFF7B0 60%);}
#theme_set_3 .theme_item_set .remarks{text-align: center;}

/* #下層#case 事例・主催者・受講者の声 **********************************************/
#case_set_1 .case_item_set,#case_set_2 .case_item_set,#case_set_3 .case_item_set {margin: 0 auto;max-width: 920px;}
#case_set_1 .case_item_set {margin: 40px auto 0;}
.case_photo1,.case_photo2{position:relative;}
.case_photo1 img{position:absolute;top:-36px;right:10px;width:120px; }
.case_photo2 img{position:absolute;top:-5px;right:70px;width:110px; }

#case_set_1 .case_item_set li{margin: 20px 0; padding: 20px; background: linear-gradient(225deg,#FFF,#EEF8FF);border-radius: 20px;}
#case_set_1 .case_item_set li:last-child{margin: 20px 0 0; }
#case_set_1 .case_item_set h4{margin: 0 0 10px 0; color: #0B83C5;}

#case_set_1 .case_item_set .case_theme li{margin:0; padding: 0 0 0 23px; background:transparent;position: relative;border-radius: 20px;font-size:14px;}
#case_set_1 .case_item_set .case_theme li::before{
content: "●";
position: absolute;
top: 1px;
left: 5px;
color:#EAD93B;
font-size:13px;
}

#case_set_1 .case_item_set .case_theme,#case_set_1 .case_item_set .case_goal{padding: 30px 0 10px 0 ; position: relative;}

#case_set_1 .case_item_set .case_theme::before, #case_set_1 .case_item_set .case_goal::before{
position: absolute;
top: 2px;
left: 0;
background: linear-gradient(225deg,#0B83C5,#0C3A7E);
color:#FFF;
border-radius: 100px;
padding:1px 15px;
font-size: 14px;
width: 80px;
text-align:center;
}
#case_set_1 .case_item_set .case_theme::before {content: "受講テーマ";}
#case_set_1 .case_item_set .case_goal::before {content: "受講目的";}

#case_set_2 .case_item_set li{margin: 20px 0; padding: 10px; background: linear-gradient(225deg,#FFF,#FFFBD8);position: relative;border-radius: 20px;}
#case_set_2 .case_item_set li:last-child{margin: 20px 0 0;}

#case_set_2 .case_item_set li::before{
content: "";
position: absolute;
top: 10px;
left: 0;
right: 0;
margin: 0 auto;
display: inline-block;
width: 80px;
height: 80px;
background-color: #FFF7B0;
background-size: contain;
vertical-align: middle;
border-radius: 100%;
}
#case_set_2 .case_item_set li.organizer01::before{background-image: url(https://peraichi.com/user_files/download/9bbfeb07-ab4a-4baf-808d-15fe08266f81);}
#case_set_2 .case_item_set li.organizer02::before{background-image: url(https://peraichi.com/user_files/download/33727127-1b02-43f6-b66b-e96b2610d3b6);}
#case_set_2 .case_item_set li.organizer03::before{background-image: url(https://peraichi.com/user_files/download/84cd065a-9505-46a7-baf5-8c4dc3cb40fb);}

#case_set_2 .case_item_set p{padding: 90px 0 0 0;}

#case_set_3 .case_item_set li{margin: 20px 0; padding: 10px 30px; background: linear-gradient(225deg,#FFF,#EEF8FF);position: relative;border-radius:20px;quotes: '“' '”';}
#case_set_3 .case_item_set li:last-child{margin: 20px 0 0;}
#case_set_3 .case_item_set li::before,#case_set_3 .case_item_set li::after{
font-size: 100px;
position: absolute;
background-color: transparent;
color: #D6EEFF;
}
#case_set_3 .case_item_set li::before{content:open-quote;top: -50px;left: -10px;}
#case_set_3 .case_item_set li::after{content:close-quote;bottom: -90px;right: -10px;}

/* #下層#instructor 講師について **********************************************/
.instructor_photo2{margin:-30px auto 0;width: 100%;}
.instructor_keycopy {margin:0 20px ;padding:5px;border: 3px solid #0B83C5;}
.instructor_keycopy p{padding:10px;font-size: 18px;font-weight: bold;text-align: center;background: #EEF8FF;}
.instructor_keycopy p span{font-size: 22px;color: #0B83C5;background:linear-gradient(transparent 60%, #FFF7B0 60%);}

#instructor_set_1 .instractor_item_set {margin: 40px auto 0; max-width: 920px;}
#instructor_set_1 .instractor_item_set li{margin: 20px 0; padding: 20px; background: linear-gradient(225deg,#FFF,#EEF8FF);position: relative;border-radius: 20px;}
#instructor_set_1 .instractor_item_set li:last-child{margin: 20px 0 0;}

#instructor_set_1 .instractor_item_set li::before{
content: "";
position: absolute;
top: 10px;
left: 10px;
display: inline-block;
width: 80px;
height: 80px;
background-color: #D6EEFF;
background-size: contain;
vertical-align: middle;
border-radius: 100%;
}
#instructor_set_1 .instractor_item_set li.staff01::before{background-image: url(https://peraichi.com/user_files/download/4e4fa1ae-3c65-4213-b64f-6838444d592a);}
#instructor_set_1 .instractor_item_set li.staff02::before{background-image: url(https://peraichi.com/user_files/download/63faa002-f57e-401d-a629-096d4734b2a1);}
#instructor_set_1 .instractor_item_set li.staff03::before{background-image: url(https://peraichi.com/user_files/download/71774ef2-dd58-44a4-a33a-d73b2021da84);}
#instructor_set_1 .instractor_item_set li.staff04::before{background-image: url(https://peraichi.com/user_files/download/c3af571b-2679-4ef1-988e-0fa34f01ebf4);}
#instructor_set_1 .instractor_item_set li.staff05::before{background-image: url(https://peraichi.com/user_files/download/7c5f9d36-47ca-4d16-9252-58b1aecbd76e);}
#instructor_set_1 .instractor_item_set h4{color: #0B83C5;padding:0 0 0 90px;height: 80px;}

/* #下層#plan 料金プラン **********************************************/
.plan_photo{margin:0 0 0 0;background: #eee;position:relative;}
.plan_photo img{position:absolute;top:-30px;right: 10px;width: 32%; }

.plan_price {margin:40px 20px 0 ;padding:5px;border: 3px solid #0B83C5;}
.plan_price p{padding:10px;font-size: 18px;font-weight: bold;text-align: center;background: #EEF8FF;}
.plan_price p span.price{margin: 0 0 0 20px;font-size: 80px;}
.plan_price p span{font-size: 18px;color: #0B83C5;}

.plan_price li{font-size: 16px;background: #EEF8FF;text-align: center;}
.plan_price li span{ background: linear-gradient(transparent 60%, #FFF7B0 60%);}

#plan_set_1 .plan_item_set {margin: 0 auto;max-width: 920px;}

#plan_set_1 .plan_item_set .step{margin:40px auto 0;}

/*======================================================================================レスポンシブ調整=====*/
/* SPのスタイル *********************************************/
@media screen and (max-width: 768px) {
/* SP向けのスタイルを記述 */
	
}

/* PCのスタイル *********************************************/
@media screen and (min-width: 768px) {
/* PC向けのスタイルを記述 */

/* header ヘッダーエリア… **********************************************/
.c-header {
  padding: 20px 40px; 
}
.c-header__list-item {
width:auto;
border-bottom: none;
}
.contact_btn a{margin:0 ;padding: 14px 24px; background:#0B83C5; color:#FFF;border-radius:50px;text-align:center;}


/* 共通のスタイル *********************************************/
p{font-size:18px;}
section{padding:80px 20px 0;}

.btn{text-align:center;font-size:18px;font-weight: bold;}
.btn::before {
top: 4px;
right: 30px;
font-size:30px
}
	
.logo{width:240px;}
	
.title_center,.title_left{font-size:40px;font-weight: 600;}
.title_center,.title_left{position: relative;}
.title_center{color:#FFF;text-align:center;}
.title_left{color:#0C3A7E;}
.title_center::after,.title_left::after{
content:"";
position: absolute;
top: 66px;
left: 0;
right: 0;
bottom:0;
width: 50px;
height: auto;
border-bottom: 6px dotted #EAD93B;
}
.title_center::after{
margin: auto;
}
.br-sp {display: none; }
	
/* #mv メインビジュアルエリア… **********************************************/
#mv{padding:94px 40px 80px;background: url("https://peraichi.com/user_files/download/47465ca2-660c-4baa-ab56-23e255ef2507") no-repeat center top #0B83C5;box-shadow: 1px 3px 10px -9px;}

.mv_set{margin:0 auto;max-width: 1120px;text-align: left;}
.mv_set .mv_copy{font-size: 30px;font-weight: bold;}
.mv_set .mv_copy .strong{font-size: 44px;}
.mv_set .mv_img{margin: 20px 0; max-width: 475px;}
.mv_set .btn{margin: 0;width:475px;}
.mv_set .btn a{color:#FFF;background:#0B83C5;}

/* #about デジハイクとは？ **********************************************/
#about {padding:80px 40px;}
.about_title::after {
top: -16px;
left: 370px;
font-size: 100px;
opacity: 0.2;
}
	
.about_set{position:relative;}
.about_message{width:60%;}
.about_img{position: absolute;top:70px; right:0;width:37%;}
.about_bg{width:340px; top:40px; right:20px;z-index: -9999;}
	
/* #taikan デジハイク3つの「体感」 **********************************************/
#taikan{padding:80px 40px;}
.taikan_3point{margin:40px 0 0;padding:40px 14%;}
.taikan_3point h3 {margin:0 0 10px 0;font-size:28px;}

.taikan_3point p {margin:20px 0 0 -60px;}

.point1, .point2, .point3{
padding: 0 0 40px 60px;font-size:14px;
}
.point3{
padding: 0 0 0 60px;
}
.point1::before,.point2::before,.point3::before{
top: -20px;
font-size:80px;
}
	
/* #theme 講義テーマ *//* voice 事例・主催者・受講者の声 **********************************************/
#theme{padding:100px 40px 80px 40px;}
#voice{padding:80px 40px 80px 40px;}
.theme_contents,.voice_contents{margin:0 0 0 0;padding:40px;max-width:980px; border-radius:20px;}
	
/*飾り英文字*/
.theme_contents::after,.voice_contents::after{
top: -64px;
font-size:60px;
}

/*背景オブジェクト*/
.theme_set::before,.voice_set::before,.theme_set::after,.voice_set::after{
content:"";
position: absolute;
border-radius: 20px;
}
	
.theme_set::before,.voice_set::before{
top:-40px;
left: auto;
right: 0px;
width: 180px;
height: 180px;
}

.theme_set::after,.voice_set::after{
top: 70px;
left: auto;
right: 5%;
width: 280px;
height: 246px;
}
	
.theme_contents ol {font-size:18px;}
	
.theme_contents .btn,.voice_contents .btn{
position: absolute;
bottom:40px;
right: 40px;
width: 280px;
margin: 0 ;}
.theme_contents .btn a,.voice_contents .btn a{border-radius:50px;}
	
/* #instructor 講師について **********************************************/
#instructor{padding:80px 40px;}
.instructor_photo {margin:40px auto ;width:100%;}
.instructor_photo img{border-radius: 20px;}

/* footer フッターエリア **********************************************/
footer .nav_menu li {font-size:16px;}
footer .logo {width:500px;display: flex;}
footer .logo_dh {width:256px;padding:0 10px;}
footer .logo_sym {width:200px;padding:0 10px;}
	
/* 下層 ************************************************************************************************下層***下層***/
/* 共通のスタイル *********************************************/
.title_set{padding:60px 0 ;}
.s_title_message p{font-size:20px;}
.lower .btn{margin: 80px auto  ;max-width: 700px;}
.lower .btn::before {
top: 8px;
right: 30px;
font-size:30px;
}
.lower .btn a{padding:20px;}
.remarks{font-size: 14px!important;}
	
/* #下層#theme 講義テーマ **********************************************/
.theme_photo{margin:0 auto;max-width:1200px;}
.theme_photo img{top:-40px;width:500px;}
	
#theme_set_1 .theme_item_set {margin: 60px auto 0;max-width: 920px;}
	
#theme_set_1 .theme_item_set .point{display:flex;}
#theme_set_1 .theme_item_set .point .point1,#theme_set_1 .theme_item_set .point .point2{
padding:30px 0;font-size:24px; width:45%;
}
#theme_set_1 .theme_item_set .point .plus{padding:0 70px;font-size: 80px;}

#theme_set_1 .theme_item_set .point .point1:before{
top: -18px;
left: -20px;
width: 160px;
height: 160px;
}
#theme_set_1 .theme_item_set .point .point1:after{
top: -26px;
right: -50px;
width: 160px;
height: 160px;
}
#theme_set_1 .theme_item_set .point .point2:before{
top: -20px;
left: -50px;
width: 160px;
height: 160px;
}
#theme_set_1 .theme_item_set .point .point2:after{
top: -20px;
right: -20px;
width: 160px;
height: 160px;
}
	
#theme_set_1 .theme_item_set .detail {margin:60px auto 0;max-width: 400px;}
#theme_set_1 .theme_item_set .detail p{padding: 0 0 0 26px;font-size:18px;}
#theme_set_1 .theme_item_set .detail p::before{
top: 2px;
left: 5px;
font-size:16px;
}

#theme_set_2 .theme_item_set .tobe::after{
top:-116px;
right: 0;
width: 400px;
height: 400px;
}
#theme_set_2 .theme_item_set .tobe_if{font-size: 28px;background: #FFF;display: inline-block;}
	
#theme_set_2 .theme_item_set .tobe_list{max-width:706px; margin: 0 0 40px 0;}
#theme_set_2 .theme_item_set .tobe_list li{padding:0 10px 10px 34px; background:#FFF;font-size:22px;}
#theme_set_2 .theme_item_set .tobe_list li:last-child{padding:0 10px 0 34px; }
#theme_set_2 .theme_item_set .tobe_list li::before{
content: "ー";
position: absolute;
top: 0;
left: 5px;
color:#EAD93B;
font-size:22px;
font-weight: bold;
}
#theme_set_2 .theme_item_set h4 {font-size: 24px;}
#theme_set_2 .theme_item_set h4 span {font-size: 20px;}
#theme_set_2 .theme_item_set .theme_title{max-width: 920px;margin:0 auto;}
#theme_set_2 .theme_item_set .theme_title_goal{padding: 0 0 20px 130px ;}
#theme_set_2 .theme_item_set .theme_title_day1{padding: 0 0 20px 130px ;}
#theme_set_2 .theme_item_set .theme_title_day2{padding: 0 0 0 130px ;}
#theme_set_2 .theme_item_set .theme_title li {padding:40px;	}
		
#theme_set_3 .theme_item_set .assessment::before{
bottom: -30px;
left: -80px;
width: 180px;
height: 180px;
}
#theme_set_3 .theme_item_set .assessment::after{
bottom: -30px;
right: -80px;
width: 180px;
height: 180px;
}
	
#theme_set_3 .theme_item_set .tobe_if{margin:40px 0 10px;font-size: 28px;}

/* #下層#case 事例・主催者・受講者の声 **********************************************/
.case_photo1,.case_photo2{margin:0 auto;max-width:1200px;}
.case_photo1 img{top:-110px;right:20px;width:220px; }
.case_photo2 img{top:-80px;right:150px;width:220px; }
	
#case_set_1 .case_item_set li{padding: 40px;}
#case_set_1 .case_item_set li:last-child{margin: 20px 0 0; }
#case_set_1 .case_item_set h4{margin: 0 0 20px 0; font-size: 24px;}

#case_set_1 .case_item_set .case_theme li{margin:0; padding: 0 0 0 26px; font-size:18px;}
#case_set_1 .case_item_set .case_theme li::before{
font-size:16px;
}
#case_set_1 .case_item_set .case_theme{padding: 0 0 20px 130px ;}
#case_set_1 .case_item_set .case_goal{padding: 0 0 0 130px ;}
	
#case_set_2 .case_item_set li{padding: 40px;}
#case_set_2 .case_item_set li::before{
top: 40px;
left: 40px;
right: auto;
margin: 0;
width: 140px;
height: 140px;
}
#case_set_2 .case_item_set p{padding:0 0 0 160px;}
	
#case_set_3 .case_item_set li{padding: 40px 120px;}
#case_set_3 .case_item_set li::before,#case_set_3 .case_item_set li::after{font-size: 180px;}
#case_set_3 .case_item_set li::before{top: -60px;left: 20px;}
#case_set_3 .case_item_set li::after{bottom: -130px;right: -10px;}

/* #下層#instructor 講師について **********************************************/
.instructor_photo2{margin:-60px auto 0;max-width:920px;}
.instructor_keycopy {margin:0 auto ;padding:10px;max-width:1200px;}
.instructor_keycopy p{padding:20px;font-size: 28px;line-height: 2.5em;}
.instructor_keycopy p span{font-size: 32px;}

#instructor_set_1 .instractor_item_set li{padding: 40px;}
#instructor_set_1 .instractor_item_set li::before{
top: 40px;
left: 40px;
width: 140px;
height: 140px;
}
#instructor_set_1 .instractor_item_set h4{color: #0B83C5;padding:0 0 0 160px;height: auto;font-size: 24px;}
#instructor_set_1 .instractor_item_set p{padding:10px 0 0 160px;}
	
/* #下層#plan 料金プラン **********************************************/
.plan_photo {margin:0 auto;max-width:1200px; }
.plan_photo img{top:-50px;right:0;width:30%; }

.plan_price {margin:80px auto 0 ;padding:10px;max-width: 1200px;}
.plan_price p{padding:0 0 20px 0;font-size: 28px;}
.plan_price p span.price{font-size: 100px;}
.plan_price p span{font-size: 24px;}
	
.plan_price li{font-size: 22px;padding:0 0 10px 0;}
}
/* #下層#theme 0117追加 講義テーマ *********************************************
#theme_set_2 p.bold_title{
  font-weight: bold;
  margin: 0;
  padding: 0 0 0 130px;
  color: #0B83C5;
  }
  #theme_set_2 p.bold_title span{
    border-bottom: 1px solid #0B83C5;
    padding-bottom: 5px;
  }
#theme_set_2 ul .ul_dot{
  margin: 0;
  padding: 10px 0 20px 150px;
}
#theme_set_2 ul li.dot{
  margin: 0!important;
  padding: 0!important;
  list-style-type: disc;
  background: none!important;
  font-weight: bold;
}
#theme_set_2 ul li.dot_child{
  margin: 0!important;
    padding: 0!important;
    background: none!important;
}
#theme_set_2 .theme_item_set .theme_title_day2 {
    padding: 0 0 20px 130px!important;
    }
#theme_set_2 p.notes{
  font-size: 14px;
} */
/*======================================================================================レスポンシブ調整=====*/
/* SPのスタイル *********************************************/
@media screen and (max-width: 768px) {
  /* SP向けのスタイルを記述 */
  #theme_set_2 p.bold_title{
    font-weight: bold;
    margin: 0;
    padding: 0 0 0 0px;
    }
  #theme_set_2 ul .ul_dot{
    margin: 0;
    padding: 10px 0 20px 20px;
    font-size: 14px;
  }
  #theme_set_2 .theme_item_set .theme_title_day2 {
    padding: 40px 0 20px 0px!important;
    }
    #theme_set_2 p.notes{
      font-size: 12px;
    }
  }
  /* #下層#theme 0117追加 講義テーマ PC **********************************************/
#theme_detail {
  max-width: 920px;
    margin: 0 auto;
    padding-top: 0;
}

#theme_detail .theme_detail_blue_box{
  margin-bottom: 60px;
  padding: 40px;
  background: #f2f8ff;
  border-radius: 20px;
}
#theme_detail ul.title{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 10px;
}
#theme_detail ul.title li{
  flex-direction: row;
}
#theme_detail ul.title.blue li.color{
  background: #212b67;
  color: white;
  border-radius: 50px 0 0 50px;
  padding: 10px 30px;
  width: 26%;
}
#theme_detail ul.title.yellow li.color{
  background: #ead93b; 
    color: black;
    border-radius: 50px 0 0 50px;
    padding: 10px 30px;
    width: 26%;
  }
  #theme_detail ul.title li.white{
    background: white;
    color: black;
    border-radius: 0 50px 50px 0;
    padding: 10px 36px 10px 20px;
    width: 74%; 
    font-weight: bold;
  }
  .theme_detail_program_title{
    margin: 30px auto;
    text-align: center;
  }
  .theme_detail_program_title p{
    font-size: 24px;
  }
  .theme_detail_program_title p:before{
    content: "●";
    position: relative;
    top: -3px;
    left: -10px;
    color: #ead93b;
    font-size: 10px;
  }
  .theme_detail_program_title p:after{
    content: "●";
    position: relative;
    top: -3px;
    left: 10px;
    color: #ead93b;
    font-size: 10px;
  }
  .theme_detail_program_box{
    width: 100%;
    margin: 0 auto 25px;
    background-color: white;
    padding-bottom: 1px;
  }
  .theme_detail_program_box_title{
    text-align: center;
    background-color: #0c3a7e;
    color: white;
    padding: 8px;
  }
  .theme_detail_program_box_title p{
    font-size: 24px;
  }
  .program_box_parts{
    display: flex;
    flex-direction: row;
    width: 92%;
    align-items: flex-start;
    margin: 30px auto;
    background-color: #7199c9;
  }
  .program_box_parts li.left_box{
    padding:10px 10px 0 15px;
    color: white;
    width: 25%;
  }
  .program_box_parts li.right_box{
    background-color: white;
    width: 75%;
  }
  .program_box_parts li.right_box ul li{
    padding: 10px 10px 10px 15px;
    border: 1px solid #ececec;
  }
  .program_box_parts li.right_box ul li.two{
    border-top: none;
  }
  .program_box_parts li.right_box ul li p.blue{
    font-size: 24px;
    color: #212b67;
  }
  #theme_detail .theme_detail_blue_box p sup{
    font-size: 14px;
  }
  .br-sp {
    display: none;
}

  /*======================================================================================レスポンシブ調整=====*/
/* #下層#theme 0117追加 講義テーマ tabletのスタイル *********************************************/
@media screen and (min-width:480px) and (max-width:820px) {
  #theme_detail ul.title{
    font-size: 16px;
  }
  .br-sp {
    display: none;
}
}
  /*======================================================================================レスポンシブ調整=====*/
/* #下層#theme 0117追加 受講後に目指す姿 tabletのスタイル イラストの非表示 *********************************************/
/* イラストを非表示にする */
@media screen and (min-width:480px) and (max-width:1024px) {
  #theme_set_2 .theme_item_set .tobe::after{
    display: none;
  }
}

  /*======================================================================================レスポンシブ調整=====*/
/* #下層#theme 0117追加 講義テーマ spのスタイル *********************************************/
@media screen and (max-width:479px) {
  #theme_detail {
    max-width: 100%;
  }
  
  #theme_detail .theme_detail_blue_box{
    margin-bottom: 30px;
    padding: 20px;
  }
  #theme_detail ul.title{
    font-size: 14px;
    margin-bottom: 10px;
  }
  #theme_detail ul.title.blue li.color{
    border-radius: 20px 0 0 20px;
    padding: 10px 15px;
    width: 30%;
  }
  #theme_detail ul.title.yellow li.color{
      border-radius: 20px 0 0 20px;
      padding: 10px 15px;
      width: 30%;
    }
    #theme_detail ul.title li.white{
      border-radius: 0 20px 20px 0;
      padding: 10px 15px;
      width: 70%; 
    }
    .theme_detail_program_title{
      margin: 20px auto;
    }
    .theme_detail_program_title p{
      font-size: 18px;
    }
  
    .theme_detail_program_box{
      margin: 0 auto 20px;
      padding-bottom: 1px;
    }
    .theme_detail_program_box_title{
      padding: 8px;
    }
    .theme_detail_program_box_title p{
      font-size: 16px;
    }
    .program_box_parts{
      width: 90%;
      margin: 20px auto;
    }
    .program_box_parts li.left_box{
      padding:10px 10px 0 10px;
      width: 30%;
    }
    .program_box_parts li.right_box{
      width: 70%;
    }
    .program_box_parts li.right_box ul li{
      padding: 10px 10px 10px 10px;
    }
    .program_box_parts li.right_box ul li p.blue{
      font-size: 16px;
    }
    #theme_detail .theme_detail_blue_box p sup{
      font-size: 12px;
    }
    .br-sp {
      display: block;
  }
}
/* 0117追加　footer */
.footer_bottom{
  background-image: none;
    background-color: rgb(12, 58, 126);
    --block-bg-color: #0C3A7E;
    margin: 0 auto;
    text-align: center;
    padding: 10px 0px 18px;
}
.s_footer-peraichi{
  display: none;
}
/* ============================================== */
/* テーマ一覧 アコーディオン 最終統合版 */
/* ============================================== */

/* 1. 全般的なリセットと境界線の統一 */
.accordion_input_tobe {
    display: none;
}
.accordion_wrap_tobe {
    max-width: 920px; 
    margin: 0 auto !important;
}

/* 2. アコーディオンタイトル（開閉要素）のスタイル */
.accordion_title_tobe {
    display: block;
    cursor: pointer;
    background-color: #FFF; 
    color: #0C3A7E !important; 
    padding: 20px 40px; 
    
    /* アコーディオン見出しの文字サイズを拡大 (24px) */
    font-size: 24px !important; 
    font-weight: bold !important;
    
    /* 区切り線を下部だけに (3px, #0B83C5) */
    border-top: none !important; 
    border-bottom: 3px solid #0B83C5 !important;
    
    position: relative;
    /* ハイライトは無し */
    background: #FFF !important;
}

/* アコーディオンタイトル内のハイライトクラスは無効化 */
.accordion_title_tobe.is-highlighted {
    background: none !important;
}

/* 3. 開閉アイコンのスタイル */
.accordion_title_tobe::after {
    /* 色 #0B83C5 は維持 */
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%230B83C5' d='M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z'/%3E%3C/svg%3E") !important;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(180deg); /* 閉じた状態は下向き矢印 */
    transition: transform 0.3s;
}

/* チェックが入ったときのアイコン（開いた状態は上向き矢図） */
.accordion_input_tobe:checked + .accordion_title_tobe::after {
    transform: translateY(-50%) rotate(0deg) !important; /* 上向き矢印 */
}

/* 4. 詳細コンテンツのスタイル (開閉制御) */
.accordion_content_tobe {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    background-color: transparent !important; 
    border: none !important;
    padding: 0 40px;
}

.accordion_input_tobe:checked ~ .accordion_content_tobe {
    max-height: 2000px !important; /* 十分な高さを確保 */
    padding-top: 15px !important; 
    padding-bottom: 20px !important;
}

/* 5. 詳細見出し (p.content-heading) のスタイル */
.accordion_content_tobe .content-heading {
    /* === 修正点: ハイライトを適用 === */
    background: linear-gradient(transparent 60%, #FFF7B0 60%) !important;
    color: #0C3A7E !important; 
    
    font-size: 18px !important; 
    font-weight: bold !important;
    padding: 0 !important;
    margin-bottom: 10px !important;
    margin-top: 0 !important;
    padding-left: 20px !important;
}

/* 6. 箇条書き（ul.tobe_list_custom）のスタイル */
.accordion_content_tobe .tobe_list_custom {
    padding-left: 0 !important;
    margin-top: 5px !important;
    margin-bottom: 0 !important;
}

/* 7. 個別項目 (li.content-item) のスタイル */
.accordion_content_tobe .content-item {
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: #404040 !important; /* 詳細部分の文字色 */
    padding: 8px 0 8px 20px !important; /* 上下のパディングを少し増やして行間を調整 */
    position: relative;
    margin: 0 !important;
    list-style: none !important;
}

/* 8. content-item内の太字（項目名）のスタイル調整 */
.accordion_content_tobe .content-item strong {
    font-weight: bold !important;
    background: none !important; 
    display: inline-block;
    margin-bottom: 2px;
}

/* 9. 箇条書きマーカー（黄色のハイフン） */
.accordion_content_tobe .content-item::before {
    content: "ー" !important; 
    color: #EAD93B !important; 
    font-size: 16px;
    position: absolute;
    top: 6px; /* 垂直位置を調整 */
    left: 0;
}

/* 10. SP調整 */
@media screen and (max-width: 768px) {
    .accordion_title_tobe {
        font-size: 18px !important; /* SPで18pxに縮小 */
        padding: 15px 15px !important; 
    }
    .accordion_title_tobe::after {
        right: 15px;
    }
    .accordion_content_tobe {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .accordion_content_tobe .content-heading {
        font-size: 16px !important;
        padding-left: 0px !important;
    }
    .accordion_content_tobe .content-item {
        font-size: 14px !important;
        padding-left: 20px !important;
    }
    .accordion_content_tobe .content-item::before {
        top: 6px;
    }
}
/* ============================================== */
/* 追記: SP表示フォントサイズ調整 */
/* ============================================== */

@media screen and (max-width: 768px) {
    /* アコーディオンタイトル（開閉要素）のスタイルを上書き */
    .accordion_title_tobe {
        /* SP時のフォントサイズを18pxから16pxに縮小 */
        font-size: 16px !important; 
        
        /* 左右のパディングを減らしてコンテンツ幅を確保 */
        padding: 12px 15px !important; 
    }
    
    /* アイコン位置の微調整 (フォント縮小による) */
    .accordion_title_tobe::after {
        right: 10px; /* アイコンをさらに右端に寄せる */
    }
}