@charset "UTF-8";

body {
    background-color: #fffafa;
    font-family: "Zen Maru Gothic", 筑紫A丸ゴシック, "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
    color: #333333;
}

.header {
    display: flex;
    justify-content: space-between;
    width: 95%;
    margin: 0 auto;
    height: 100px;
    align-items: center;
}

.rogo {
    height: 90px;
    width: auto;
}

.menu ul {
    display: flex;
    justify-content: space-between;
    width: 820px;
    align-items: center;
}

.menu ul a {
    text-decoration: none;
    color: #333333;
    transition: all .5s;
}

.menu ul a:hover {
    background-color: #ffff66;
}

h1 {
    font-weight: bold;
    font-size: 52px;
    line-height: 1.5;
}

h2 {
    font-weight: bold;
    font-size: 32px;
    color: #ff0033;
    margin-top: 100px;
    padding-bottom: 60px;
}

h3 {
    font-weight: bold;
    font-size: 24px;
}

p {
    font-size: 16px;
    line-height: 1.8;
}

main {
    text-align: center;
}

.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: scale(1,1) translateY(0); }
  30% { transform: scale(1.05, 0.95) translateY(-8px); }
  50% { transform: scale(0.95, 1.05) translateY(0); }
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: #333333;
  position: relative;
  margin-bottom: 40px;
}

.section-title::after {
  content: "";
  display: block;
  width: 300px;
  height: 6px;
  background: radial-gradient(circle, #ff0033 40%, transparent 40%);
  background-size: 12px 6px;
  margin: 12px auto 0;
}

.fv {
    display: flex;
    justify-content: space-between;
    width: 1000px;
    margin: 0 auto;
    align-items: center;
    padding: 50px 0;
}

.fv img {
    width: 200px;
    height: auto;
}

.accordion-001 {
    max-width: 1027px;
    margin: 0 auto;
    background-color: #fffafa;
    text-align: left;
}

.accordion-001:not([open]) {
    margin-bottom: 7px;
}

.accordion-001 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    border-radius: 5px;
    background-color: #ffffff;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.accordion-001 summary::-webkit-details-marker {
    display: none;
}

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

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

.accordion-001 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 1em 2em 2em 2em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-001[open] p {
    transform: none;
    opacity: 1;
}

.faq {
    margin: 50px 0;
}

.btn {
    margin-top: 50px;
    transition: all .5s;
}

.btn:hover {
    transform: scale(1.1);
}



.fmenu ul {
    display: flex;
    justify-content: space-between;
    width: 820px;
    margin-left: auto;
    margin-right: 2.5%;
    height: 100px;
    align-items: center;
    margin-top: 150px;
}

.fmenu ul a {
    text-decoration: none;
    color: #333333;
    transition: all .5s;
}

.fmenu ul a:hover {
    background-color: #ffff66;
}

footer p {
    height: 100px;
    align-items: center;
    text-align: center;
}



/* PC,タブレットではハンバーガーメニューを表示しない */
@media (min-width: 560px){
	.hamburger-demo-menubox{
		display: none;
	}
}


@media screen and (max-width: 559px) {

.header {
    height: 60px;
}

.rogo {
    height: 50px;
    width: auto;
}

.menu {
    display: none;
}

/* 全体調整CSS */
.hamburger-demo-menubox *{
	font-size: 16px;
}
.hamburger-demo-menubox li{
	font-size: 14px;
}
/* hamburgerここから */
	/* input非表示 */
.input-hidden{
	display: none;
}
	/* label */
.hamburger-demo-switch{
	cursor: pointer;
	position: absolute;
	right: 3%;
	top: 0;
	z-index: 9999;
	width: 4em;
	height: 4em;
}
/* メニュー展開時にハンバーガーアイコンを固定 */
#hamburger-demo4:checked ~ .hamburger-demo-switch{
	position: fixed;
}
/* 円を用いたハンバーガーデザイン */
	/* 外側の円 */
.hamburger-demo-switch4:before{
	content: "";
	position: absolute;
	width: 2em;
	height: 2em;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 2px solid #333; /* 外側の円（枠線）の色 */
	border-radius: 50%;
}
	/* 真ん中の円 */
.hamburger-switch-circle{
	height: 3px;
	width: 20px;
	background: #333; /* 真ん中の線（円）の色 */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: .3s;
}
	/* 上下の線 */
