﻿@charset"utf-8";

/* HTML orandagoDejima 202508
----------------------------------------------------------------------------------------------------*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif;
        }
        
        body {
            margin: 0 auto;
            overflow-x: hidden;
            background-color: #fff;
            color: #333;
            font-size: 0.9rem;
        }

        a,
        a:link { color: #0000cc; text-decoration: none; }
       /* a:visited { color: #9900cc; text-decoration: none; } */
        a:hover,
        a:active { color: #0000cc; text-decoration: underline; }

        a img, a:link img, a:visited img, a:hover img, a:active img { border: none; text-decoration: none; }

        
         header {
            background: linear-gradient(to bottom, #fff, #FFE4C4);
            padding: 5px 20px;
        }
       
        .logo-container {
		   text-align: center;        
        }

        .logo {
           display: block;
		   margin: 0 auto;
		   width: auto;
        }

   @media (max-width: 768px) {
	.logo {
		   width: 100%;
        }
}

    .site-title {
            font-size: 1.5rem;
            text-align: center;
            color: #222;
        }

  nav ul {
			display: flex;
			justify-content: center;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        nav li {
            margin-left: 20px;
        }

        nav li:first-child {
            margin-left: 0;
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 5px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        nav a:hover {
            background-color: #FF9933;
            color: white;
        }

       

        @media (max-width: 768px) {
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav li {
                margin: 5px 10px;
            }
            
            nav a {
                font-size: 0.8rem;
                padding: 6px 8px;
            }
        }

       @media (max-width: 480px) {
            nav ul {
			display: none;
			}
        }

       #spNav {
		  text-align: center;
		   }


       #nav-drawer {
           display: none;
		   }

     @media (max-width: 480px) {
       #nav-drawer {
           text-align: left;
		   display: block;
		   position: relative;
		   }
}

	 @media (max-width: 480px) {
		 #spNav {
          display: flex;
		   }
	 }

    /*チェックボックス等は非表示に*/
        .nav-unshown {
          display:none;
        }

    /*アイコンのスペース*/
        #nav-open {	
          display: inline-block;
          width: 20px;
          height: 18px;
          vertical-align: middle;
        }

    /*ハンバーガーアイコンをCSSだけで表現*/
        #nav-open span, #nav-open span:before, #nav-open span:after {
            position: absolute;
            height: 3px;/*線の太さ*/
            width: 20px;/*長さ*/
            border-radius: 3px;
            background: #FF9933;
            display: block;
            content: '';
            cursor: pointer;
            }
        #nav-open span:before {
            bottom: -8px;
            }
        #nav-open span:after {
            bottom: -16px;
            }

    /*閉じる用の薄黒カバー*/
        #nav-close {
            display: none;/*はじめは隠しておく*/
            position: fixed;
            z-index: 99;
            top: 0;/*全体に広がるように*/
            left: 0;
            width: 100%;
            height: 100%;
            background: #2b2a2a;/*たぶんグレーみたいな色の方がより良い。さらに調節　*/
            opacity: 0;
            transition: .3s ease-in-out;
            }    

    /*中身*/
        #nav-content {
            overflow: auto;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 9999;/*最前面に*/
            width: 70%;/*右側に隙間を作る（閉じるカバーを表示）*/
            max-width: 330px;/*最大幅（調整してください）*/
            height: 100%;
            background: #fa8817;/*背景色*/
            transition: .3s ease-in-out;/*滑らかに表示*/
            -webkit-transform: translateX(-105%);
            transform: translateX(-105%);/*左に隠しておく*/
            }

    /*チェックが入ったらもろもろ表示*/
        #nav-input:checked ~ #nav-close {
            display: block;/*カバーを表示*/
            opacity: .5;
            }

        #nav-input:checked ~ #nav-content {
            -webkit-transform: translateX(0%);
            transform: translateX(0%);/*中身を表示（右へスライド）*/
            box-shadow: 6px 0 25px rgba(0,0,0,.15);
            }
        
        .humul {
	       margin-top: 40px;
           margin-left: 20px;
	       padding: 0;
	       list-style: none;
	       font-size: 1.5rem;
	       font-weight: bold;
	       line-height: 4rem;
	       }

        .humul a {
	       color: #fff;
	       text-decoration: none;
            }

        .humul a:hover {
	       color: #f7be7a;
            }

     .base-contents {
        max-width: 700px;
        margin: 0 auto; 
        }

      @media (max-width: 768px) {
	    .base-contents {
		   font-size: 0.8rem;
           padding: 0 8px;
        }
}
        
        .cta-banner {
            background-color: #FF9933;
            color: white;
            text-align: center;
            padding: 10px;
            margin: 20px auto;
            max-width: 700px;
            border-radius: 10px;
        }

        .cta-banner a:hover {
            opacity: 0.6;
            transition: .3s;
        }
        
        .cta-banner h2 {
            font-size: 1.5rem;
        }
        
        .cta-banner .button {
            display: inline-block;
            font-size: 1.3rem;
            padding: 10px 20px;
            background-color: white;
            color: #FF9933;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin-top: 10px;
            margin-bottom: 10px;
        }

     @media (max-width: 480px) {
         .cta-banner .button {
            display: inline-block;
            font-size: 1rem;
            padding: 10px 20px;
            background-color: white;
            color: #FF9933;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin-top: 10px;
            margin-bottom: 10px;
        }
}
        
        .cta-banner .button::after {
            content: " ▶";
        }
        
        .steps-container {
            max-width: 700px;
            margin: 16px auto;
        }
        
        .step {
            margin-bottom: 16px;
        }
        
        .step h2 {
            color: #FF9933;
            font-size: 1.5rem;
            margin-bottom: 8px;
        }
        
        .step p {
            color: #666;
            line-height: 1.6;
        }
        
        .contact-link {
            text-align: right;
            display: block;
            margin-top: 10px;
        }
    　　
        
        .contact-link::after {
            content: " >";
        }
        
        .pricing-section {
            max-width: 700px;
            margin: 24px auto;
            text-align: center;
        }
        
        .pricing-section h2 {
            font-size: 1.8rem;
            margin-bottom: 8px;
            color: #555;
        }

        .pricing {
            margin-bottom: 16px;
        }
        
        .pricing p {
            color: #666;
            line-height: 1.6;
            text-align: left;
        }
        
    .pricing-toggle-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            gap: 15px;
        }

        .toggle-label {
            font-weight: 500;
            color: #333;
            font-size: 1rem;
        }

        .toggle-label.active {
            color: #FF9933;
            font-weight: bold;
        }

        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 30px;
            cursor: pointer;
        }

        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #FF9933;
            transition: 0.3s;
            border-radius: 30px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 24px;
            width: 24px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: 0.3s;
            border-radius: 50%;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        input:checked + .slider {
            background-color: #FF9933;
        }

        input:checked + .slider:before {
            transform: translateX(30px);
        }

        .slider:hover {
            box-shadow: 0 4px 8px rgba(255, 153, 51, 0.3);
        }

        @media (max-width: 480px) {
            .pricing-toggle-container {
                flex-direction: column;
                gap: 10px;
            }
            
            .toggle-switch {
                width: 50px;
                height: 25px;
            }
            
            .slider:before {
                height: 19px;
                width: 19px;
                left: 3px;
                bottom: 3px;
            }
            
            input:checked + .slider:before {
                transform: translateX(25px);
            }
        }
        
        .pricing-cards, .pricing-cards2 {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            transition: opacity 0.3s ease-in-out;
        }

         @media (max-width: 480px) {
        .pricing-cards, .pricing-cards2 {
            display: flex;
            flex-direction: column;
        }
}

        .pricing-cards2 {
            display: none;
        }

        .pricing-cards2.active {
            display: flex;
        }

        .pricing-cards.hidden {
            display: none;
        }
        
        .pricing-card {
            width: 28%;
            min-width: 120px;
            background-color: #f5f5f5;
            margin-bottom: 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            color: #000;
            display: block;
            border: 2px solid transparent;
        }

        .pricing-card a {
            color: #000;
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(255, 153, 51, 0.3);
            border-color: #FF9933;
            background-color: #fff;
            color: #000;
            text-decoration: none;
        }

        .pricing-card:hover .pricing-card-header {
            background-color: #e6851a;
            text-decoration: none;
            
        }

        .pricing-card:active {
            transform: translateY(-2px);
            color: #000;
            text-decoration: none;
        }

 @media (max-width: 480px) {
     .pricing-card {
            width: 100%;
            margin-bottom: 20px;
            text-align: center;
	 }
}
        
        .pricing-card-header {
            background-color: #FF9933;
            color: white;
            padding: 10px;
            font-weight: bold;
        }
        
        .pricing-card-body {
            padding: 15px 10px;
        }
        
        .pricing-card-frequency {
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        .pricing-card-frequencysub {
			padding: 0 25px;
			font-size: 0.75rem;
			margin-bottom: 5px;
			text-align: left;
			}
        
        .pricing-card-price {
            font-size: 1.3rem;
            font-weight: bold;
        }


        /* 料金表組みのスタイル追加 */
        .pricing-table-container {
            margin-top: 0px;
            overflow-x: auto;
        }
        
        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin: 10px 0;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .pricing-table th {
            background: #FF9933;
            color: white;
            padding: 15px;
            text-align: center;
            font-weight: 600;
        }
        
        .pricing-table td {
            padding: 12px 15px;
            text-align: center;
            border-bottom: 1px solid #eee;
        }
        
        .pricing-table tr:hover {
            background-color: #f8f9fa;
        }
        
        .pricing-table .course-type {
            background-color: #fff5f2;
            font-weight: 600;
            color: #FF9933;
            vertical-align: middle;
            border-right: 2px solid #FF9933;
        }

        .pricing-table .course-name {
            font-weight: 500;
        }

        .pricing-table .price {
            font-weight: 600;
            color: #FF9933;
            font-size: 1.1em;
        }
        
        @media (max-width: 768px) {
            .pricing-table {
                font-size: 0.9em;
            }
            
            .pricing-table th,
            .pricing-table td {
                padding: 8px 6px;
            }
        }

        
        .classroom-section {
            max-width: 700px;
            margin: 24px auto;
        }
        
        .classroom-section h2 {
            font-size: 1.8rem;
            margin-bottom: 16px;
            color: #555;
            text-align: center;
        }
        
        .classroom-content {
            display: flex;
            align-items: normal;
        }

     @media (max-width: 480px) {
         .classroom-content {
            display: flex;
            flex-direction: column;
        }
}
        
        .classroom-text {
            flex: 1;
            color: #666;
            line-height: 1.6;
        }
        
        .classroom-images {
            flex: 1;
            padding-right: 20px;
        }

         @media (max-width: 480px) {
         .classroom-images {
            flex: 1;
            padding-right: 0px;
            }
        }
        
        .classroom-image {
            width: 100%;
            height: auto;
            margin-bottom: 10px;
            border-radius: 5px;
        }


        .form-section {
            max-width: 700px;
            margin: 24px auto;
            text-align: center;
        }

		 .form-section h2 {
            font-size: 1.8rem;
            margin-bottom: 16px;
            color: #555;
            text-align: center;
        }

		 .form-Area {
            margin-bottom: 16px;
        }

		.formList {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            margin-left: 20px;
            font-size: 0.95rem;
			text-align: left;
        }
        
        .access-section {
            max-width: 700px;
            margin: 24px auto;
        }
        
        .access-section h2 {
            font-size: 1.8rem;
            margin-bottom: 16px;
            color: #555;
            text-align: center;
        }
        
        .map-container {
            margin-bottom: 16px;
        }
        
        .map-image {
            width: 100%;
            height: auto;
            border-radius: 5px;
        }
        
        .access-details {
            display: flex;
        }
        
        .access-info {
            flex: 2;
        }
        
        .access-info h3 {
            color: #FF9933;
            margin: 10px 0 5px;
            font-size: 1rem;
        }
        
        .access-info p {
            margin-bottom: 8px;
            line-height: 1.4;
            color: #666;
        }
        
        .access-map {
            flex: 1;
            padding-left: 20px;
        }
        
        .access-map img {
            width: 100%;
            height: auto;
        }
        
        .qr-code {
            text-align: center;
            margin: 40px 0;
        }
        
        .qr-code img {
            width: 150px;
            height: auto;
        }

        /* Adding FAQ section styles with accordion functionality */
        .faq-section {
            padding: 60px 20px;
            background-color: #f9f9f9;
        }

        .faq-section h2 {
            text-align: center;
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 10px;
        }

        .faq-subtitle {
            text-align: center;
            color: #333;
            margin-bottom: 40px;
            font-size: 0.9rem;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }

        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background-color: #ffe4c4;
        }

        .faq-question h3 {
            font-size: 1.1rem;
            color: #333;
            margin: 0;
            flex: 1;
        }

        .faq-icon {
            font-size: 1.5rem;
            color: #ff6b35;
            font-weight: bold;
            transition: transform 0.3s ease;
            margin-left: 15px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: #fafafa;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 20px 25px;
        }

        .faq-answer p {
            margin: 0;
            color: #555;
            line-height: 1.6;
        }

        .faq-contact {
            text-align: center;
            margin-top: 50px;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .faq-contact p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #333;
        }

        .contact-button {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b35, #ff8c42);
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .contact-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

        @media (max-width: 768px) {
            .faq-section {
                padding: 40px 15px;
            }

            .faq-section h2 {
                font-size: 2rem;
            }

            .faq-question {
                padding: 15px 20px;
            }

            .faq-question h3 {
                font-size: 1rem;
            }

            .faq-item.active .faq-answer {
                padding: 15px 20px;
            }

            .faq-contact {
                margin-top: 30px;
                padding: 20px;
            }
        }

        .blog-section {
            padding: 60px 20px;
            background-color: #fff;
        }

        .blog-section h2 {
            text-align: center;
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 10px;
        }

        .blog-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 50px;
            font-size: 0.9rem;
        }

        .blog-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .blog-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .blog-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }

        .blog-content {
            padding: 25px;
        }

        .blog-date {
            color: #FF9933;
            font-size: 0.9rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .blog-title {
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .blog-excerpt {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .blog-excerptList {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            margin-left: 20px;
            font-size: 0.95rem;
            font-weight: bold;
        }

        .blog-link {
            color: #FF9933;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .blog-link:hover {
            color: #e6851a;
            text-decoration: underline;
        }

        .blog-more {
            text-align: center;
            margin-top: 50px;
        }

        .blog-more-button {
            display: inline-block;
            background: linear-gradient(135deg, #FF9933, #ffb366);
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
        }

        .blog-more-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
        }

        @media (max-width: 768px) {
            .blog-section {
                padding: 40px 15px;
            }

            .blog-section h2 {
                font-size: 1.5rem;
            }

            .blog-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .blog-content {
                padding: 20px;
            }

            .blog-title {
                font-size: 1.2rem;
            }
        }

         /* Added SNS buttons styles in footer */
        .footer-sns {
            margin-bottom: 15px;
        }

        .sns-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            margin: 0 10px;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
            color: white;
        }

        .sns-x {
            background-color: #000;
        }

        .sns-x:hover {
            background-color: #333;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .sns-instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .sns-instagram:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(188, 24, 136, 0.4);
        }

        .sns-text {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
            font-weight: 500;
        }
        
      /*  footer {
            background: linear-gradient(to top, #fff, #FFE4C4);
            text-align: center;
            padding: 20px;
            color: #666;
            font-size: 0.8rem;
        } */


footer {
            background: linear-gradient(to top, #fff, #FFE4C4);
            padding: 20px;
            color: #333;
            font-size: 0.8rem;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .footer-left {
            flex: 1;
        }

        .footer-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

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

        .sns-text {
            color: #333;
            font-size: 12px;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .sns-buttons {
            display: flex;
            gap: 10px;
        }

        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .footer-right {
                align-items: center;
            }
        }

