@charset "UTF-8";
/*==========================
common
==========================*/
:root {
    --color-mainBlue: #7fb5d1;
    --color-darkBlue: #24566b;
    --color-mint: #89C8A6;
    --color-lightBlue: #e5f2f7;
    --color-lightMint: #eaf5f0;
    --color-beige: #faf4ee;
    --color-white: #fff;
    --color-black: #333;

    --backColor-lightMint: 234, 245, 240; 

    --font-base: "Zen Kaku Gothic New", sans-serif;
    --font-number: "Comfortaa", san-serif;
    --font-size-title: 2.5rem;
    --font-size-title_sp: 1.7rem;
    --font-size-btn: 2rem;
    --font-size-btn_sp: 1.25rem;
    --font-size-sub: 1.5rem;
    --font-size-sub_sp: 1.25rem;
    --font-size-base: 1.25rem;
    --font-size-base_sp: 1.0rem;
    --font-size-nav: 0.8rem;

    --border-radius_ll: 300px;
    --border-radius_l: 90px;
    --border-radius_m: 60px;
    --border-radius_s: 30px;
    --border-radius_ss: 20px;

    --radius_l_topLeft0: 0 var(--border-radius_l) var(--border-radius_l) var(--border-radius_l);
    --radius_l_topRight0: var(--border-radius_l) 0 var(--border-radius_l) var(--border-radius_l);
    --radius_l_bottomLeft0: var(--border-radius_l) var(--border-radius_l) var(--border-radius_l) 0;
    --radius_l_bottomRight0: var(--border-radius_l) var(--border-radius_l) 0 var(--border-radius_l);
    --radius_m_topLeft0: var(0 --border-radius_m) var(--border-radius_m) var(--border-radius_m);
    --radius_m_topRight0: var(--border-radius_m) 0 var(--border-radius_m) var(--border-radius_m);
    --radius_m_bottomLeft0: var(--border-radius_m) var(--border-radius_m) var(--border-radius_m) 0;
    --radius_m_bottomRight0: var(--border-radius_m) var(--border-radius_m) 0 var(--border-radius_m);
    --radius_s_topLeft0: 0 var(--border-radius_s) var(--border-radius_s) var(--border-radius_s);
    --radius_s_topRight0: var(--border-radius_s) 0 var(--border-radius_s) var(--border-radius_s);
    --radius_s_bottomLeft0: var(--border-radius_s) var(--border-radius_s) var(--border-radius_s) 0;
    --radius_s_bottomRight0: var(--border-radius_s) var(--border-radius_s) 0 var(--border-radius_s);
    --radius_ss_topLeft0: 0 var(--border-radius_ss) var(--border-radius_ss) var(--border-radius_ss) 0;
    --radius_ss_topRight0:var(--border-radius_ss) 0 var(--border-radius_ss) var(--border-radius_ss);
    --radius_ss_bottomLeft0: var(--border-radius_ss) var(--border-radius_ss) var(--border-radius_ss) 0;
    --radius_ss_bottomRight0: var(--border-radius_ss) var(--border-radius_ss) 0 var(--border-radius_ss);
}

html {
  font-size: 100%;
}

