@charset "UTF-8";
@import url("grid.css");

:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
    --base-color: #1f303c;
    --link-color: #666;
    --linkhover-color: #999;
    --back-color: #f7f7f7;
    --border-color: #ccc;
    --white-color: #fff;
}

img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
a {
    display:block;
    color: var(--link-color);
    text-decoration-line: none;
}
a:hover { 
    color: var(--linkhover-color);
}

/*ヘッダー
-------------------------------------*/
.header {
	display: flex;
    flex-direction: column;
    padding: 2rem 0 0 0;
    margin-bottom: 10px;
}
.header-box {
	display: none !important;
}
.header #open,#close  {
    position: absolute;
    top: 20px;
    right: 12px;
}
nav ul {
	flex-direction: column;
}
.header li {
	padding-top: 0;
}
#open {
    display: block;
    background: url(../img/button.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
#close  {
    display: block;
    background: url(../img/button2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
#navi {
    display: none;
}
nav ul {
	display: flex;
    flex-direction: column;
    justify-content: space-around;
    list-style: none;
	margin: 1rem 0 0 0;
}
nav li {
	flex: 1 0 auto;
}
nav li a {
    text-decoration: none;
    text-align: center;
    width: 100%;
}
nav a:hover {
    background-color: var(--back-color);   
}
nav a {
    padding: 0.5rem;
}

@media screen and (min-width: 768px){
.header {
    flex-direction: row;
    margin-bottom: 0;
}
.header-box {
    display: block !important;
	margin-left: auto;
	margin-top: 8px;
}
.contact-button {
	padding: 1rem;
	border: 2px solid var(--base-color);
}
/* PC時はMENUボタンを非表示 */
#open,#close {
    display: none !important;
}
#navi {
    display: block !important;
}
nav ul {
	flex-direction: row;
}
}


    
/*メイン画像
-------------------------------------*/
.mainimg img {
    width: 100vw;
}

/*メインコンテンツ
-------------------------------------*/
.section-wrap{
    padding: 14.49vw 0;
}
.gray-back {
	background-color: var(--back-color);
}

@media screen and (min-width: 768px){
    .section-wrap{
        padding: 90px 0;
    }
}

@media screen and (min-width: 1080px){
    .section-wrap{
        padding: 120px 0;
    }
}

/*キャッチコピー
-------------------------------------*/
.catch {
    text-align: center;
}
.catch h2 {
    padding-bottom: 1rem;
}
.under {
    border-bottom: 0.4rem solid var(--base-color);
    padding:0 1rem 1rem 1rem;
}
.center {
	text-align: center;
	margin-bottom: 4rem;
}

/*申し込みの流れ
-------------------------------------*/
.flow.row {
	margin-bottom: 3rem;
}

/*フッター
-------------------------------------*/
footer {
    background-color: #000; 
    padding: 3rem 0;
}
footer h4 {
    border-bottom: 3px solid var(--border-color);
}

/*お問い合わせ
-------------------------------------*/
.contact-box {
	border: 1px solid var(--border-color);
	text-align: center;
	padding: 2rem 0;
}
.table {
	margin: 4rem 0;
}
.table th {
	width: 100%;
	display: block;
}	
.table td {
	display: block;
}

@media screen and (min-width: 768px){
    .table th {
        width: 250px;
        display: table-cell;
    }
    .table td {
        display: table-cell;
    }
}

/*コピーライト
-------------------------------------*/
.copyright {
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    background: #000;
}
.copyright a {
    color: #fff;
    text-decoration: none;
	display: inline;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
    line-height: 1.1;
    z-index: 20;
}
#pagetop a {
    width: 60px;
    height: 60px;
    display: block;
    background-color: #af841e;
    border-radius: 50%;
    opacity: 0.9;
    transition: 0.3s;
}
#pagetop a:hover,
#pagetop a:active,
#pagetop a:focus{
    opacity: 0.6;
}
#pagetop a::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 25px;
    height: 25px;
    margin: auto;
    color: #fff;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f062';
    font-size: 25px;
    text-align: center;
}





/*
# =================================================================
# カスタマイズ
# =================================================================
*/

body{
    color: #000;
}

.sp{
    display: block!important;
}

.pc{
    display: none!important;
}

