	/* Reset CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


	body {
	    font-family: Meiryo, Arial, sans-serif;
	    margin: 0;
	    padding: 0;
	}
	img {
	    display: block;
	    margin: 0;
	    padding: 0;
	    height: auto; /* アスペクト比を維持して高さを自動調整 */
	}

	.container {
	    width: 100%;
	    margin: 0 auto;
	    box-sizing: border-box;
	    background-color: #fff;
	}

	header {
	    color: #fff;
	    text-align: left;
	    padding: 1em 20px;
	    position: relative;
	    display: flex;
	    justify-content: space-between;
	    align-items: center;
	    width: 100%;
	    box-sizing: border-box;
	}

	.logo-container img {
	max-width: 40%;
	    height: auto;
	}


	.menu-toggle-label {
	    cursor: pointer;
	    display: none;
	    position: absolute;
	    right: 20px;
	    z-index: 3;
	    padding: 10px;
	    transition: opacity 0.3s ease;
	}

	.menu-toggle-label span {
	    display: block;
	    width: 30px;
	    height: 3px;
	    background-color: #00a9dc;
	    margin: 6px 0;
	    transition: transform 0.3s ease, opacity 0.3s ease;
	}

	#menu-checkbox {
	    display: none; /* チェックボックスを非表示にする */
	}

	#menu-checkbox:checked + .menu-toggle-label span:nth-child(1) {
	    transform: rotate(-45deg) translate(-5px, 6px);
	}

	#menu-checkbox:checked + .menu-toggle-label span:nth-child(2) {
	    opacity: 0;
	}

	#menu-checkbox:checked + .menu-toggle-label span:nth-child(3) {
	    transform: rotate(45deg) translate(-5px, -8px);
	}

	#menu-checkbox:checked ~ nav {
	    display: block;
	}

	nav {
	    display: flex;
	    justify-content: center;
	    width: 100%;
	    margin-left: 0; /* メニュー本体の左の余白を削除 */
	    z-index: 2;
	}

	nav ul {
	    list-style: none;
	    margin: 0;
	    padding: 0;
	    display: flex;
	    width: 100%;
	    justify-content: flex-end; 
	}

	nav ul li {
	    margin: 0 10px;
	}

	nav a {
	    text-decoration: none;
	    color: #000;
	    font-size: 1.2em;
	}

	nav a:hover {
	    text-decoration: none;
	    color: #e9a000;
	    font-size: 1.2em;
	}




	/* MV */
	.custom-image-wrapper {
	    position: relative;
	}
	.custom-image-wrapper img{
		    max-width: 100%; /* 親要素の幅に合わせて最大幅を設定 */
}

	/* CONTENTS */
.additional-section {
	    max-width: 1280px;
	    margin: 0 auto;
	    text-align: center;
	}

.additional-section h2 {
    text-align: center;
    margin-top: 60px;
    margin-bottom:20px;
    font-weight: bold;
    font-size: 24px;
}


	.additional-section img {
	    display: block;
	    margin: 0px auto;
	    height: auto;
	}

.additional-section h3 {
    display: inline-block;
    text-align: center;
    font-weight: bold;
    font-size: 32px;
    position: relative;
    z-index: 1;
    margin:30px 0;
}

.additional-section h3::after {
    content: ""; /* 疑似要素を追加 */
    display: block;
    width: 100%;
    height: 10px;
    background-color: #f4cb24;
    border-radius: 10px;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: -1;
}

.additional-section .content-wrapper {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding:40px;
}

.additional-section .content-item {
    flex-basis: calc(33.33% - 20px); /* 3つ横並びで間隔を調整 */
}

.additional-section .content-item img {
    height: auto;
}

.additional-section .caption{
    margin-top: 10px;
    font-weight: bold;
    font-size: 22px;
    color:#d20000;
    margin-top:25px;
}
.additional-section .text {
    margin-top: 10px;
    text-align: left;
    line-height: 1.7;
}


.triangle-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 60px; /* 三角形の高さに合わせて調整 */
}