body {
    font-family: var(--font-base);
    font-style: normal;
    font-size: var(--font-size-base);
    color: var(--color-black, #333);
    background-color: var(--color-white, #fff);
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  color: var(--color-darkBlue);
  font-size: var(--font-size-title);
  letter-spacing: 0.2em;
  text-align: center;
  border: none;
}

h1::after, h2::after, h3::after, h4::after, h5::after, h6::after {
  content: none;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin: 0;
  line-height: normal;
}

dl, dt, dd {
  font-weight: 400;
  font-size: var(--font-size-title);
  border: none;
}

section {
  padding: 100px 0;
}

table, tbody, td, tfoot, th, thead, tr,
.table tbody tr td, .table tbody tr th, .table td, .table th, .table thead tr td, .table thead tr th, table tbody tr td, table tbody tr th, table td, table th, table thead tr td, table thead tr th {
  border: none;
}

/* width */
.w-90 {
  width: 90%;
}
.w-15 {
  width: 15%;
}

/* margin＆padding */

.my-40 {
  margin: 40px auto;
}

.my100 {
  margin: 100px auto;
}

.mt30 {
  margin-top: 30px;
}

.mt75 {
  margin-top: 75px;
}

.mt100 {
  margin-top: 100px;
}

.mt180 {
  margin-top: 180px;
}

.mt190 {
  margin-top: 190px;
}

.mt-10 {
  margin-top: -10%;
}

.mt-115 {
  margin-top: -115px;
}

.mt-130 {
  margin-top: -130px;
}

.mt-150 {
  margin-top: -150px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb100 {
  margin-bottom: 100px;
}

.py75 {
  padding-top: 75px;
  padding-bottom: 75px;
}

.pb60 {
  padding-bottom: 60px;
}

.txt-title {
  letter-spacing: 0.2em;
}

/* ボタン */
.btn, .btn-m, .btn-b {
  display: inline-block;
  padding: 40px 30px;
  color: var(--color-white);
  border-radius: var(--border-radius_ss);
  font-size: var(--font-size-btn);
}

.btn-m {
  background-color: var(--color-mint);
}

.btn-b {
  background-color: var(--color-mainBlue);
}

/* ボタンホバー */
.btn-m:hover {
  color: var(--color-mint);
  background-color: var(--color-white);
  border: 1px solid var(--color-mint);
}

.btn-b:hover {
  color: var(--color-mainBlue);
  background-color: var(--color-white);
  border: 1px solid var(--color-mainBlue);
}

/* チェックアイコン */
.img-check {
  width: 40px;
  height: 40px;
  margin-bottom: 2px;
}

/*==========================
header
==========================*/
header {
  height: 100px;
}

.logo {
  width: 25%;
}

.img-logo {
  margin: 5% 0;
  max-height: 100px;
}

header .navbar-nav {
  font-size: var(--font-size-nav);
  line-height: 1.2;
}

header .nav-link {
  color: var(--color-black);
}

/* ナビホバー */
header .nav-link:hover {
  color: var(--color-mainBlue);
}

.sub-txt {
  display: block;
  font-size: 0.6rem;
}

/*==========================
MV
==========================*/
.mv {
  padding-top: 0;
  background-color: var(--color-beige);
}

.kv {
  background-color: var(--color-white);
  height: 550px;
}

.mv-title {
  background-color: rgba(var(--backColor-lightMint), 0.8);
  left: 5%;
  bottom: 9%;
  border-radius: var(--radius_m_bottomRight0);
}

.mv-catch {
  font-size: var(--font-size-base);
  letter-spacing: normal;
}

/* 横スクロール */
	@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
    to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
  gap: 48px;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 48px;
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: 530px;
  height: 450px;
}
.scroll-infinity__item_s {
  width: 120px;
  height: 130px;
}
.scroll-infinity__item_m {
  width: 210px;
  height: 200px;
}

.img-kv {
  width: 100%;
  height: 100%;
  border-radius: var(--radius_l_bottomLeft0);
}

.scroll-infinity__item_s .img-kv {
  border-radius: var(--radius_s_bottomLeft0);
}

.scroll-infinity__item_m .img-kv {
  border-radius: var(--radius_m_bottomLeft0);
}

/* 波SVG */
.wave_path {
  fill: var(--color-beige);
}

/* about */
.img-deco01 {
  width: 50%;
  left: -20%;
}

.img-deco02 {
  width: 50%;
  top: -200%;
  right: -10%;
}

.img-deco03 {
  width: 25%;
  top: 200%;
}

.img-deco04 {
  width: 15%;
  top: 50%;
  left: 0;
}

.img-deco05 {
  width: 15%;
  top: 0;
  right: 0;
}

.img-about {
  width: 480px;
  height: 330px;
  border-radius: var(--radius_l_bottomLeft0);
  object-fit: cover;
}

.img-about_l {
  border-radius: var(--radius_l_bottomRight0);
}


/*==========================
ACTIVITY
==========================*/
.activity-content {
  padding-top: 80px;
  height: 100vh;
  overflow: hidden;
}

/* 左コンテンツ */
.activity-left {
  margin-top: 100px;
}

/* ページネーション */
.activity-plist {
  gap: 10px;
}

.swiper-pagination-vertical.swiper-pagination-bullets, 
.swiper-vertical>.swiper-pagination-bullets {
  left: -45%;
}

.activity-pitem {
  padding: 20px;
  width: 70px;
  height: auto;
  border: solid 1px var(--color-darkBlue);
  background-color: var(--color-white);
  opacity: 1;
}

.activity-menu {
  display: none;
}

.swiper-pagination-bullet.active {
  width: 200px;
}
.swiper-pagination-bullet.active .activity-menu {
  display: inline;
}

/* 右コンテンツ */
.activity-right {
  /* width: 100%; */
  /* height: 400vh; */
}

.activity-list {
  max-width: 730px;
  margin: 0;
  padding: 0;
  height: 100vh;
}

.activity-item {
  height: min(90vh, 730px);
}

.activity-card {
  height: min(90vh, 730px);
  background-color: var(--color-lightMint);
  border-radius: var(--radius_l_bottomLeft0);
  padding: 80px 70px 55px;
  text-align: center;
}

.activity-item:nth-child(2n) .activity-card{
  background-color: var(--color-lightBlue);
}

.activity-item:nth-child(3n) .activity-card{
  background-color: var(--color-beige);
}

.img-activity {
  height: 50%;
  max-width: 70%;
  object-fit: cover;
}

/* 波SVG */
#Activity .wave_item {
  width: 100%;
  bottom: -5%;
}

#Activity .wave_path {
  fill: var(--color-lightBlue);
}

/*==========================
デジタル相談
==========================*/
#Support {
  background-color: var(--color-lightBlue);
  margin-top: 30px;
}

.support-content {
  padding-top: 50px;
}

.img-support {
  width: 540px;
  border-radius: var(--radius_l_bottomLeft0);
}

.point-list {
  gap: 150px;
}

.point-item {
  width: 200px;
  height: 200px;
  background-color: var(--color-mainBlue);
  border-radius: var(--radius_m_bottomRight0);
  font-size: var(--font-size-title);
  color: var(--color-white);
  padding: 45px 32px;
}

.point-item:nth-child(2) {
  background-color: var(--color-mint);
  border-radius: var(--radius_m_bottomLeft0);
}

.point-item:nth-child(3) {
  border-radius: var(--radius_m_bottomLeft0);
}

.support-shedule {
  padding: 100px 75px;
}

.data-list {
  font-size: var(--font-size-title);
  font-weight: 300;
  align-items: center;
}

.data-ttl {
  width: 240px;
  padding: 10px 20px;
  color: var(--color-white);
  background-color: var(--color-mainBlue);
  border-radius: var(--radius_s_bottomRight0);
}

.data-ttl:nth-of-type(2) {
  background-color: var(--color-mint);
}

.data-item {
  color: var(--color-darkBlue);
  margin: 0;
}

/*==========================
最新情報
==========================*/
.img-news {
  width: 220px;
  height: 220px;
  border-radius: var(--radius_s_bottomLeft0);
}

.news-title {
  color: var(--color-black);
  font-size: var(--font-size-sub);
}

/*==========================
自習カフェ
==========================*/
#study {
  background-color: var(--color-lightMint);
  border-radius: 0 var(--border-radius_ll) 0 0;
}

.study-info .txt {
  margin: 30px 0 40px;
}

.img-study {
  width: 520px;
  height: 480px;
  border-radius: var(--radius_l_bottomRight0);
}

.study-info .data-ttl {
  background-color: var(--color-mint);
}

.study-info .btn-b {
  padding: 20px;
  margin-left: -0.8rem;
}

.study-list {
  width: 50%;
  gap: 30px 40px;
}