.hamburger-switch-circle:before, .hamburger-switch-circle:after{
	content: "";
	position: absolute;
	width: 20px;
	top: 50%;
	left: 50%;
	transition: .3s;
}
.hamburger-switch-circle:before{
	border-top: 3px solid #333; /* ハンバーガーアイコン上側の線の色 */
	transform: translate(-50%, -300%);
}
.hamburger-switch-circle:after{
	border-bottom: 3px solid #333; /* ハンバーガーアイコン下側の線の色 */
	transform: translate(-50%, 200%);
}
/* アイコン･アニメーション */
#hamburger-demo4:checked ~ .hamburger-demo-switch .hamburger-switch-circle{
	height: 25px;
	border-radius: 50%;
}
#hamburger-demo4:checked ~ .hamburger-demo-switch .hamburger-switch-circle:before{
	width: 0;
}
#hamburger-demo4:checked ~ .hamburger-demo-switch .hamburger-switch-circle:after{
	width: 0;
}
	/* 真ん中の×印 */
.hamburger-demo-switch4:after{
	content: "×";
	font-size: 0px;
	position: absolute;
	color: #fff; /* ハンバーガーの"×"マークの色 */
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: .2s;
}


#hamburger-demo4:checked ~ .hamburger-demo-switch4:after{
	font-size: 25px;
}
/* メニューエリア */
.hamburger-demo-menuwrap{
	position: fixed;
	height: 100%;
	background: #fffafa; /* メニューエリアの背景色 */
	padding: 5em 3% 2em;
	z-index: 9998;
	transition: .3s;
	overflow-y: scroll; /* メニュー内容が多い場合に縦スクロール */
	top: 0;
	left: 100%;
	width: 70%;
}
/* メニューリスト */
.hamburger-demo-menulist{
	margin-right: 3%;
	padding-left: 5% !important; /* !important不要な場合あり */
	list-style: none;
}
.hamburger-demo-menulist li a{
	text-decoration: none;
	color: #333; /* メニューエリアの文字色 */
	display: block;
}
	/* 円を用いたメニューリスト */
.hamburger-menulist-circle li{
	border: 1px solid;
	margin-bottom: 5px;
	border-radius: 2em;
}
.hamburger-menulist-circle li a{
	padding: .5em 2.5em .5em 1em;
	position: relative;
}
.hamburger-menulist-circle a:before{
	content: "";
	position: absolute;
	width: 1.5em;
	height: 1.5em;
	background: #fffafa; /* メニューリスト矢印背景（円）の色 */
	border-radius: 50%;
	top: 50%;
	right: .5em;
	transform: translate(0, -50%);
}
.hamburger-menulist-circle a:after{
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	border: 2.5px solid;
	border-color: #333333 #333333 transparent transparent; /* メニューリスト矢印の色（#fffのみ変更） */
	top: 50%;
	right: .5em;
	transform: translate(-80%, -50%) rotate(45deg);
}
/* メニューエリア･アニメーション */
	/* 右から */
#hamburger-demo4:checked ~ .hamburger-demo-menuwrap{
	left: 30%;
}
	/* コンテンツカバー */
#hamburger-demo4:checked ~ .hamburger-demo-cover{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 9997;
	background: rgba(3,3,3,.5);
	display: block;
}

.hamburger-demo-menubox a:hover {
    background-color: #ffff66;
    border-radius: 30px;
}

h1 {
    font-weight: bold;
    font-size: 20px;
    color: #333333;
    line-height: 1.3;
}

h2 {
    font-weight: bold;
    font-size: 24px;
    color: #ff0033;
    margin-top: 50px;
    padding-bottom: 20px;
}

h3 {
    font-weight: bold;
    font-size: 18px;
}

p {
    font-size: 13px;
    width: 90%;
    margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 24px;
  color: #333333;
  position: relative;
  margin-bottom: 20px;
}

.section-title::after {
  content: "";
  display: block;
  width: 250px;
  height: 6px;
  background: radial-gradient(circle, #ff0033 40%, transparent 40%);
  background-size: 12px 6px;
  margin: 12px auto 0;
}

.fmenu {
    margin-top: 100px;
}

.fmenu ul {
    display: block;
    width: 200px;
    line-height: 1.5;
    margin: 0 auto;
    text-align: center;
}

footer p {
    margin-top: 130px;
    font-size: 11px;
    height: 60px;
}

p {
    line-height: 1.3;
}

.fv {
    display: flex;
    justify-content: space-between;
    width: 85%;
    margin: 0 auto;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.fv img {
    width: 100px;
    height: auto;
    opacity: 0.8;
}

.accordion-001 {
    width: 85%;
    margin: 0 auto;

}

.btn img {
    width: 150px;
    height: auto;
}

}