.triangle {
  width: 0;
  height: 0;
  position: absolute;
}

.triangle:nth-child(1) {
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 30px solid #00a9dc; /* 青い三角形 */
}

.triangle:nth-child(2) {
  bottom: 14px; /* 一番上の三角形と一番下の三角形を少し重ねる */
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 30px solid #fff; /* 白い三角形 */
}

.triangle:nth-child(3) {
  bottom: 20px; /* 一番上の三角形を少し下に配置 */
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 30px solid #00a9dc; /* 青い三角形 */
}


.new-section {
    background-color: #fffddf;
    position: relative;
    margin-top:30px;
}

.new-section .background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fffddf;
}

.new-section .content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px;
    box-sizing: border-box;
    position: relative;
}

.service-img {
    width: 100%; /* 画像を親要素に合わせて表示 */
    max-width: 945px; /* 画像の最大幅を設定 */
    display: block;
    margin: -70px auto 20px;
}

.new-section .text-container h4 {
    background-color: #00a9dc;
    border-radius: 30px;
    padding: 20px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 32px;
    text-align: center;
}

	.wrap-set-container{
	margin-top:40px;
	display: flex;
	justify-content: space-between;
	}

	.set-container{
	display: flex;
	width:48%;
	}

	.set-container h5{
	color: #00a9dc;
	font-size: 30px;
	font-weight: bold;
	margin-bottom:15px;
	filter: drop-shadow(1px 2px rgba(255, 255, 255, 1));
	}
	
	.set-container p{
	line-height: 1.7;
	}

	.set-img{
	padding-right:20px;
	}
	
	.set-img img{
		max-width:87px;
	}
	
	.service-option{
	margin-top:20px;
	}

	.movie-section{
	margin-top:20px;
	}
	
	.movie-section .content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px;
    box-sizing: border-box;
    position: relative;
}

.movie-section .text-container h4 {
    background-color: #00a9dc;
    border-radius: 30px;
    padding: 20px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 32px;
    text-align: center;
}

.movie-servie{
	display: flex;
	margin-bottom:40px;

}

.movie-servie-img{
	padding-right:20px;
}

.movie-servie p{
	line-height: 1.7;
}

.movie-servie p span{
	font-size:0.9em;
}

.movie-plan{
	display: flex;
}

.movie-plan01{
	background-color: #fffddf;
	flex: 1;
	padding:20px;
	margin-right:20px;
	border-radius: 10px;
}

.movie-plan02{
	background-color: #fffddf;
	flex: 1;
	padding:20px;
	border-radius: 10px;
}

.movie-y{
	text-align: center;
	font-size:1.9em;
	font-weight: bold;
	margin-bottom:15px;
}

.movie-y span{
	background: linear-gradient(transparent 90%, #00a9dc 10%);
}

.movie-plan p{
	line-height: 1.7;
}

.movie-option{
	text-align: center;
	margin-top:20px;
}

.qa-section{
	max-width: 1280px;
    margin: 0 auto;
    padding: 40px;
    box-sizing: border-box;
    position: relative;
}

.qa-section h3{
	margin-bottom: 20px;
	font-weight: bold;
	font-size: 32px;
	text-align: center;
}
.qa-6 {
    max-width: 100%;
    margin-bottom: 5px;
    border-bottom: 2px solid #d6dde3;
}

.qa-6 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.qa-6 summary::before,
.qa-6 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-6 summary::before {
    color: #75bbff;
    content: "Q";
}

.qa-6 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.qa-6[open] summary::after {
    transform: rotate(225deg);
}

.qa-6 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa-6[open] p {
    transform: none;
    opacity: 1;
}

.qa-6 p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}

.company-section h3 {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 32px;
    text-align: center;
}

.table-wrapper {
    overflow-x: auto;
    padding: 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table th {
    width: 30%;
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #2ca7da;
    background-color: #a0d4ea;
}

.company-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px dotted #2ca7da;
}






	/* footer */
.footer {
    background-color: #f1f1e3;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
}