.study-item {
  padding: 9px 32px;
  background-color: var(--color-white);
  border: solid 1px var(--color-darkBlue);
  border-radius: var(--border-radius_s);
  display: inline-block;
}

/* 活動レポート */
.img-report {
  width: 100%;
  border-radius: var(--radius_s_bottomLeft0);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.report-item .report-ttl {
  font-size: var(--font-size-base);
  color: var(--color-black);
}

/*==========================
デジステプラス
==========================*/
.img-plus {
  width: 450px;
  height: 380px;
  border-radius: var(--radius_m_bottomLeft0);
}

/* 制作実績 */
.works-item {
  text-align: center;
}

.works-ttl {
  font-size: var(--font-size-sub);
}

.img-works {
  width: 100%;
  height: 250px;
  border-radius: var(--radius_s_bottomLeft0);
}

.works-item .btn-m {
  font-size: var(--font-size-base);
  width: 100%;
  border-radius: 10px;
  padding: 15px 0;
}

/* 制作までの流れ */
.flow {
  width: 75%;
  background-color: var(--color-lightBlue);
  border-radius: var(--radius_m_bottomLeft0);
  padding: 100px 4%;
}

.flow-item {
  counter-increment: count;
}


.flow-content {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 3% 4%;
  position: relative;
  align-items: center;
}

.flow-ttl {
  color: var(--color-darkBlue);
  font-size: var(--font-size-title);
}

.step {
  display: inline-block;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background-color: var(--color-mainBlue);
  color: var(--color-white);
  text-align: center;
  position: relative;
  font-size: var(--font-size-base);
  vertical-align: middle;
}

.step::before {
  content: counter(count);
  position: absolute;
  top: 20%;
  left: 40%;
  font-size: var(--font-size-title);
}

.arrow-shadow{
  filter: drop-shadow(0 .125rem .25rem rgba(0,0,0,.075));
}

.arrow {
  background-color: var(--color-white);
  height: calc(tan(60deg) * 60px / 2);
  width: 60px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* 料金表 */
.price {
  width: 75%;
  background-color: var(--color-beige);
  border-radius: var(--radius_m_bottomLeft0);
  padding: 100px 6%;
}

.price-list:nth-of-type(3),
.price-list:nth-of-type(10) {
  border-top: dotted 1px var(--color-black);
}

.price-ttl {
  font-size: var(--font-size-title);
  font-weight: 400;
  color: var(--color-darkBlue);
  width: 55%;
  padding-left: 4%;
  vertical-align: text-top;
}

.remark {
  font-size: var(--font-size-base);
  color: var(--color-black);
}

.price-item {
  font-size: var(--font-size-base);
  width: 30%;
}
td, th, .price-num {
  width: 12%;
  font-family: var(--font-number);
  font-size: var(--font-base);
}

.price-list_web td {
  padding-top: 1%;
  padding-bottom: 1%;
}

/*==========================
アクセス
==========================*/
#access {
  background-color: var(--color-lightBlue);
  border-top-left-radius: 300px;
}

.address-list {
  width: 75%;
}

.address-ttl, .address-item {
  font-size: var(--font-size-base);
}

.address-ttl {
  color: var(--color-darkBlue);
}

.img-access {
  width: 300px;
  height: 200px;
  border-radius: var(--radius_m_bottomLeft0);
}

.img-access:nth-child(1) {
  border-radius: var(--radius_m_bottomRight0);
}

/*==========================
お問い合わせ
==========================*/
#Contact .txt {
  width: 50%;
  max-width: 640px;
}

.contact-form {
  width: 75%;
  background-color: var(--color-lightBlue);
  border-radius: var(--radius_l_bottomLeft0);
}

/* お問い合わせ横並び */
.wpcf7-form p {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  justify-content: space-between;
}

/* お問い合わせ項目名 */
.form-ttl {
  font-size: var(--font-size-sub);
  width: 30%;
}

/* 回答部分 */
.form-item {
  font-size: var(--font-size-base);
  width: 100%;
}

/* ラジオボタン */
.wpcf7-radio.form-item {
  display: flex;
  flex-direction: column;
  /* margin-left: -2rem; */
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control-wrap {
  width: 60%;
}

/* 必須スタイル */
.form-required {
  background-color: var(--color-white);
  color: #E85C5C;
  border-radius: var(--border-radius_s);
  font-size: var(--font-size-nav);
  display: block;
  line-height: 1.5;
  width: 3.5rem;
  padding: 4px 14px;
}

/* 入力box */
input[type=date], input[type=email], input[type=number], input[type=password], input[type=tel], input[type=text], input[type=url], select, textarea {
  border: none;
  border-radius: 16px;
}

/* 送信ボタン */
input[type=submit]  {
  border: none;
  background-color: var(--color-mainBlue);
  font-size: var(--font-size-btn);
  border-radius: var(--border-radius_ss);
  margin: 50px auto 0;
  padding: 1rem 4rem;
}

/*==========================
footer
==========================*/
footer {
  background-color: var(--color-darkBlue);
  padding: 100px 10%;
  color: var(--color-white);
}

footer .img-logo {
  width: 50%;
}

.img-icon {
  width: 20px;
  height: 20px;
}

/* 右メニュー */
.fnav ul {
  width: 100%;
  max-width: 520px;
}

.fnav-list {
  column-count: 2;
}

.fnav-list > li {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 0;
  color: var(--color-white);
  border-top: solid 1px var(--color-mainBlue);
}

.fnav-list > li:nth-child(4) {
  border-bottom: solid 1px var(--color-mainBlue);
}

.nav li .fnav-link {
  color: var(--color-white);
}

/* SNS */
.sns-list {
  width: 100%;
  padding: 1rem 0;
  display: flex;
  justify-content: space-evenly;
  background-color: var(--color-white);
  border-radius: var(--radius_ss_bottomLeft0);
}

.sns-item {
  margin-bottom: 0;
}

.img-sns {
  width: 40px;
}

/*====================================================
自習カフェページ
====================================================*/
/*==========================
自習カフェ：mv
==========================*/
#OpenStudy .mv {
  background-color: inherit;
}
#OpenStudy .mv-title {
  background-color: inherit;
}