.flex-box {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
    
.flex-box.align-fs {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.flex-box.align-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-box.align-fe {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

.flex-box.row-r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
     -ms-flex-direction: row-reverse;
         flex-direction: row-reverse;
}

picture{
    display: block;
    line-height: 1;
}

.b{
    font-weight: 700;
}

.color01{
    color: #caa85e;
}

header{
    display: block;
    padding: 0;
    margin: 0;
}

header .top-band{
    background: linear-gradient(135deg, #b48732 0%, #e0cb8c 40%, #e0cb8c 60%, #b48732 100%);
    padding: 3.62vw 3.62vw 2.42vw;
}

header .top-band p{
    width: 38.16vw;
    line-height: 1;
    margin: 0 auto;
}

header .container{
    background-color: #000;
    background-image: url(../images/mv_sp.webp), url(../images/noise-pattern-with-subtle-cross-lines.png);
    background-position: center 35.02vw, center top;
    background-repeat: no-repeat, repeat;
    background-size: contain, 240px 240px;
    padding: 0;
    padding-bottom: calc(100%*620/414);
    position: relative;
}

header .fv-catch{
    position: absolute;
    top: 7.25vw;
    left: 0;
    right: 0;
    width: 85.27vw;
    line-height: 1;
    margin: auto;
}

header .main-title{
    position: absolute;
    bottom: 9.66vw;
    left: 0;
    right: 0;
    width: 95.17vw;
    line-height: 1;
    margin: auto;
}

.section-wrap.section01{
    padding: 0 0 7.25vw;
    background: url(../images/sec01_back_sp.webp) center top no-repeat;
    background-size: cover;
}

.section01 h2{
    width: 54.35vw;
    line-height: 1;
    margin: 0 auto 3.62vw;
}

.section01 p{
    width: 89.61vw;
    line-height: 1;
    margin: 0 auto;
}

.section-wrap.section02{
    background-color: #1f303c;
    background-image: url(../images/sec02_back_sp.webp);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
}

h2.sec-title{
    line-height: 1;
    margin: 0 auto 8.45vw;
}

.section02 h2.sec-title{
    width: 54.83vw;
    margin-bottom: 4.83vw;
}

.section02 .problem-text p{
    line-height: 1;
    margin: 0;
}

.section02 .problem-text p:nth-of-type(n+2){
    margin-top: 2.42vw;
}

.section-wrap.section03{
    background-color: #000;
    background-image: url(../images/sec03_back_sp.webp);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
}

.section03 h2.sec-title{
    width: 47.58vw;
}

.section03 .future-conts:nth-of-type(n+2){
    margin-top: 9.66vw;
}

.section03 .future-conts .future-img{
    width: 100vw;
    margin: 0 -3.62vw -7.25vw;
}

.section03 .future-conts .future-text{
    line-height: 1;
    margin: 0;
    filter: drop-shadow(0.24vw 0.24vw 1.44vw rgba(0,0,0,0.5));
}

.section-wrap.section04{
    background-color: #f0edec;
    background-image: url(../images/sec04_back_sp.webp);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
}

.section04 h2.sec-title{
    width: 40.34vw;
}

.section04 .voice-box{
    background: #1f303c;
    padding: 1.21vw;
}

.section04 .voice-box:nth-of-type(n+2){
    margin-top: 8.45vw;
}

.section04 .voice-box .voice-box-in{
    border: 0.36vw solid #b48732;
    padding: 14.49vw 4.83vw 4.83vw;
    position: relative;
}

.section04 .voice-box .voice-num{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 42.27vw;
    line-height: 1;
    margin: auto;
}

.section04 .voice-box .voice-num img{
    width: 100%;
}

.section04 .voice-box h3{
    line-height: 1;
    margin: 0 auto 4.83vw;
}

.section04 .voice01 h3{
    width: 61.59vw;
}

.section04 .voice02 h3{
    width: 64.98vw;
}

.section04 .voice03 h3{
    width: 55.07vw;
}

.section04 .voice04 h3{
    width: 74.64vw;
}

.section04 .voice05 h3{
    width: 72.95vw;
}

.section04 .voice-box .voice-img{
    margin: 0 0 3.62vw;
}

.section04 .voice-box .voice-name{
    line-height: 1;
    margin: 0 auto 7.25vw;
}

.section04 .voice01 .voice-name{
    width: 52.17vw;
}

.section04 .voice02 .voice-name{
    width: 60.63vw;
}

.section04 .voice03 .voice-name{
    width: 51.93vw;
}

.section04 .voice04 .voice-name{
    width: 52.17vw;
}

.section04 .voice05 .voice-name{
    width: 46.38vw;
}

.accordion {
    position: relative;
}

/* ボタン */
.accordion-btn {
    bottom: 0;
    color: #1f303c;
    cursor: pointer;
    display: inline-block;
    font-size: 3.86vw;
    font-weight: 700;
    line-height: 1.3;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    padding: 0.4em 1.5em;
    background-color: #fff;
    text-align: center;
    transition: all .2s;
    width: fit-content;
    font-feature-settings: "palt";
    letter-spacing: 0.03em;
    z-index: 1;
}
  
/* 続きを読むボタンの表記 */
.accordion-btn::after {
    content: "続きを読む";
}

/* ボタンhover時のスタイル */
.accordion-btn:hover {
    filter: brightness(1.1);
}

.accordion-text {
    overflow: hidden; /* テキストを隠す */
    position: relative;
}

/* 最初に見えてるテキストエリアの高さ */
.accordion-text.is-hide {
    height: 37.44vw;
}

/* テキストをグラデーションで隠す */
.accordion-text::before {
    background: -webkit-linear-gradient(top, rgba(31,48,60,0) 0%, rgba(31,48,60,.9) 50%, rgba(31,48,60,.9) 50%, #1f303c 100%);
    background:         linear-gradient(top, rgba(31,48,60,0) 0%, rgba(31,48,60,.9) 50%, rgba(31,48,60,.9) 50%, #1f303c 100%);
    bottom: 0;
    content: "";
    height: 16.91vw; /* グラデーションで隠す高さ */
    position: absolute;
    width: 100%;
}

/* 閉じるボタンの位置 */
.accordion-btn.is-show {
    bottom: 0;
}

/* 閉じるボタンの表記 */
.accordion-btn.is-show::after {
    content: "閉じる";
}

/* 続きを見るボタンをクリックしたらテキストを隠しているグラデーションを消す */
.accordion-btn.is-show + .accordion-text::before {
    display: none;
}

.accordion-text p{
    font-size: 3.62vw;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

.accordion-text p:nth-of-type(n+2){
    margin-top: 3.86vw;
}

.accordion-text p:last-of-type{
    padding-bottom: 9.66vw;
}

.section-wrap.section05{
    background-color: #412200;
    background-image: url(../images/sec05_back_sp.webp);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
}

.section05 h2.sec-title{
    width: 52.90vw;
}

.section05 .seminar-conts-box:nth-of-type(n+2){
    margin-top: 9.66vw;
}

.section05 .seminar-conts-box h3{
    background: linear-gradient(135deg, #af841e 0%, #e0ca76 40%, #e0ca76 60%, #af841e 100%);
    padding: 0 2.42vw 4.83vw;
    line-height: 1;
    text-align: center;
    margin: 0;
}

.section05 .seminar-conts-box h3 img{
    margin: 0 auto;
}

.section05 .seminar-conts01 h3 img{
    width: 85.51vw;
}

.section05 .seminar-conts02 h3 img{
    width: 75.36vw;
}

.section05 .seminar-conts03 h3 img{
    width: 72.46vw;
}

.section05 .seminar-conts04 h3 img{
    width: 56.04vw;
}

.section05 .seminar-conts05 h3 img{
    width: 78.26vw;
}

.section05 .seminar-conts-box .seminar-conts-list{
    background: rgba(0,0,0,0.4);
    padding: 4.83vw 3.62vw;
}

.section05 .seminar-conts-box .seminar-conts-list ul{
    margin: 0;
    list-style: none;
}

.section05 .seminar-conts-box .seminar-conts-list ul li{
    font-size: 4.35vw;
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
    padding: 0 0 0 1em;
    margin: 0;
    font-feature-settings: "palt";
    letter-spacing: 0.03em;
    position: relative;
}

.section05 .seminar-conts-box .seminar-conts-list ul li::before{
    position: absolute;
    content: "";
    top: 1.69vw;
    left: 0;
    width: 2.42vw;
    height: 2.42vw;
    border-radius: 50%;
    background: #fff;
    margin: auto;
}

.section05 .seminar-conts-box .seminar-conts-list ul li:nth-child(n+2){
    margin-top: 1.93vw;
}

.section06 h2.sec-title{
    width: 73.67vw;
}

.section06 .profile-img{
    margin: 0 0 2.42vw;
}

.section06 p{
    font-size: 3.62vw;
    line-height: 1.6;
    margin: 0;
}

.section06 .profile-name{
    font-size: 6.76vw;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    margin: 0 0 7.25vw;
    font-feature-settings: "palt";
    letter-spacing: 0.03em;
}

.section06 .profile-name .katagaki{
    display: block;
    font-size: 3.86vw;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 0.72vw;
}

.section06 .message-box{
    background: #f0edec;
    padding: 1.21vw;
    margin-top: 10.87vw;
}

.section06 .message-box .message-box-in{
    border: 0.36vw solid #06275e;
    padding: 7.25vw 3.62vw;
}

.section06 .message-box p:nth-of-type(n+2){
    margin-top: 3.86vw;
}

.section06 .message-box h3{
    width: 33.33vw;
    line-height: 1;
    margin: 0 auto 4.83vw;
}

.section06 .message-box .syomei{
    width: 26.81vw;
    line-height: 1;
    margin: 6.04vw auto 0;
}

@keyframes infinity-scroll-left {
    from {
      transform: translateX(0);
    }
      to {
      transform: translateX(-100%);
    }
}

.scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
    margin: 0;
}

.scroll-infinity__list {
    display: flex;
    list-style: none;
    line-height: 1;
    padding: 0;
    margin: 0;
}

.scroll-infinity__list--left {
    animation: infinity-scroll-left 15s infinite linear 0.5s both;
}

.scroll-infinity__item {
    width: calc(100vw / 2);
    padding: 0;
    margin: 0;
}

.scroll-infinity__item>img {
    display: block;
    width: 100%;
}

.section-wrap.section07{
    background-color: #000;
    background-image: url(../images/noise-pattern-with-subtle-cross-lines.png);
    background-position: center top;
    background-repeat: repeat;
    background-size: 240px 240px;
}

.section07 h2.sec-title{
    width: 43.96vw;
}

.section07 .seminar-img{
    margin: 0 0 7.25vw;
}

.section07 table{
    width: 100%;
    margin: 0;
	padding: 0;
    display: block;
    border: 0.36vw solid #fff;
}

.section07 table tbody,
.section07 table tr{
    display: block;
}

.section07 table th,
.section07 table td{
    display: block;
    box-sizing: border-box;
    width: 100%;
    font-size: 3.86vw;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    border: none;
}

.section07 table th{
    background: #caa85e;
    padding: 1.21vw 2.42vw 0.72vw;
    color: #000;

}

.section07 table td{
    padding: 3.62vw 2.42vw;
    color: #fff;
}

.section07 table td .schedule{
    font-size: 5.31vw;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.section07 table td .schedule:nth-child(n+2){
    margin-top: 2.42vw;
}

.section07 table td .schedule span{
    display: block;
    font-size: 3.86vw;
}

.section07 table td .venue,
.section07 table td .fee{
    font-size: 4.83vw;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.section07 table td .address{
    margin: 1.21vw 0 0;
}

.section07 table td .tyuui{
    font-size: 3.38vw;
    text-align: left;
    width: 72.46vw;
    margin: 1.21vw auto 0;
}

.section08 h2.sec-title{
    width: 72.95vw;
}

.section08 .entry-form .regist_form{
    width: 100%;
    line-height: 1.5;
}

.section08 .entry-form .regist_form h2{
    display: none;
}

.section08 .entry-form .required_color{
    background: #fff !important;
}

.section08 .entry-form .my_right.my_column.required_color{
    background: none !important;
}

.section08 .entry-form .regist_form .my_left.my_column{
    padding-bottom: 0!important;
}

.section08 .entry-form .regist_form .my_right.my_column{
    padding-top: 10px!important;
}

.section08 .entry-form .regist_form .my_left.my_column,
.section08 .entry-form .regist_form .my_right.my_column{
    width: 100%;
}

.section08 .entry-form .regist_form form.myForm .required .my_column.my_left label:first-child:after{
    line-height: 1.3;
    margin-bottom: 4px;
}

.section08 .entry-form .regist_form form.myForm .radiobutton_input{
    padding-bottom: 5px;
}

.section08 .entry-form .regist_form form.myForm input[type=radio]{
    margin-top: 3px;
}

.section08 .entry-form .regist_form input[type="email"],
.section08 .entry-form .regist_form input[type="number"],
.section08 .entry-form .regist_form input[type="search"],
.section08 .entry-form .regist_form input[type="text"],
.section08 .entry-form .regist_form input[type="tel"],
.section08 .entry-form .regist_form input[type="url"],
.section08 .entry-form .regist_form input[type="password"],
.section08 .entry-form .regist_form textarea,
.section08 .entry-form .regist_form select{
    width: 100%;
}

.section08 .entry-form .regist_form input[type="submit"]{
    font-size: 1.25em;
    font-weight: 700;
    line-height: 50px;
    color: #fff;
    background-color: #6fba2c;
    border: none;
    border-radius: 6px;
    height: 50px;
}

footer {
    padding: 6.04vw 0 2.42vw;
}

.footer-menu{
    margin: 0;
    text-align: center;
}

.footer-menu li{
    list-style: none;
    font-size: 3.38vw;
    margin: 0;
    padding: 0;
    line-height: 1.3;
}

.footer-menu li:nth-child(n+2){
    margin-top: 2.42vw;
}

.footer-menu li a{
    text-decoration: none;
    color: #fff;
}

.footer-menu li a:hover,
.footer-menu li a:active,
.footer-menu li a:focus{
    text-decoration: underline;
}

.copyright{
    padding: 2.42vw 0;
}

.copyright small{
    font-size: 3.38vw;
}



/* 2026.01 動画追加 */

.section-wrap.video-sec{
    background: #412200;
    padding: 9.66vw 0;
}

.video-title{
    font-size: 5.80vw;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    text-align: center;
    margin: 0 0 3.62vw;
    font-feature-settings: "palt";
    letter-spacing: 0.03em;
}

.video-title .sub{
    display: block;
    font-size: 4.35vw;
    font-weight: 500;
    margin-top: 1.21vw;
}

.section07 .video-title{
    margin-top: 12.08vw;
}

.media-video{
	display: block;
	width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.section05 .media-video{
    margin-bottom: 12.08vw;
}

.media-video lite-youtube{
	width: 100%;
    max-width: none;
    margin: 0 auto;
}





@media (min-width : 768px){

    .sp{
		display: none!important;
	}

	.pc{
		display: block!important;
	}

    header .top-band{
        padding: 25px 30px 20px;
    }
    
    header .top-band p{
        width: 33.5%;
        max-width: 296px;
    }
    
    header .container{
        max-width: none;
        background-image: url(../images/mv_pc.webp), url(../images/noise-pattern-with-subtle-cross-lines.png);
        background-position: center 12.96vw, center top;
        background-repeat: no-repeat, repeat;
        background-size: 139.91vw 54.72vw, 240px 240px;
        padding-bottom: calc(100%*1020/1080);
    }
    
    header .fv-catch{
        top: 5.56vw;
        width: 73.80vw;
    }
    
    header .main-title{
        bottom: 6.48vw;
        width: 79.63vw;
    }
    
    .section-wrap.section01{
        padding: 0 0 60px;
        background: url(../images/sec01_back_pc.webp) center top no-repeat;
        background-size: cover;
    }
    
    .section01 h2{
        width: 51%;
        max-width: 450px;
        margin: 0 auto 20px;
    }
    
    .section01 p{
        width: 73.8%;
        max-width: 651px;
    }
    
    .section-wrap.section02{
        background-image: url(../images/sec02_back_pc.webp);
        background-position: center top;
        background-repeat: no-repeat;
        background-size: contain;
    }
    
    h2.sec-title{
        margin: 0 auto 60px;
    }
    
    .section02 h2.sec-title{
        width: 48.4%;
        max-width: 427px;
        margin-bottom: 60px;
    }

    .section02 .problem-text{
        max-width: 920px;
        margin: 0 auto;
    }
    
    .section02 .problem-text p:nth-of-type(n+2){
        margin-top: 30px;
    }
    
    .section-wrap.section03{
        background-image: url(../images/sec03_back_pc.webp);
        background-position: center top;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .section03 .container{
        max-width: 1520px;
    }
    
    .section03 h2.sec-title{
        width: 42.0%;
        max-width: 371px;
        margin-bottom: 100px;
    }
    
    .section03 .future-conts:nth-of-type(n+2){
        margin-top: 100px;
    }
    
    .section03 .future-conts .future-img{
        width: 74.07vw;
        max-width: 800px;
        margin: 0 auto -4.63vw;
    }
    
    .section03 .future-conts .future-text{
        width: 64.81vw;
        max-width: 700px;
        margin: 0 auto;
        filter: drop-shadow(1px 1px 10px rgba(0,0,0,0.5));
    }
    
    .section-wrap.section04{
        background-image: url(../images/sec04_back_pc.webp);
        background-position: center top;
        background-repeat: no-repeat;
        background-size: contain;
    }
    
    .section04 h2.sec-title{
        width: 35.6%;
        max-width: 314px;
    }
    
    .section04 .voice-box{
        padding: 0.74vw;
    }
    
    .section04 .voice-box:nth-of-type(n+2){
        margin-top: 60px;
    }
    
    .section04 .voice-box .voice-box-in{
        border: 1px solid #b48732;
        padding: 8.80vw 3.70vw 3.70vw;
    }
    
    .section04 .voice-box .voice-num{
        top: 0;
        left: 0;
        right: auto;
        width: 21.30vw;
    }
    
    .section04 .voice-box h3{
        margin: 0 0 3.70vw;
    }
    
    .section04 .voice01 h3{
        width: 35.46vw;
    }
    
    .section04 .voice02 h3{
        width: 37.31vw;
    }
    
    .section04 .voice03 h3{
        width: 31.57vw;
    }
    
    .section04 .voice04 h3{
        width: 42.87vw;
    }
    
    .section04 .voice05 h3{
        width: 41.85vw;
    }
    
    .section04 .voice-box .voice-img{
        position: absolute;
        top: 0;
        right: 0;
        width: 39.5vw;
        margin: auto;
    }
    
    .section04 .voice-box .voice-name{
        margin: 0 0 4.17vw;
    }
    
    .section04 .voice01 .voice-name{
        width: 23.98vw;
    }
    
    .section04 .voice02 .voice-name{
        width: 27.87vw;
    }
    
    .section04 .voice03 .voice-name{
        width: 23.89vw;
    }
    
    .section04 .voice04 .voice-name{
        width: 23.98vw;
    }
    
    .section04 .voice05 .voice-name{
        width: 21.30vw;
    }

    /* ボタン */
    .accordion-btn {
        bottom: 0;
        font-size: 2.0rem;
        padding: 0.4em 1.5em 0.3em;
    }
    
    /* 最初に見えてるテキストエリアの高さ */
    .accordion-text.is-hide {
        height: 170px;
    }
    
    /* テキストをグラデーションで隠す */
    .accordion-text::before {
        height: 80px; /* グラデーションで隠す高さ */
    }
    
    /* 閉じるボタンの位置 */
    .accordion-btn.is-show {
        bottom: 0;
    }
    
    .accordion-text p{
        font-size: 1.8rem;
        line-height: 1.8;
    }
    
    .accordion-text p:nth-of-type(n+2){
        margin-top: 20px;
    }
    
    .accordion-text p:last-of-type{
        padding-bottom: 55px;
    }
    
    .section-wrap.section05{
        background-image: url(../images/sec05_back_pc.webp);
        background-position: center top;
        background-repeat: no-repeat;
        background-size: contain;
    }
    
    .section05 h2.sec-title{
        width: 46.6%;
        max-width: 411px;
        margin-bottom: 80px;
    }
    
    .section05 .seminar-conts-box:nth-of-type(n+2){
        margin-top: 80px;
    }
    
    .section05 .seminar-conts-box h3{
        padding: 20px 20px 20px 0;
        text-align: left;
    }
    
    .section05 .seminar-conts-box h3 img{
        margin: 0;
    }
    
    .section05 .seminar-conts01 h3 img{
        width: 100%;
        max-width: 954px;
    }
    
    .section05 .seminar-conts02 h3 img{
        width: 72.7%;
        max-width: 694px;
    }
    
    .section05 .seminar-conts03 h3 img{
        width: 90.1%;
        max-width: 860px;
    }
    
    .section05 .seminar-conts04 h3 img{
        width: 95.8%;
        max-width: 914px;
    }
    
    .section05 .seminar-conts05 h3 img{
        width: 76.8%;
        max-width: 733px;
    }
    
    .section05 .seminar-conts-box .seminar-conts-list{
        padding: 30px;
    }

    .section05 .seminar-conts-box .seminar-conts-list ul{
        margin: 0 auto;
    }

    .section05 .seminar-conts01 .seminar-conts-list ul{
        max-width: 710px;
    }

    .section05 .seminar-conts02 .seminar-conts-list ul{
        max-width: 640px;
    }

    .section05 .seminar-conts03 .seminar-conts-list ul{
        max-width: 840px;
    }

    .section05 .seminar-conts04 .seminar-conts-list ul{
        max-width: 685px;
    }

    .section05 .seminar-conts05 .seminar-conts-list ul{
        max-width: 660px;
    }
    
    .section05 .seminar-conts-box .seminar-conts-list ul li{
        font-size: 2.4rem;
    }
    
    .section05 .seminar-conts-box .seminar-conts-list ul li::before{
        position: absolute;
        content: "";
        top: 9px;
        width: 14px;
        height: 14px;
    }
    
    .section05 .seminar-conts-box .seminar-conts-list ul li:nth-child(n+2){
        margin-top: 10px;
    }
    
    .section06 h2.sec-title{
        width: 80%;
        max-width: 706px;
        margin-bottom: 80px;
    }
    
    .section06 .profile-img{
        width: 80%;
        max-width: 700px;
        margin: 0 auto 20px;
    }
    
    .section06 p{
        font-size: 1.8rem;
        line-height: 1.8;
        text-align: center;
    }
    
    .section06 .profile-name{
        font-size: 4.0rem;
        margin: 0 0 50px;
    }
    
    .section06 .profile-name .katagaki{
        font-size: 2.2rem;
        margin: 0 0 5px;
    }
    
    .section06 .message-box{
        padding: 10px;
        margin-top: 80px;
    }
    
    .section06 .message-box .message-box-in{
        border: 2px solid #06275e;
        padding: 50px 25px;
    }
    
    .section06 .message-box p:nth-of-type(n+2){
        margin-top: 20px;
    }
    
    .section06 .message-box h3{
        width: 28.4%;
        max-width: 232px;
        margin: 0 auto 40px;
    }
    
    .section06 .message-box .syomei{
        width: 20.8%;
        max-width: 170px;
        margin: 50px auto 0 !important;
    }
    
    .scroll-infinity__item {
        width: calc(100vw / 4);
    }
    
    .section07 h2.sec-title{
        width: 38.8%;
        max-width: 342px;
    }
    
    .section07 .seminar-img{
        width: 80%;
        max-width: 800px;
        margin: 0 auto 60px;
    }

    .section07 table{
		display: table;
        border: 1px solid #fff;
        max-width: 800px;
        margin: 0 auto;
	}

	.section07 table tbody{
		display: table-row-group;
	}

	.section07 table tr{
		display: table-row;
	}

	.section07 table th,
	.section07 table td{
		display: table-cell;
        border-bottom: 1px solid #fff;;
        font-size: 2.0rem;
	}

    .section07 table tr:last-of-type th,
    .section07 table tr:last-of-type td{
        border-bottom: none;
    }
    
    .section07 table th{
        width: 15%;
        padding: 15px;    
    }
    
    .section07 table td{
        padding: 20px 25px;
        text-align: left;
    }
    
    .section07 table td .schedule{
        font-size: 2.8rem;
    }
    
    .section07 table td .schedule:nth-child(n+2){
        margin-top: 5px
    }
    
    .section07 table td .schedule span{
        display: inline-block;
        font-size: 2.2rem;
        margin: 0 0 0 25px;
    }
    
    .section07 table td .venue,
    .section07 table td .fee{
        font-size: 2.4rem;
    }
    
    .section07 table td .address{
        font-size: 1.8rem;
        margin: 5px 0 0;
    }
    
    .section07 table td .tyuui{
        font-size: 1.6rem;
        width: 100%;
        margin: 5px 0 0;
    }
    
    .section08 h2.sec-title{
        width: 64.5%;
        max-width: 569px;
        margin-bottom: 80px;
    }
    
    footer {
        padding: 40px 0 10px;
    }
    
    .footer-menu li{
        font-size: 1.4rem;
        display: inline-block;
        margin: 0 0 0 40px !important;
    }
    
    .footer-menu li:first-child{
        margin-left: 0 !important;
    }
    
    .copyright{
        padding: 15px 0;
    }
    
    .copyright small{
        font-size: 1.4rem;
    }



    /* 2026.01 動画追加 */
    
    .section-wrap.video-sec{
        padding: 65px 0;
    }
    
    .video-title{
        font-size: 3.0rem;
        margin: 0 0 20px;
    }
    
    .video-title .sub{
        font-size: 2.0rem;
        margin-top: 5px;
    }

    .section05 .media-video{
        margin-bottom: 80px;
    }
    
    .section07 .video-title{
        margin-top: 80px;
    }

   
    




}



@media (min-width : 801px){

    .section08 .entry-form .regist_form .my_left.my_column{
        font-size: 2.0rem;
        padding: 25px 10px !important;
        width: 35%;
    }
    
    .section08 .entry-form .regist_form .my_right.my_column{
        font-size: 2.0rem;
        padding: 25px 10px !important;
        width: 65%;
    }

    .section08 .entry-form .regist_form form.myForm .required .my_column.my_left label:first-child:after{
        font-size: 1.4rem;
        height: 20px;
        margin-bottom: 4px;
    }
    
    .section08 .entry-form .regist_form input[type="email"],
    .section08 .entry-form .regist_form input[type="number"],
    .section08 .entry-form .regist_form input[type="search"],
    .section08 .entry-form .regist_form input[type="text"],
    .section08 .entry-form .regist_form input[type="tel"],
    .section08 .entry-form .regist_form input[type="url"],
    .section08 .entry-form .regist_form input[type="password"],
    .section08 .entry-form .regist_form textarea,
    .section08 .entry-form .regist_form select{
        font-size: 2.0rem;
        height: 48px;
    }

    .section08 .entry-form .regist_form input,
    .section08 .entry-form .regist_form textarea,
    .section08 .entry-form .regist_form select,
    .section08 .entry-form .regist_form fieldset{
        margin-bottom: 0;
    }

    .section08 .entry-form .regist_form input[type="submit"]{
        font-size: 1.5em;
    }


}/*横幅801px以上*/



@media (min-width : 1080px){

    header .container{
        height: 1020px;
        background-image: url(../images/mv_pc.webp), url(../images/noise-pattern-with-subtle-cross-lines.png);
        background-position: center 140px, center top;
        background-repeat: no-repeat, repeat;
        background-size: 1511px 591px, 240px 240px;
        padding-bottom: 0;
    }
    
    header .fv-catch{
        top: 60px;
        width: 797px;
    }
    
    header .main-title{
        bottom: 70px;
        width: 860px;
    }

    .section04 .voice-box{
        padding: 8px;
    }
    
    .section04 .voice-box:nth-of-type(n+2){
        margin-top: 60px;
    }
    
    .section04 .voice-box .voice-box-in{
        border: 1px solid #b48732;
        padding: 95px 40px 40px;
    }
    
    .section04 .voice-box .voice-num{
        width: 230px;
    }
    
    .section04 .voice-box h3{
        margin: 0 0 40px;
    }
    
    .section04 .voice01 h3{
        width: 383px;
    }
    
    .section04 .voice02 h3{
        width: 403px;
    }
    
    .section04 .voice03 h3{
        width: 341px;
    }
    
    .section04 .voice04 h3{
        width: 463px;
    }
    
    .section04 .voice05 h3{
        width: 452px;
    }
    
    .section04 .voice-box .voice-img{
        width: 440px;
    }

    .section04 .voice-box .voice-name{
        margin: 0 0 45px;
    }

    .section04 .voice01 .voice-name{
        width: 259px;
    }
    
    .section04 .voice02 .voice-name{
        width: 301px;
    }
    
    .section04 .voice03 .voice-name{
        width: 258px;
    }
    
    .section04 .voice04 .voice-name{
        width: 259px;
    }
    
    .section04 .voice05 .voice-name{
        width: 230px;
    }

    .scroll-infinity__item {
        width: calc(100vw / 5);
    }


    /* 2026.01 動画追加 */
    
    .section-wrap.video-sec{
        padding: 80px 0;
    }
    
    .video-title{
        font-size: 3.6rem;
    }
    
    .video-title .sub{
        font-size: 2.4rem;
    }

    .section05 .media-video{
        margin-bottom: 100px;
    }
    
    .section07 .video-title{
        margin-top: 100px;
    }
    

}



@media (min-width : 1280px){

    .section03 .future-conts .future-img{
        width: 56%;
    }

    .section03 .future-conts:nth-of-type(odd) .future-img{
        margin: 0 -5% 0 0;
    }

    .section03 .future-conts:nth-of-type(even) .future-img{
        margin: 0 0 0 -5%;
    }
    
    .section03 .future-conts .future-text{
        width: 49%;
        margin: 0;
    }
    
}



@media (min-width : 1370px){

    .scroll-infinity__item {
        width: calc(100vw / 6);
    }
    
}



@media (min-width : 1520px){

    .section03 .future-conts .future-img{
        width: 55.6%;
    }

    .section03 .future-conts:nth-of-type(odd) .future-img{
        margin: 0 -4.2% 0 0;
    }

    .section03 .future-conts:nth-of-type(even) .future-img{
        margin: 0 0 0 -4.2%;
    }
    
    .section03 .future-conts .future-text{
        width: 48.6%;
    }


}



@media (min-width : 1650px){

    .scroll-infinity__item {
        width: calc(100vw / 7);
    }
    
}



@media (min-width : 1920px){

    .scroll-infinity__item {
        width: calc(100vw / 8);
    }
    
}