.footer .logo-container {
    display: flex;
    justify-content: center; /* 横方向の中央揃え */
    align-items: center; /* 縦方向の中央揃え */
    flex-direction: column; /* 要素を縦方向に配置 */
}

.footer .logo-container a {
    margin-top: 30px;
    margin-bottom: 30px;
}

.footer .logo-container a img {
    vertical-align: middle;
    display: inline-block;
}


	.menu {
	    display: flex;
	    justify-content: center;
	    width: 100%;
	    margin-left: 0; /* メニュー本体の左の余白を削除 */
	    z-index: 2;
	}

	.menu ul {
	    list-style: none;
	    margin: 0;
	    display: flex;
	    width: 100%;
	    justify-content: center; /* 中央揃えに修正 */
	}

	.menu li {
	    margin: 0 15px;
	}

	.menu a {
	    text-decoration: none;
	    color: #000;
	    font-weight: bold;
	    font-size: 16px;
	}
	.menu a:hover {
	    color: #e9a000;
	}


	.copyright {
	    margin-top: 10px;
	    color: #000;
	}
	


	@media screen and (max-width: 768px) {
	    .custom-image-wrapper img {
	        content: url('../img/mv-sp.png'); /* 画像を切り替える */
	    }
	    
	    
	    .service-img img {
	        content: url('../img/service-img01-sp.png'); /* 画像を切り替える */
	        width:100%;
	    }
	    .menu-toggle-label {
	        display: block;
	        opacity: 1;
	        right: 20px;
	        left: auto;
	    }

	nav {
	        display: none;
	        flex-direction: column;
	        position: absolute;
	        top: 80px;
	        left: 0;
	        right: 0;
	        background-color: rgba(51, 51, 51, 0.9); /* 背景色を透過させる */
	        transition: opacity 0.3s ease;
	        opacity: 0;
	    }

	    nav ul {
	        flex-direction: column;
	        align-items: center;
	    }

	    nav ul li {
	        margin: 10px 0;
	    }
	    
	    nav a {
	    text-decoration: none;
	    color: #fff;
	    font-size: 1.2em;
	}

	    #menu-checkbox:checked ~ nav {
	        display: flex;
	        opacity: 1;
	    }
	    
	    
.additional-section {
	    max-width: 100%;
	    margin: 0 auto;
	    text-align: center;
	}

.additional-section h2 {
    text-align: center;
    margin-top: 60px;
    margin-bottom:20px;
    font-weight: bold;
    font-size: 24px;
}


	.additional-section img {
	    display: block;
	    margin: 0px auto;
	    height: auto;
	}

.additional-section h3 {
    display: inline-block;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    position: relative;
    z-index: 1;
    margin:30px 0;
}

.additional-section h3::after {
    content: ""; /* 疑似要素を追加 */
    display: block;
    width: 100%;
    height: 10px;
    background-color: #f4cb24;
    border-radius: 10px;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: -1;
}

.additional-section .content-wrapper {
    display: block;
    margin: 20px 0;
    padding:20px;
}

.additional-section .content-item {
	margin-bottom:20px;
}

.additional-section .content-item img {
    height: auto;
}

.additional-section .caption{
    margin-top: 10px;
    font-weight: bold;
    font-size: 22px;
    color:#d20000;
    margin-top:25px;
}
.additional-section .text {
    margin-top: 10px;
    text-align: left;
    line-height: 1.7;
}	    
	    
	    
	    
.new-section {
    background-color: #fffddf;
    position: relative;
    margin-top:30px;
}

.new-section .background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fffddf;
}

.new-section .content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
}

.service-img {
    width: 100%; /* 画像を親要素に合わせて表示 */
    max-width: 100%; /* 画像の最大幅を設定 */
    display: block;
    margin: 10px auto 20px;
}

.new-section .text-container h4 {
    background-color: #00a9dc;
    border-radius: 30px;
    padding: 20px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    line-height: 1.5;
}