/* あしらいイラスト */
.img-mv_deco01 {
  width: 50%;
  top: -25%;
  right: 0;
}

.img-mv_deco02 {
  top: -15%;
  right: -10%;
}

/*==========================
自習カフェ：about
==========================*/
#OpenStudy .about {
  background-color: var(--color-lightMint);
  margin-top: -2px;
}

/* 波 */
#OpenStudy .wave_path {
  fill: var(--color-lightMint);
}
.img-wave_deco {
  width: 25%;
  right: 2%;
  bottom: 0;
}

/* ポイント */
#OpenStudy .about-item {
  width: 100%;
  height: 50%;
  color: var(--color-white);
  font-size: var(--font-size-btn);
  padding: 2rem 0;
  text-align: center;
}

#OpenStudy .about-list_left .about-item:nth-child(1),
#OpenStudy .about-list_right .about-item:nth-child(2) {
  background-color: var(--color-mainBlue);
}

#OpenStudy .about-list_left .about-item:nth-child(2),
#OpenStudy .about-list_right .about-item:nth-child(1) {
  background-color: var(--color-mint);
}

#OpenStudy .about-list_left .about-item:nth-child(1) {
  border-radius: var(--radius_s_bottomRight0);
}

#OpenStudy .about-list_left .about-item:nth-child(2) {
  border-radius: var(--radius_s_topRight0);
}

#OpenStudy .about-list_right .about-item:nth-child(1) {
  border-radius: var(--radius_s_bottomLeft0);
}

#OpenStudy .about-list_right .about-item:nth-child(2) {
  border-radius: var(--radius_s_topLeft0);
}

/* スライダー */
#OpenStudy .about-slider-item {
  width: 250px;
  height: 200px;  
}

#OpenStudy .img-slide {
  object-fit: cover;
  border-radius: var(--radius_m_bottomLeft0);
}

/*==========================
自習カフェ：infomation
==========================*/
#OpenStudy .information-schedule .btn-m {
  width: 60%;
}

/* イラスト */
#OpenStudy .img-information:nth-of-type(1) {
  width: 15%;
  top: -30%;
  left: -7%;
}

#OpenStudy .img-information:nth-of-type(2) {
  width: 15%;
  top: -20%;
  right: -5%;
}

#OpenStudy .img-information:nth-of-type(3) {
  width: 40%;
  top: 42%;
  right: -20%;
  z-index: 3;
}

/* 波 */
#OpenStudy .information .wave_path {
  fill: var(--color-beige);
}


/*==========================
自習カフェ：features
==========================*/
#OpenStudy .features {
  background-color: var(--color-beige);
}

#OpenStudy .img-features {
  border-radius: var(--radius_s_bottomLeft0);
  width: 100%;
  max-width: 320px;
  height: 280px;
  object-fit: cover;
  margin-bottom: 1rem;
}

/*==========================
自習カフェ：report
==========================*/
#OpenStudy .report-item {
  max-width: 280px;
}

#OpenStudy .report-title {
  font-size: var(--font-size-btn);
}

#OpenStudy .img-report {
  border-radius: 0;
}

#OpenStudy #report .btn {
  border-radius: 0;
  display: block;
  padding: 20px 0;
  margin-top: 1rem;
  background-color: var(--color-mint);
}
#OpenStudy #report .report-item:nth-of-type(2) .btn {
  background-color: var(--color-mainBlue);
}

/*==========================
自習カフェ：Seminar
==========================*/
#OpenStudy #Seminar {
  background-color: var(--color-lightBlue);
  border-radius: 0 var(--border-radius_ll) 0 0;
}

#OpenStudy .img-seminar {
  max-width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius_s_bottomLeft0);
}

#OpenStudy .seminar-ttl {
  font-size: var(--font-size-btn);
}

/*==========================
自習カフェ：point
==========================*/
#OpenStudy #point {
  background-color: var(--color-lightMint);
  border-radius: 0 0 0 var(--border-radius_ll);
}
#OpenStudy .point-list {
  gap: 4rem;
}

#OpenStudy .point-item {
  width: 35%;
  height: auto;
  padding: 30px;
  background-color: var(--color-white);
  color: var(--color-darkBlue);
  border-radius: var(--radius_s_bottomLeft0);
  text-align: center;
}

#OpenStudy .icon-check {
  width: var(--font-size-title);
  height: var(--font-size-title);
  margin-top: -0.5rem;
}

/*==========================
自習カフェ：faq
==========================*/
#OpenStudy .faq-content {
  background-color: var(--color-beige);
  border-radius: var(--radius_m_bottomLeft0);
}

/* アコーディオン設定 */
.accordion {
  --bs-accordion-color: var(--color-black);
  --bs-accordion-bg: var(--color-beige);
  --bs-accordion-border-color: var(--color-darkBlue);
  padding: 100px 10%;
}

.accordion-item {
  width: 100%;
  /* border-bottom: 1px solid var(--color-darkBlue); */
}

.accordion-header {
  position: relative;
  padding-left: 3.5rem;
}

.accordion-header::before {
  content: "Q";
  font-family: var(--font-number);
  font-size: var(--font-size-btn);
  position: absolute;
  z-index: 3;
  width: 54px;
  height: 47px;
  padding: 10px;
  left: 0;
  top: 24%;
  background-color: var(--color-white);
  border-radius: var(--radius_ss_bottomLeft0);
}

.accordion-button{
  font: inherit;
}

.accordion-button:not(.collapsed) {
  color: var(--color-black);
  background-color: inherit;
  box-shadow: none;
  /* border: none; */
}

.accordion-button:focus {
  box-shadow: none;
  border-color: inherit;
}

.accordion-body {
  background-color: var(--color-white);
  padding: 2rem 0 2rem 6rem;
  margin-left: 5rem;
  margin-bottom: 2rem;
  font-size: var(--font-size-base);
  position: relative;
}

.accordion-body::before {
  content: "A";
  font-family: var(--font-number);
  font-size: var(--font-size-btn);
  position: absolute;
  z-index: 3;
  width: 54px;
  height: 47px;
  padding: 2px 14px;
  left: 2rem;
  top: 26%;
  color: var(--color-darkBlue);
  background-color: var(--color-beige);
  border-radius: var(--radius_ss_bottomLeft0);
}

.accordion-button::after {
  content: "+";
  background-image: none;
  color: var(--color-darkBlue);
  margin-bottom: 2rem;
}

.accordion-button:not(.collapsed)::after {
  content: "ー";
  background-image: none;
  transform: none;
}

/*====================================================
デジステプラス＋ページ
====================================================*/
/*==========================
デジステプラス＋：MV
==========================*/
#DigistePlus .mv {
  background-image: url(../img/img-pluskv.jpg);
  background-size: cover;
  padding: 0;
}

#DigistePlus .kv, #DigistePlus .mv-title {
  background: none;
}

#DigistePlus .kv {
  height: 650px;
  padding-top: 10%;
  padding-left: 8%;
}

#DigistePlus .mv-title {
  color: var(--color-white);
}

#DigistePlus .kv .btn-b {
  padding: 30px 40px;
  text-align: center;
}

/*==========================
デジステプラス＋：about
==========================*/
#DigistePlus .about {
  background-color: var(--color-beige);
}

#DigistePlus .img-about {
  width: 40%;
  max-width: 580px;
  height: 490px;
  border-radius: var(--radius_m_bottomRight0);
}

#DigistePlus .about-list {
  max-width: 515px;
  text-align: start;
}

#DigistePlus .about-item {
  background-color: var(--color-white);
  border-radius: var(--border-radius_m);
  padding: 10px 20px;
}

/*==========================
デジステプラス＋:works
==========================*/
#DigistePlus .works-item {
  border-radius: var(--radius_s_bottomLeft0);
  max-width: 250px;
}

#DigistePlus .works-item:nth-child(2n+1) {
  background-color: var(--color-lightBlue);
}

#DigistePlus .works-item:nth-child(2n) {
  background-color: var(--color-lightMint);
}

#DigistePlus .img-works {
  width: 80%;
  border-radius: 0;
  object-fit: cover;
}

#DigistePlus .works-category-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-darkBlue);
  border-radius: var(--border-radius_m);
}

#DigistePlus #works .btn-b {
  padding: 20px 80px;
}

/*==========================
デジステプラス＋:todo
==========================*/
#DigistePlus #toDo {
  width: 100%;
  background-color: var(--color-lightBlue);
  border-radius: var(--border-radius_ll) 0 0 0;
}

#DigistePlus .todo-list {
  gap: 4rem;
}

#DigistePlus .todo-item {
  max-width: 400px;
  height: 100%;
  max-height: 400px;
  background-color: var(--color-white);
}

#DigistePlus .todo-item:nth-child(1) {
  border-radius: var(--radius_l_bottomRight0);
}
#DigistePlus .todo-item:nth-child(2) {
  border-radius: var(--radius_l_bottomLeft0);
}
#DigistePlus .todo-item:nth-child(3) {
  border-radius: var(--radius_l_topRight0);
}
#DigistePlus .todo-item:nth-child(4) {
  border-radius: var(--radius_l_topLeft0);
}

#DigistePlus .img-todo {
  height: 200px;
  width: auto;
}

#DigistePlus .todo-item .title {
  font-size: var(--font-size-btn);
}

#DigistePlus .todo-item .txt {
  margin-left: 2rem;
  margin-right: 2rem;
  text-align: start;
}

/*==========================
デジステプラス＋:flow
==========================*/
#DigistePlus .flow {
  background-color: var(--color-lightMint);
  border-radius: 0 0 var(--border-radius_ll) 0;
}

#DigistePlus .flow-content {
  background-color: var(--color-lightMint);
  border-radius: 0;
}

#DigistePlus .flow-step {
  width: 80%;
}

#DigistePlus .flow-left {
  font-family: var(--font-number);
  font-size: var(--font-size-title);
  color: var(--color-white);
  background-color: var(--color-mainBlue);
  border-top-left-radius: var(--border-radius_m);
  border-bottom-left-radius: var(--border-radius_m);
  padding: 3rem 0 1rem 2rem;
  position: relative;
}

#DigistePlus .flow-item:nth-of-type(6) .flow-right {
  background-color: var(--color-beige);
}

/* 数字 */
#DigistePlus .step-num {
  display: inline-block;
  width: 71px;
  height: 71px;
  font-family: var(--font-number);
  font-size: 4rem;
  color: var(--color-darkBlue);
  background-color: var(--color-white);
  border-radius: var(--border-radius_m);
  text-align: center;
  margin-left: 1rem;
  line-height: 1.3;
}

#DigistePlus .flow-right {
  background-color: var(--color-white);
  border-top-right-radius: var(--border-radius_m);
  border-bottom-right-radius: var(--border-radius_m);
  padding: 2rem 3rem;
}

#DigistePlus .flow-right .title {
  font-weight: 600;
  text-align: start;
}

#DigistePlus .img-arrow {
  width: 68px;
  height: 77px;
}

#DigistePlus .flow-btn {
  padding: 1.5rem 6rem;
}

/*==========================
デジステプラス＋:price
==========================*/
#DigistePlus .price {
  background-color: var(--color-lightMint);
}

/*==========================
デジステプラス＋:voice
==========================*/
#DigistePlus .voice {
  background-color: var(--color-beige);
}

#DigistePlus .voice-item {
  max-width: 300px;
  background-color: var(--color-white);
  border-radius: var(--radius_m_bottomRight0);
  padding: 2rem 3rem;
}

#DigistePlus .img-voice {
  width: 115px;
  height: 145px;
  margin: 0 auto;
  object-fit: cover;
  object-position: top;
}