.new-section .text-container p{
	line-height: 1.7;
}

	.wrap-set-container{
	margin-top:10px;
	display: block;
	}

	.set-container{
	display: block;
	width:100%;
	margin-bottom:10px;
	}

	.set-container h5{
	color: #00a9dc;
	font-size: 30px;
	font-weight: bold;
	margin-top:15px;
	margin-bottom:15px;
	filter: drop-shadow(1px 2px rgba(255, 255, 255, 1));
	text-align: center;
	}
	
	.set-container p{
	line-height: 1.7;
	}

	.set-img{
	padding-right:20px;
	}
	
	.set-img img{
		max-width:87px;
		margin : 0 auto;
	}
	
	.service-option{
	margin-top:20px;
	}	    


	.movie-section{
	margin-top:20px;
	}
	
	.movie-section .content {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
}

.movie-section .text-container h4 {
    background-color: #00a9dc;
    border-radius: 30px;
    padding: 20px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}

.movie-servie{
	display: block;
	margin-bottom:40px;

}

.movie-servie-img{
	padding-right:0px;
	margin-bottom:10px;
}

.movie-servie p{
	line-height: 1.7;
}

.movie-servie p span{
	font-size:0.9em;
}

.movie-plan{
	display: block;
}

.movie-plan01{
	background-color: #fffddf;
	flex: 1;
	padding:20px;
	margin-right:0px;
	border-radius: 10px;
	margin-bottom:20px;
}

.movie-plan02{
	background-color: #fffddf;
	flex: 1;
	padding:20px;
	border-radius: 10px;
}

.movie-y{
	text-align: center;
	font-size:1.9em;
	font-weight: bold;
	margin-bottom:15px;
}

.movie-y span{
	background: linear-gradient(transparent 90%, #00a9dc 10%);
}

.movie-plan p{
	line-height: 1.7;
}

.movie-option{
	text-align: center;
	margin-top:20px;
}

	    
.qa-section{
	max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
}
	    
.qa-section h3{
	margin-bottom: 20px;
	font-weight: bold;
	font-size: 32px;
	text-align: center;
}
.qa-6 {
    max-width: 100%;
    margin-bottom: 5px;
    border-bottom: 2px solid #d6dde3;
}

.qa-6 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 1.5em 1em 1.8em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.qa-6 summary::before,
.qa-6 p::before {
    position: absolute;
    left: 0.3em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-6 summary::before {
    color: #00a9dc;
    content: "Q";
}

.qa-6 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.qa-6[open] summary::after {
    transform: rotate(225deg);
}

.qa-6 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 1.8em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa-6[open] p {
    transform: none;
    opacity: 1;
    line-height: 1.7;
}

.qa-6 p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}

	    
	    
	    
	    
		.footer {
	    background-color: #f1f1e3;
	    color: #fff;
	    padding: 10px;
	    text-align: center;
	    margin-top:50px;
		}

		.footer .logo-container {
		    display: flex;
		    justify-content: center;
		    margin-bottom:30px;
		    margin-top:30px;
		}

		.footer .logo-container a img {
		width:100%;
	    max-width: 50%;
	    margin: 0 auto;
		}

		.menu {
		    display: flex;
		    justify-content: center;
		    width: 90%;
		    margin-left: 0; /* メニュー本体の左の余白を削除 */
		    z-index: 2;
		}

		.menu ul {
		    list-style: none;
		    margin: 0;
		    display: flex;
		    width: 80%;
		    justify-content: center; /* 中央揃えに修正 */
		}

		.menu li {
		    margin: 0 10px;
		}

		.menu a {
		    text-decoration: none;
		    color: #000;
		    font-weight: bold;
		    font-size: 16px;
		}
		.menu a:hover {
		    color: #e9a000;
		}


		.copyright {
		    color: #000;
		    font-size: 13px;
		}
		.logo-container img {
	        max-width: 30%;
	        height: auto;
	        margin: 0 auto;
	    }
	    
	    .table-wrapper{
	    padding:20px;
	    }
	    
    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
        padding:20px 0 20px 0;
    }

    .company-table th {
        border-bottom: none; /* 上部のボーダーを削除 */
        padding:20px 0 20px 0;
    }
	.company-table td{
	line-height: 30px;
	}
}