/*==========================
デジステプラス＋:faq
==========================*/
#DigistePlus .faq-content {
  background-color: var(--color-lightBlue);
  border-radius: var(--radius_m_bottomLeft0);
}

#DigistePlus .accordion {
  --bs-accordion-bg: var(--color-lightBlue);
}

#DigistePlus .accordion-body::before {
  background-color: var(--color-lightBlue);
}

/*====================================================
笹賀フォトギャラリーページ
====================================================*/
/*==========================
笹賀フォトギャラリー：mv
==========================*/
#PhotoGallery .mv {
  background-image: url(../img/img-photo25kv.jpg);
  background-size: cover;
  background-position: center;
}

#PhotoGallery .kv {
  height: 650px;
  background: none;
}

#PhotoGallery .mv-title {
  padding: 2rem 4rem;
  color: var(--color-white);
  background-color: rgba(36,86,107,0.6);
  bottom: 30%;
}

/*==========================
笹賀フォトギャラリー：about
==========================*/
#PhotoGallery #about {
  background-color: var(--color-beige);
}

#PhotoGallery .about-content .txt {
  text-align: start;
  align-content: center;
}

#PhotoGallery .img-about {
  max-width: 470px;
  height: 200px;
}

#PhotoGallery .img-about:nth-of-type(2n+1) {
  border-radius: var(--radius_m_bottomLeft0);
  
}
#PhotoGallery .img-about:nth-of-type(2n) {
  border-radius: var(--radius_m_bottomRight0);
}

/* ポイント */
#PhotoGallery .about-item {
  width: 60%;
  max-width: 560px;
  height: 80px;
  font-size: var(--font-size-sub);
  color: var(--color-darkBlue);
  background-color: var(--color-white);
  border-radius: var(--border-radius_m);
  text-align: start;
  padding: 1.5rem 2.5rem;
}

#PhotoGallery .img-check {
  margin-bottom: 0;
}

/*==========================
笹賀フォトギャラリー：works
==========================*/
#PhotoGallery .img-works {
  max-width: 240px;
  height: 220px;
  border-radius: 0;
}

/* モーダルスタイル */
.modal {
  display: none; /* 初期状態では非表示 */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8); /* 半透明の背景色 */
}

/* モーダルの内容部分のスタイル */
.modal-content {
  margin: auto;
  width: 80%;
  height: auto;
  max-width: 800px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

/* フルサイズ画像のスタイル */
.fullsize {
  width: 100%;
  height: auto;
}

/* 作品タイトル */
#PhotoGallery .works-item .title {
  font-size: var(--font-size-btn);
}

/*==========================
笹賀フォトギャラリー：flow
==========================*/
#PhotoGallery #Flow {
  background-color: var(--color-lightMint);
  border-radius: var(--border-radius_ll) 0 0 0;
}

#PhotoGallery .flow-content {
  background-color: initial;
}

#PhotoGallery h3.title,
#PhotoGallery h4.title {
  font-size: var(--font-size-btn);
}

#PhotoGallery h4.title span {
  font-size: var(--font-size-base);
  display: block;
  line-height: 1;
}

#PhotoGallery .flow-item {
  width: 250px;
  height: 230px;
  padding-top: 3rem;
  background-color: var(--color-white);
  border-radius: var(--radius_m_bottomLeft0);
  position: relative;
}

/* STEP */
#PhotoGallery .flow-step {
  width: 100px;
  height: 100px;
  color: var(--color-white);
  background-color: var(--color-mint);
  border-radius: var(--border-radius_m);
  position: absolute;
  top: -20%;
  left: 27%;
}

#PhotoGallery .step-num {
  font-size: 64px;
  font-family: var(--font-number);
  display: block;
  line-height: 1;
}

/* イラスト */
#PhotoGallery .img-flow {
  height: 80px;
  width: auto;
}

/* 注意事項 */
#PhotoGallery .note-item {
  width: 70%;
  max-width: 672px;
  padding: 1rem 4rem;
  margin: 2rem auto 0;
  background-color: var(--color-white);
  border-radius: var(--border-radius_m);
}

/* ボタン */
#PhotoGallery #Flow .btn-b,
#PhotoGallery #Flow .btn-m {
  padding: 1rem 4rem;
}

/* 応募期間 */
#PhotoGallery .flow-content .txt {
  font-size: var(--font-size-btn);
  color: var(--color-darkBlue);
}

/*==========================
笹賀フォトギャラリー：archive
==========================*/
#PhotoGallery #Archive .archive-item {
  text-align: center;
}

#PhotoGallery #Archive .btn {
  font-size: var(--font-base);
  padding: 0.5rem 3rem;
  border-radius: var(--border-radius_m);
}

#PhotoGallery #Archive .archive-item:nth-of-type(2n+1) .btn {
  background-color: var(--color-mainBlue);
}

#PhotoGallery #Archive .archive-item:nth-of-type(2n) .btn {
  background-color: var(--color-mint);
}

/*==========================
笹賀フォトギャラリー：utilize
==========================*/
#PhotoGallery .utilize {
  background-color: var(--color-lightBlue);
  border-radius: 0 var(--border-radius_ll) 0 0;
}

#PhotoGallery .utilize-item {
  width: 230px;
  height: 200px;
  font-size: var(--font-size-btn);
  color: var(--color-darkBlue);
  background-color: var(--color-white);
  border-radius: var(--radius_m_bottomLeft0);
  padding: 2rem 1%;
  text-align: center;
}

/*====================================================
投稿ページ
====================================================*/
#Single h2,
#Single h3,
#Single h4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* table設定 */
#Single td:nth-child(2n) {
  width: 60%;
}

/* ページネーション */
.page-item {
  border: 1px solid var(--color-darkBlue);
}

.page-info {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-top: 1rem;
}

.page-info img {
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.page-info .title {
  width: 50%;
  font-size: var(--font-size-btn);
  text-align: start;
}

/*====================================================
Archiveページ
====================================================*/
#Archive .img-archive {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

#Archive h2 {
  font-size: var(--font-size-btn);
}

#Archive .txt {
  line-height: 1.7;
}

/*====================================================
TB
====================================================*/
@media screen and (max-width:769px) {
  body {
    font-size: var(--font-size-base_sp);
  }

  h1, h2, h3, h4, h5, h6, dl, dt, dd {
    font-size: var(--font-size-title_sp);
  }

  section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .mt75 {
    margin-top: 50px;
  }

  .mt100 {
    margin-top: 80px;
  }

  .my100 {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .btn, .btn-m, .btn-b {
    font-size: var(--font-size-btn_sp);
    padding: 20px 15px;
  }

  /*==========================
  header
  ==========================*/
  header {
      height: auto;
  }

  .logo {
    width: 50%;
  }

  .navbar-toggler {
    color: var(--color-darkBlue);
    border-color: var(--color-mainBlue);
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }
  /*==========================
  MV
  ==========================*/
  .kv {
    height: 600px;
  }

  .mv-title {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    left: 2%;
    bottom: 5%;
  }

  .mv-catch {
    font-size: var(--font-size-base_sp);
  }

  /* 波 */
  .wave_item {
    margin-top: -39px;
  }

  /* about */
  .about .txt {
    width: 85%;
    margin: 20px auto;
  }

  .img-deco01 {
    width: 25%;
    top: -35%;
    left: 75%;
  }

  .img-deco02 {
    width: 25%;
    right: 0;
    top: 0;
  }

  .img-deco03 {
    width: 15%;
    top: 0;
    right: 0;
  }

  .img-deco04 {
    width: 25%;
    top: 120%;
    left: 10%;
  }

  .img-deco05 {
    width: 30%;
    top: 80%;
    right: 10%;
  }

  /*==========================
  activity
  ==========================*/
  .activity-content {
    padding-top: 0;
    height: 90vh;
  }

  /* 左コンテンツ */
  .activity-left {
    width: 70%;
    margin: 0 auto 2rem;
  }

  /* ページネーション */
  .swiper-pagination-vertical.swiper-pagination-bullets,
  .swiper-vertical>.swiper-pagination-bullets {
    left: 0;
    top: 100%;
    display: flex;
  }

  /* 右コンテンツ */
  .activity-list {
    height: 70vh;
  }

  .activity-card {
    height: 65vh;
    padding: 5% 4%;
  }

  #Activity .btn-m,
  #Activity .btn-b {
    width: 80%;
    margin: 0.5rem auto;
  }

  /*==========================
  support
  ==========================*/
  .support-content {
    padding-top: 0;
  }

  #Support .txt {
    width: 80%;
    margin: 4% auto;
  }

  .point-list {
    gap: 2rem;
    justify-content: center;
  }

  .point-item {
    width: 130px;
    height: 130px;
    font-size: var(--font-size-title_sp);
    padding: 1.5rem 1rem;
  }

  .data-list {
    justify-content: center;
  }

  .support-schedule {
    text-align: center;
  }

  /*==========================
  news
  ==========================*/
  .news-list {
    text-align: center;
    gap: 1rem;
  }

  /*==========================
  study
  ==========================*/
  .img-study {
    width: 100%;
    height: 200px;
  }

  .study-info .txt {
    margin-left: 4%;
    margin-right: 4%;
  }

  .study-info .data-list {
    text-align: center;
    justify-content: center;
  }
  
  .study-info_r {
    text-align: center;
  }

  .study-list {
    width: 80%;
  }

  /* 活動レポート */
  .report-item {
    text-align: center;
    margin-bottom: 2rem;
  }

  .img-report {
    width: 80%;
  }

  /*==========================
  plus
  ==========================*/
  .plus-content {
    flex-direction: column-reverse;
  }

  .img-plus {
    width: 80%;
    height: 200px;
    margin: 0 auto 1rem;
  }

  .plus-content_l {
    margin-left: 4%;
    margin-right: 4%;
  }

  /* 制作実績 */
  .works-item {
    width: 80%;
  }

  /* 制作流れ */
  .flow {
    width: 90%;
    padding: 80px 7%;
  }

  .flow-ttl {
    font-size: var(--font-size-title_sp);
  }

  /* 料金表 */
  .price {
    width: 90%;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow-x: scroll;
  }

  .price-table {
    white-space: nowrap;
  }

  .price-ttl {
    font-size: var(--font-size-title_sp);
  }

  .price-item {
    font-size: var(--font-size-base_sp);
  }

  /*==========================
  access
  ==========================*/
  .address-list {
    width: 90%;
  }

  /*==========================
  contact
  ==========================*/
  #Contact .txt {
    width: 90%;
  }

  .contact-form {
    width: 100%;
  }

  .wpcf7-form p {
    flex-direction: column;
    gap: 1rem;
  }

  .form-ttl,
  .form-item,
  .wpcf7-form-control-wrap {
    width: 100%;
  }

  /*==========================
  footer
  ==========================*/
  footer {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .fnav ul {
    width: 100%;
    margin-bottom: 0;
  }

  .fnav-list_l .fnav-item:nth-child(4) {
    border-bottom: none;
  }

  /*====================================================
  自習カフェページ
  ====================================================*/
  /*==========================
  自習カフェ：MV
  ==========================*/
  #OpenStudy #mv {
    padding-bottom: 0;
  }
  #OpenStudy .img-mv_deco01 {
    width: 40%;
    top: 28%;
  }

  #OpenStudy .img-mv_deco02 {
    right: 75%;
  }

  .img-wave_deco {
    width: 50%;
  }

  /*==========================
  自習カフェ：about
  ==========================*/
  #OpenStudy .about-item {
    font-size: var(--font-size-title_sp);
  }

  /*==========================
  自習カフェ：information
  ==========================*/
  #OpenStudy .img-information:nth-of-type(1) {
    width: 25%;
    top: -10%;
    left: -10%;
  }

  #OpenStudy .img-information:nth-of-type(2) {
    width: 25%;
    top: -15%;
    right: -15%;
  }

  #OpenStudy .img-information:nth-of-type(3) {
    width: 60%;
    top: 85%;
  }

  #OpenStudy .data-item {
    text-align: center;
  }

  #OpenStudy .wave_item {
    margin-top: 9%;
  }
  
  /*==========================
  自習カフェ：features
  ==========================*/
  #OpenStudy .features-item {
    margin-bottom: 2rem;
  }

  /*==========================
  自習カフェ：report
  ==========================*/
  #OpenStudy .report-list {
    text-align: center;
  }

  #OpenStudy .report-item {
    margin-right: auto;
    margin-left: auto;
  }

  #OpenStudy .report-title {
    font-size: var(--font-size-title_sp);
  }

  /*==========================
  自習カフェ：point
  ==========================*/
  #OpenStudy .point-item {
    width: 90%;
    margin: 0 auto 1rem;
  }

  /*==========================
  自習カフェ：faq
  ==========================*/
  .accordion {
    padding: 75px 3%;
  }

  .accordion-header::before {
    width: 40px;
    height: 40px;
    font-size: var(--font-size-title_sp);
    padding-top: 6px;
    padding-left: 6px;
  }

  .accordion-body {
    padding: 1rem 1rem 1rem 3rem;
    margin-left: 3rem;
  }

  .accordion-body::before {
    width: 40px;
    height: 40px;
    font-size: var(--font-size-title_sp);
    padding-left: 9px;
    left: 0.5rem;
    top: 10%;
  }

  /*====================================================
  デジステプラス＋ページ
  ====================================================*/
  /*==========================
  デジステプラス＋：MV
  ==========================*/
  #DigistePlus .mv {
    background-position: right;
  }
  
  #DigistePlus .kv {
    padding-top: 30%;
  }
  
  #DigistePlus .mv-title {
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    text-shadow: 0 0 0.3rem var(--color-darkBlue);
  }
  
  #DigistePlus .kv .btn-b {
    padding: 20px 50px;
  }
  
  #DigistePlus .wave_item {
    margin-top: -115px;
  }

  #DigistePlus .img-wave_deco {
    bottom: -3rem;
  }

  /*==========================
  デジステプラス＋：about
  ==========================*/
  #DigistePlus .about-list {
    width: 100%;
  }

  #DigistePlus .img-about {
    width: 90%;
    height: 20%;
    margin-bottom: 2rem;
  }
  
  /*==========================
  デジステプラス＋：works
  ==========================*/
  #DigistePlus .works-item {
    width: 80%;
    max-width: 350px;
  }
  
  /*==========================
  デジステプラス＋：todo
  ==========================*/
  #DigistePlus .todo-item {
    width: 90%;
  }
  
  /*==========================
  デジステプラス＋：flow
  ==========================*/
  #DigistePlus .flow-step {
    width: 100%;
  }
  
  #DigistePlus .flow-left {
        border-top-right-radius: var(--border-radius_m);
        border-bottom-left-radius: 0;
        padding-top: 3rem;
  }
  
  #DigistePlus .flow-right {
    border-top-right-radius: 0;
  }

  #DigistePlus .flow-btn {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  
  /*==========================
  デジステプラス＋：flow
  ==========================*/
  #DigistePlus .price {
    width: 100%;
  }

  
  /*====================================================
  笹賀フォトギャラリーページ
  ====================================================*/
  /*==========================
  笹賀フォトギャラリー：mv
  ==========================*/
  #PhotoGallery .mv-title {
    padding: 2rem;
  }

  /*==========================
  笹賀フォトギャラリー：about
  ==========================*/
  #PhotoGallery .about-content .txt {
    width: 70%;
    margin: 0 auto;
  }
  #PhotoGallery .img-about {
    width: 90%;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  
  /* ポイント */
  #PhotoGallery .about-item {
    width: 90%;
    height: auto;
    font-size: var(--font-size-sub_sp);
  }

  /*==========================
  笹賀フォトギャラリー：works
  ==========================*/
  #PhotoGallery .works-item .title {
    font-size: var(--font-size-btn_sp);
  }
  
  /*==========================
  笹賀フォトギャラリー：flow
  ==========================*/
  #PhotoGallery h3.title,
  #PhotoGallery h4.title {
    font-size: var(--font-size-title_sp);
  }

  #PhotoGallery .flow-item {
    margin-top: 2rem;
  }

  /* 注意事項 */
  #PhotoGallery .note-item {
    width: 90%;
  }

  /* 応募期間 */
  #PhotoGallery .flow-content .txt {
    font-size: var(--font-size-title_sp);
  }

  /*====================================================
  投稿ページ
  ====================================================*/
  /* ページネーション */
  .page-info {
    flex-direction: column;
  }

  .page-info img {
    width: 100%;
  }

  .page-info .title {
    width: 100%;
  }
}

/*==========================
SP
==========================*/
@media screen and (max-width:426px) {
  /*====================================================
  TOPページ
  ====================================================*/
  /*==========================
  TOP：activity
  ==========================*/
  .activity-left {
    width: 90%;
  }
  
  .activity-card {
    padding-top: 3rem;
  }
  
  .img-activity {
    height: 35%;
  }
  
  /*==========================
  TOP：自習カフェ
  ==========================*/
  .data-ttl {
    margin-bottom: 0;
  }
  
  .data-item {
    margin-bottom: 1.5rem;
  }
  
  /*==========================
  TOP：フッター
  ==========================*/
  .fnav-list {
    column-count: 1;
  }

  /*====================================================
  デジステプラス＋ページ
  ====================================================*/
  /*==========================
  デジステプラス＋：mv
  ==========================*/
  #DigistePlus .kv {
    padding-top: 40%;
  }

  /*==========================
  デジステプラス＋：flow
  ==========================*/
  #DigistePlus .flow-right .title {
    text-align: center;
  }

  /*====================================================
  投稿ページ
  ====================================================*/
  /* ページネーション */
  .page-item {
    width: 80%;
  }
}