@charset "UTF-8";

@import url("https://use.typekit.net/dgc5wxm.css");

/* 全体のCSS */
body {
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.02em;
}

.inner_1240 {
    max-width: 1040px;
    margin: 0 auto;
}

.inner_940 {
    max-width: 940px;
    margin: 0 auto;
}

.header_inner {
    padding-right: 50px;
    padding-left: 50px;
    height: 100%;
    display: flex;
    align-items: center;
}

.hd_logo {
    max-width: 405px;
}

a:hover {
    opacity: 0.8;
    transition: 0.3s ease;
}

.br_pc {
    display: block;
}

.br_sp {
    display: none;
}

img {
    display: block;
    width: 100%;
}
.pc_br {
    display: block;
}

.slider {
	width: 100%;
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width: 768px) {
    .inner_1240 {
        padding-left: 20px;
        padding-right: 20px;
    }
    .header_inner {
        padding-left: 20px;
        padding-right: 20px;
    }
    .br_sp {
        display: block;
    }
    .br_pc {
        display: none;
    }
    .hd_logo {
        max-width: 205px;
    }
}

/* header */
header {
    background-color: #fcfafa;
    height: 100px;
    position: relative;
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav{
    position:fixed;
	z-index: -1;
	opacity: 0;
	top:0;
    left: 0;
	width:100%;
    height: 100vh;
	background:#fdfdfd;
	transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
	z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 160px;
    padding: 120px 0;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
}

#g-nav.panelactive .link_box {
    display: flex;
    flex-direction: column;
    gap: 55px;
}

/*リストのレイアウト設定*/
#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #ff7bca;
	text-decoration: none;
	display: flex;
    flex-direction: column;
    gap: 15px;
	letter-spacing: 0.1em;
	font-weight: bold;
    text-align: left;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:absolute;
    z-index: 9999;
	top: 50%;
	right: 50px;
	cursor: pointer;
    width: 50px;
    height:36px;
    transform: translateY(-50%);
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0px;
    height: 6px;
    border-radius: 5px;
	background-color: #d08bff;
    width: 100%;
}

.openbtn span:nth-of-type(1) {
	top: 0px;	
}

.openbtn span:nth-of-type(2) {
	top: 15px;
}

.openbtn span:nth-of-type(3) {
	top: 30px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 80%;
    background-color: #9145c5;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 80%;
    background-color: #9145c5;
}

/* ナビの中身 */
.nav_main_txt {
    font-family: "futura-pt", sans-serif !important;
    font-weight: 600;
    font-size: clamp(1.25rem, 0.841rem + 2.05vw, 2.375rem);
}

.nav_sub_txt {
    font-family: "Noto Sans JP";
    font-weight: normal;
    font-size: clamp(0.563rem, 0.403rem + 0.8vw, 1rem);
    font-weight: 600;
    line-height: 1.8;
}

.header_info_box {
    display: flex;
    flex-direction: column;
    align-items: center;
	gap: 10px;
	text-align: center;
}

.header_sns_box img {
    width: 50px;
    filter: brightness(0) saturate(100%) invert(69%) sepia(74%) saturate(1585%) hue-rotate(287deg) brightness(101%) contrast(102%);
}

.header_logo {
    display: block;
    padding-bottom: 80px;
}

.header_logo img {
    width: 366px;
}

.header_page_link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-top: 60px;
    font-size: clamp(0.625rem, 0.443rem + 0.91vw, 1.125rem);
    color: #ff7bca;
    font-weight: 600;
}
.nav_logo {
    display: none;
}

@media screen and (max-width: 768px) {
    header {
        height: 50px;
    }
    .openbtn {
        right: 20px;
        width: 25px;
        height: 17px;
    }
    .openbtn span {
        height: 2px;
    }
    .openbtn span:nth-of-type(2) {
        top: 8px;
    }
    .openbtn span:nth-of-type(3) {
        top: 16px;
    }
    .openbtn.active {
        top: 10px;
        right: 25px;
    }
    #g-nav {
        background: #ffeffe;
    }
    #g-nav.panelactive #g-nav-list {
        padding: 20px 15px 40px;
        gap: 0px;
        flex-direction: column-reverse;
        align-items: center;
    }
    #g-nav li a {
        gap: 10px;
    }
    #g-nav.panelactive .link_box {
        gap: 20px;
    }
    .header_logo img {
        display: none;
    }
    .header_sns_box img {
        width: 38px;
    }
    .header_page_link {
        gap: 10px;
        padding-top: 24px;
    }
    .header_info_box small {
        padding-top: 10px;
        padding-bottom: 40px;
        font-size: clamp(0.625rem, 0.443rem + 0.91vw, 1.125rem);
    }
    .nav_logo {
        display: block;
        max-width: 240px;
        padding-top: 20px;
        padding-left: 20px;
    }
	.header_logo {
		padding-bottom: 20px;
	}
}

/* fv */
.fv {
    position: relative;
}

.fv_content_wrap {
    padding-top: 125px;
    padding-bottom: 150px;
}

.fv_content .middle_txt {
    text-align: center;
    font-size: clamp(0.813rem, 0.563rem + 1.25vw, 1.3rem);
    line-height: 2;
    margin-bottom: 120px;
}

.fv_content .middle_txt span{
    display: block;
    padding-top: 30px;
}

.benefits_txt {
    width: 100%;
    position: relative;
    padding-top: 60px;
    padding-bottom: 80px;
    background: #F7ABE0;
    background: linear-gradient(135deg,rgba(247, 171, 224, 1) 0%, rgba(255, 121, 201, 1) 100%);
    color: #fff;
    border-radius: 20px;
}

.benefits_txt::before {
    content: "";
    width: 99px;
    height: 95px;
    background: url(../images/kitakyushu/about/fes_benefits_obj01.png)no-repeat;
    background-size: contain;
    position: absolute;
    top: -40px;
    right: 50px;
}

.benefits_txt::after {
    content: "";
    width: 87px;
    height: 78px;
    background: url(../images/kitakyushu/about/fes_benefits_obj02.png)no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -30px;
    left: 40px;
}

.benefits_txt h2 {
    text-align: center;
    font-size: clamp(2.125rem, 1.511rem + 3.07vw, 3.813rem);
    font-weight: 600;
    margin-bottom: 50px;
}

.benefits_txt p {
    width: fit-content;
    /* font-size: clamp(0.813rem, 0.517rem + 1.48vw, 1.625rem); */
    font-size: clamp(0.938rem, 0.829rem + 0.54vw, 1.438rem);
    margin: 0 auto;
    line-height: 2.0;
}

.benefits_txt p span {
    display: block;
    font-size: 20px;
    padding-top: 10px;
}

.span_red {
    color: #ec3a2c;
}

.fv_btn_box {
    position: fixed;
    right: 0;
    bottom: 5vh;
    font-size: clamp(0.563rem, 0.358rem + 1.02vw, 1.125rem);
    letter-spacing: 0.09em;
    display: flex;
    flex-direction: column;
    z-index: 5;
}

.fv_btn_box a {
    display: inline-block;
    height: 203px;
    padding: 0 22px;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-orientation: upright;
    display: flex;
    align-items: center;
    gap: 10px;
    writing-mode: vertical-rl; /* 縦書き */
}

.entry-button {
    background: #ff81cb;
    border-radius: 20px 0 0 20px; /* 角を丸くする */
}

.eventsite_btn {
    background: #50adea;
    border-radius: 20px 0 0 20px; /* 角を丸くする */
}
/* .entrybutton_mixcha {
    display: inline-block;
	padding: 20px 17px;
    color: white;
    font-weight: bold;
    text-align: center;
    border-radius: 20px 0 0 20px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    background-image: url(../images/fv/mixcha_bg.png);
} */

@media screen and (max-width: 768px) {
    .fv_content_wrap {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .fv_content .middle_txt {
        letter-spacing: 0px;
    }
    .middle_txt {
        margin-bottom: 50px;
    }
    .benefits_txt {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .benefits_txt h2 {
        margin-bottom: 28px;
    }
    .benefits_txt::before {
        width: 49px;
        height: 47px;
        top: -25px;
        right: 16px;
    }
    .benefits_txt::after {
        width: 56px;
        height: 50px;
        bottom: -30px;
        left: 16px;
    }
    .fv_btn_box {
        top: 45vh;
        bottom: auto;
    }
    .fv_btn_box a {
        height: 110px;
        padding: 0 12px;
    }
    .entry-button {
        border-radius: 10px 0 0 10px
    }
    .eventsite_btn {
        border-radius: 10px 0 0 10px        
    }
    .benefits_txt p span {
        font-size: 11px;
    }
}

/* fes_about */
.fes_about {
    background: #ffeffe;
}

.fes_about_wrap {
    padding-top: 110px;
    padding-bottom: 110px;
}

.fes_ttl_box {
    padding-top: 0px;
    margin-bottom: 70px;
}

.fes_ttl_box .sub_ttl {
    padding-top: 60px;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    color: #ff79c9;
    font-family: "Futura-pt", "BIZ UDGothic" !important;
}

.fes_about_txt.middle_txt {
    margin-bottom: 80px;
    text-align: center;
    font-size: 20px;
    line-height: 1.8;
}

.apply {
    background-color: #fff;
    border: solid 3px #ff79c9;
    border-radius: 15px;
    padding: 60px 0;
}

.apply h2 {
    width: 100%;
    max-width: 275px;
    margin: 0 auto 60px;
    font-size: 30px;
    font-weight: 600;
    background: #ff79c9;
    color: #fff;
    border-radius: 40px;
    padding: 15px 0;
    text-align: center;
}

.apply_itemBox {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    row-gap: 24px;
    justify-content: left;
    font-size: 20px;
}

.apply_item {
    width: 100%;
    position: relative;
    padding-left: 30px;
}

.apply_item span {
    display: block;
    line-height: 1.7;
    font-size: 16px;
    padding-top: 5px;
}

.apply_item::before {
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ff79c9;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.apply_item:nth-child(1):before {
    top: calc(50% - 13px);
}

@media screen and (max-width: 768px) {
    .fes_about_wrap {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .fes_ttl_box {
        margin-bottom: 40px;
    }
    .fes_ttl_box .sub_ttl {
        padding-top: 20px;
        font-size: 16px;
    }
    .fes_ttl_box img {
        width: 100%;
    }
    .middle_txt {
        padding-top: 0px;
    }
    .fes_about .middle_txt {
        padding-top: 0px;
        font-size: 12px;
        margin-bottom: 40px;
    }
    .apply {
        padding: 30px 15px;
    }
    .apply h2 {
        max-width: 128px;
        margin: 0 auto 28px;
        font-size: 14px;
        border-radius: 40px;
        padding: 8px 0;
        text-align: center;
    }
    .apply_itemBox {
        width: 95%;
        row-gap: 15px;
        font-size: 12px;
    }
    .apply_item {
        padding-left: 20px;
    }
    .apply_item::before {
        width: 7px;
        height: 7px;
    }
    .apply_item span {
        font-size: 10px;
        line-height: 1.5;
    }
}

/* production */
.production {
    padding: 100px 0;
    background-image: url(../images/kitakyushu/production/prod_back_pinkdot.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.prod_ttl_box {
    padding-top: 0px;
}
.prod_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 45px;
}
.prod_item {
    width: calc(33.33% - 30px);
    max-width: 313px;
    background-color: #fff;
    padding: 1%;
    margin-right: 30px;
    margin-bottom: 30px;
}
.prod_item:nth-child(3),
.prod_item:nth-child(5) {
    margin-right: 0px;
}
.thum {
    background-color: #dddddd;
    width: 100%;
    height: 250px;
    position: relative;
}
.thum img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.prd_name {
    background-color: #222;
    font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
    font-family: "Futura", "BIZ UDGothic";
    color: #fff;
    /* width: auto; */
    width: max-content;
    border-radius: 50vh;
    padding: 5px 20px;
    text-align: center;
    margin: 1em auto 0;
    /* position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%); */
}
.prod_logo {
    text-align: center;
    width: 70%;
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* 追加 */
    height: 140px;
}
.prod_box li:nth-child(1) .prod_logo img {
    /* cutie */
    width: 53%;
}
.prod_box li:nth-child(2) .prod_logo img {
    /* takeshita */
    width: 53%;
}

/* schedule */
.schedule_wrap {
    padding-top: 110px;
    padding-bottom: 110px;
}

.sche_ttl_box {
    margin-bottom: 90px;
}

.sche_ttl_box img {
    /* max-width: 540px; */
    max-width: 500px;
    margin: 0 auto;
}

.sche_ttl_box .sub_ttl {
    padding-top: 40px;
    font-size: 28px;
    font-weight: 600;
    color: #ff79c9;
    text-align: center;
}

.sche_top {
    display: grid;
    grid-template-columns: calc(50% - 7.5px) calc(50% - 7.5px);
    column-gap: 15px;
    margin-bottom: 15px;
}

.sche_left_ttl {
    background-color: #ff79c9;
    color: #fff;
    font-family: "Noto Sans JP";
    font-size: clamp(1rem, 0.75rem + 1.25vw, 1.688rem);
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 15px;
    margin-bottom: 15px;
}

.sche_left_group {
    background-color: #ff79c9;
    color: #fff;
    font-family: "Noto Sans JP";
    font-size: clamp(0.875rem, 0.58rem + 1.48vw, 1.688rem);
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    /* column-gap: 35px; */
    column-gap: 7px;
}

.sche_left_group p {
    width: 240px;
    text-align: center;
}

.sche_left_group p span {
    display: block;
    width: fit-content;
    margin: 0 auto 8px;
    font-size: 14px;
    padding: 6px 20px;
    background: #fff;
    color: #ff79c9;
    border-radius: 50vh;
    text-align: center;
}

.sche_left_group .sche_left_line {
    background: #fff;
    height: 70px;
    width: 2px;
}

.sche_top_left_info {
    background-color: #ffeffe;
    margin-top: 15px;
}

.sche_left_item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.sche_left_item:nth-child(3) .sche_tag_box,
.sche_left_item:nth-child(4) .sche_tag_box {
    flex-direction: column;
}

.sche_left_item:nth-child(3) .sche_tag_box p:nth-child(2),
.sche_left_item:nth-child(4) .sche_tag_box p:nth-child(2) {
    font-family: "Futura", "BIZ UDGothic", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #333;
}
.sche_left_item h3 {
    width: 100%;
    color: #fff3ea;
    font-size: clamp(2rem, 1.919rem + 0.41vw, 2.375rem);
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-42%);
    z-index: -1;
}
.sche_tag_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-family: "BIZ UDGothic";
    font-weight: 500;
}
.sche_tag_box p:nth-child(1) {
    background-color: #ff79c9;
    color: #fff;
    font-family: "BIZ UDGothic" !important;
    font-size: 22px;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 50vh;
    line-height: 1.5;
}
.sche_tag_box p:nth-child(2) {
    font-family: "BIZ UDGothic";
    font-size: 27px;
    font-weight: 500;
    color: #ff79c9;
}
.sche_left_number {
    font-family: "futura-pt", sans-serif;
    font-size: 24px;
    font-weight: 500;
    padding-top: 30px;
    color: #333;
    text-align: center;
}

.sche_left_item:nth-child(3) .sche_left_number {
    padding-top: 0;
}

.sche_left_item:nth-child(5) .sche_left_number {
    padding-top: 15px;
}

.sche_bottom .sche_left_number {
    font-weight: 600;
    color: #ff79c9;
}

.sche_left_clear {
    font-size: 20px;
    width: 60%;
    margin: 0 auto;
	line-height: 1.5;
}

.sche_left_clear_txt {
    font-size: 20px;
    width: 80%;
    margin: 0 auto;
	line-height: 1.5;
}

.sche_left_item::after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background-color: #ff79c9;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.sche_left_item:last-child::after {
display: none;
}

.sche_left_item:last-child .sche_tag_box {
    display: flex;
    /* flex-direction: column; */
    gap: 5px;
    font-weight: 500;
}

.sche_left_item:last-child .sche_tag_box p:nth-child(1) {
    font-size: 22px;
}

.sche_left_item:last-child .sche_tag_box p:nth-child(2) {
    font-size: 27px;
    font-weight: 500;
    color: #ff79c9;
}

.cs_box {
    background-color: #ffeffe;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    height: calc(100% - 90px - 15px);
}

.cs_box p {
    font-size: 38px;
    font-weight: 600;
    color: #ff79c9;
}

.sche_right_ttl {
    background-color: #ff79c9;
    font-size: clamp(1.125rem, 0.852rem + 1.36vw, 1.875rem);
    color: #fff;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-right-radius: 15px;
    margin-bottom: 15px;
}

.sche_bottom {
    background-color: #ffeffe;
    padding: 50px 0;
    border-radius: 0 0 15px 15px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sche_bottom_ttl {
    background-color: #ff79c9;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 50vh;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
}

.sche_bottom_txt {
    font-size: 23.5px;
    font-weight: 500;
    line-height: 1.8;
    text-align: left;
    width: fit-content;
    margin: 0 auto;
}

.sp_che {
    display: none;
}

@media screen and (max-width: 768px) {
    .schedule_wrap {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .sche_ttl_box {
        padding-top: 0;
        margin-bottom: 30px;
    }
    .sche_ttl_box img {
        max-width: 260px;
    }
    .sche_ttl_box .sub_ttl {
        padding-top: 15px;
        font-size: 18px;
    }
    .sche_top {
        grid-template-columns: 100%;
        row-gap: 38px;
        margin-top: 7px;
        margin-bottom: 40px;
    }
    .sche_left_ttl {
        height: 50px;
        border-radius: 15px 15px 0 0;
        margin-bottom: 7px;
    }
    .sche_left_group {
        font-size: clamp(0.875rem, 0.58rem + 1.48vw, 1.688rem);
        height: 50px;
        margin-bottom: 7px;
        column-gap: 35px;
    }
    .sche_left_group p {
        width: 120px;
    }
    .sche_left_group .sche_left_line {
        height: 40px;
        width: 1px;
    }
    .sche_left_group p span {
        margin: 0 auto 3px;
        font-size: 8px;
        padding: 4px 10px;
    }
    .sche_top_left_info {
        margin-top: 7px;
    }
    .sche_left_item {
        gap: 20px;
        padding: 30px 0 40px;
    }
    .sche_tag_box p:nth-child(1) {
        font-size: 14px;
        padding: 8px 24px;
    }
    .sche_tag_box {
        gap: 10px;
    }
    .sche_left_number {
        font-size: 15px;
        padding-top: 10px;
    }
    .sche_tag_box p:nth-child(2) {
        font-size: 14px;
    }
    .sche_left_clear {
        font-size: 11px;
    }
    .sche_left_clear_txt {
        font-size: 11px;
    }
    .sche_left_item:nth-child(5) .sche_left_number {
        padding-top: 5px;
    }
    .sche_left_item:nth-child(3) .sche_tag_box p:nth-child(2), .sche_left_item:nth-child(4) .sche_tag_box p:nth-child(2) {
        font-size: 14px;
    }
    .sche_left_item:last-child .sche_tag_box p:nth-child(1) {
        font-size: 14px;
    }
    .sche_left_item:last-child .sche_tag_box p:nth-child(2) {
        font-size: 14px;
    }
    .sche_right_ttl {
        height: 50px;
        border-radius: 15px 15px 0 0;
        margin-bottom: 7px;
    }
    .cs_box {
        margin-top: 7px;
        height: auto;
        padding: 80px 0;
        border-radius: 0 0 15px 15px;
    }
    .cs_box p {
        font-size: 20px;
    }
    .sche_bottom {
        padding: 32px 0;
        gap: 24px;
    }
    .sche_bottom_ttl {
        font-size: 14px;
        padding: 8px 24px;
    }
    .sche_bottom_txt {
        font-size: 12px;
        width: 80%;
    }
    .sche_bottom .sche_left_number {
        font-size: 12px;
        padding-top: 0;
    }
    .pc_br {
    display: none;
}
}

/* faq */
.faq {
    background: #ffeffe;
}

.faq_wrap {
    padding-top: 110px;
    padding-bottom: 110px;
}

.faq_ttl_box {
    margin-bottom: 90px;
}

.faq_ttl_box .ttl_img {
    /* max-width: 280px; */
    max-width: 250px;
    margin: 0 auto;
}
.ttl_img.inner_940 {
    max-width: 850px;
}
/* アコーディオン */
/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 23px;
}
/*アコーディオンタイトル*/
.title {
    position: relative;
    cursor: pointer;
    font-size: clamp(0.875rem, 0.693rem + 0.91vw, 1.375rem);
    font-weight: bold;
    line-height: 1.8;
    padding: 30px 50px;
    transition: all .5s ease;
    background: #ff79c9;
    color: #fff;
    border-radius: 15px;
    display: grid;
    grid-template-columns: 5% 95%;
    align-items: center;
    gap: 24px;
}
.title.close {
    border-radius: 15px 15px 0 0;
}
/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2.5px;
    border-radius: 30px;
    background-color: #fff;
}
.title::before{
    top:48%;
    right: 30px;
    transform: rotate(0deg);
}
.title::after{    
    top:48%;
    right: 30px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
	transform: rotate(0deg);
}
.title.close::after{
	transform: rotate(0deg);
}
/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #fff;
    padding: 30px 50px;
    font-size: clamp(0.875rem, 0.716rem + 0.8vw, 1.313rem);
    line-height: 1.8;
    gap: 22px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border-left: solid 2px #ff79c9;
    border-right: solid 2px #ff79c9;
    border-bottom: solid 2px #ff79c9;
}
.q_mark {
    font-family: "Futura";
    font-weight: normal;
    font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
    color: #fff;
}

.a_mark {
    font-family: "Futura";
    font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
    color: #ff79c9;
    float: left;
}
.answer {
    font-size: clamp(0.875rem, 0.716rem + 0.8vw, 1.313rem);
    width: 93%;
    margin-left: auto;
}

@media screen and (max-width: 768px) {
    .faq_wrap {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .faq_ttl_box .ttl_img {
        max-width: 140px;
    }
    .faq_ttl_box {
        padding-bottom: 0px;
        margin-bottom: 40px;
    }
    .accordion-area {
        gap: 15px;
    }
    .title {
        padding: 20px 12px;
        grid-template-columns: 5% 85%;
        align-items: flex-start;
        gap: 6px;
        font-size: clamp(0.813rem, 0.608rem + 1.02vw, 1.375rem);
    }
    .title::before, .title::after {
        right: 10px;
        width: 12px;
        height: 2px;
    }
    .q_mark {
        width: 18px;
        height: 18px;
        font-size: clamp(0.875rem, 0.693rem + 0.91vw, 1.375rem);
    }
    .a_mark {
        width: 18px;
        height: 18px;
        font-size: clamp(0.875rem, 0.693rem + 0.91vw, 1.375rem);
    }
    .box {
        padding: 20px 12px;
        font-size: clamp(0.875rem, 0.716rem + 0.8vw, 1.313rem);
        border-left: solid 1px #ff79c9;
        border-right: solid 1px #ff79c9;
        border-bottom: solid 1px #ff79c9;
    }
    .answer {
        font-size: clamp(0.875rem, 0.693rem + 0.91vw, 1.375rem);
    }
}

/* contact */
.contact_wrap {
    padding: 110px 0 140px;
}

.ct_ttl_box {
    margin-bottom: 90px;
}

.ct_ttl_box img {
    max-width: 520px;
    margin: 0 auto 40px;
}

.ct_ttl_box .sub_ttl {
    color: #ff79c9;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
}

.ct_logo {
    display: block;
    text-align: center;
}

.ct_logo img {
    max-width: 460px;
    margin: 0 auto;
}

/* form */
label {
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-size: clamp(0.875rem, 0.511rem + 1.82vw, 1.675rem);
}
.name,
.name input,
.name-kana,
.tel_number,
.mail {
    width: 100%;
    padding: 30px;
    background-color: #fff;
    border: solid 1px #333;
    border-radius: 10px;
}

textarea {
    width: 100%;
    height: 450px;
    padding: 30px;
    background-color: #fff;
    border: solid 1px #333;
    border-radius: 10px;
}

.privacy-check {
    width: fit-content;
    margin: 0 auto;
}

.privacy-check label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
}

.wpcf7 {
    margin-bottom: 110px;
}

.wpcf7-list-item-label {
    font-size: clamp(0.75rem, 0.723rem + 0.14vw, 0.875rem) !important;
}

.screen-reader-response {
    /* 上部のエラーメッセージ */
    color: #ec3a2c;
    margin-top: 30px;
    text-align: center;
}

.wpcf7-not-valid-tip {
    /* エラーメッセージ */
    display: block;
    color: #ec3a2c;
    margin-top: 5px;
}

.wpcf7-submit {
    display: block;
    width: 370px;
    height: 80px;
    background-color: #ff79c9;
    border-radius: 50vh;
    color: #fff;
    font-size: clamp(1rem, 0.864rem + 0.68vw, 1.375rem);
    text-align: center;
    margin: 90px auto 0;
}

.wpcf7-submit:hover {
    opacity: 0.8;
}

::placeholder {
    font-size: clamp(0.875rem, 0.511rem + 1.82vw, 1.875rem);
    color: #cccccc;
}

[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none; /* Safari対策 */
    -moz-appearance: none; /* Firefox対策 */
    border-radius: 0; 
    width: 20px; 
    height: 20px;
    border: 1px solid #222; 
    background-color: #fff; /* 背景色を指定 */
        color: #fff !important; /* 文字色を白 */
    position: relative;
}

/* ✅ チェックされたときのスタイル */
input[type="checkbox"]:checked {
    background-color: #acd7f0; /* 背景色を黒に */
    border-color: #222;
}

/* ✅ チェックマークを擬似要素で作成 */
input[type="checkbox"]:checked::before {
    content: "✔"; /* チェックマーク */
    font-size: 12px;
    color: #fff !important; /* 文字色を白 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spo_sub_ttl {
    font-family: "futura-pt", sans-serif !important;
    font-size: clamp(1.5rem, 1.227rem + 1.36vw, 2.25rem);
    font-weight: 600;
    letter-spacing: 0.07em;
    text-align: center;
    margin-bottom: 100px;
    color: #ff79c9;
}

@media screen and (max-width: 768px) {
    .contact_wrap {
        padding-top: 60px;
        padding-bottom: 70px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .ct_ttl_box {
        margin-bottom: 40px;
    }
    .ct_ttl_box img {
        width: 236px;
        margin: 0 auto 16px;
    }
    .ct_ttl_box .sub_ttl {
        font-size: 18px;
    }
    .wpcf7 {
        margin-bottom: 60px;
    }
    label {
        gap: 8px;
    }
    .name, .name input, .name-kana, .tel_number, .mail {
        padding: 12px;
    }
    textarea {
        height: 140px;
        padding: 12px;
    }
    .privacy-check label {
        gap: 8px;
    }
    .wpcf7-submit {
        width: 190px;
        margin: 40px auto 0;
    }
    .spo_sub_ttl {
        font-family: "futura-pt", sans-serif !important;
        margin-bottom: 60px;
    }
    .ct_logo img {
        max-width: 236px;
    }
}

/* footer */
footer {
    text-align: center;
    background-color: #ffeffe;
    padding: 140px 0 70px;
}
.sns_box {
    display: flex;
    justify-content: center;
    gap: 60px;
}
.footer_logo {
    display: block;
    width: fit-content;
    margin: 0 auto 110px;
}

.footer_logo img {
    max-width: 366px;
}

.footer_link {
    font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
    display: flex;
    justify-content: center;
    gap: 50px;
}

.footer_link li a {
    color: #ff79c9;
    font-weight: 600;
    text-decoration: underline;
}

small {
    display: block;
    padding-top: 70px;
    font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
    color: #ff79c9;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    footer {
        padding: 60px 0 0;
    }
    .footer_logo {
        margin: 0 auto 60px;
    }
    .footer_logo img {
        max-width: 216px;
    }
    .footer_link {
        font-size: clamp(0.75rem, 0.477rem + 1.36vw, 1.5rem);
        flex-direction: column;
        gap: 15px;
    }
    small {
        padding-top: 60px;
        padding-bottom: 20px;
        font-size: clamp(0.75rem, 0.477rem + 1.36vw, 1.5rem);
    }
}

/* スライダー */
.slick-slide {
    display: flex !important;
    justify-content: center;
    margin-bottom: 50px;
}
.slick-prev, .slick-next {
    top: 45%;
}
.slick-prev {
    left: -5px;
}
.slick-next {
    right: 18px;
}
.slick-prev:before, .slick-next:before {
    font-size: clamp(1.688rem, 1.512rem + 0.88vw, 2.5rem);
    color: #ff81cb;
}
.slick-dots li button:before,
.slick-dots li.slick-active button:before {
    color: #ff81cb;
}
.slick-dots {
    bottom: 5px;
}
.slick-slide img {
    width: 65%;
    height: auto;
}

/* 404 */
.thanks {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
    height: 100vh;
}
.error404 {
    display: block;
    text-align: center !important;
    font-size: 60px;
}
.thanks h2 {
    text-align: center;
    font-family: "futura-pt", sans-serif !important;
    font-weight: 600;
    font-size: clamp(1.5rem, 1.392rem + 0.54vw, 2rem);
}
.thanks h3 {
    font-family: "Noto Sans JP", sans-serif;
    margin-top: 2em;
}

@media screen and (max-width: 768px) {
.fv,
.fes_about,
.production,
.contact {
    font-weight: 500;
}

/* prod */
.production {
    padding: 60px 5%;
}
.prod_item {
    width: calc(50% - 10px);
    max-width: 313px;
    background-color: #fff;
    padding: 3%;
    margin-right: 20px;
    margin-bottom: 20px;
}
.prod_item:nth-child(3) {
    margin-right: 20px;
}
.prod_item:nth-child(2),
.prod_item:nth-child(4),
.prod_item:nth-child(5) {
    margin-right: 0px;
}
.prod_item:last-child {
    margin-bottom: 0px;
}
.prod_logo {
    height: 110px;
    padding: 15px 0 10px;
}
.prod_box li:first-child .prod_logo img {
    /* CUTIE STREET */
    width: 53%;
}
.prod_box li:nth-child(3) .prod_logo img {
    /* kogyaru */
    width: 100%;
}
.prod_ttl_box {
    padding-top: 0px;
}
.prod_ttl_box img {
    width: 100%;
}
.thum {
    background-color: #dddddd;
    width: 100%;
    height: 225px;
    position: relative;
}
.thum img {
    width: 100%;
    height: 225px;
    object-fit: cover;
}
.prd_name {
    padding: 5px 15px;
}

/* section-border */
.section_border {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 15px;
}
.four,
.five,
.six {
    display: none;
}
/* slider */
.slick-slider {
    width: 70%;
    margin: 0 auto;
}
.slick-slide img {
    width: 100%;
    height: auto;
}
.slick-prev {
    left: -70px;
}
.slick-next {
    right: -49px;
}
}
@media screen and (max-width: 480px) {
    .slick-prev {
        left: -57px;
    }
}
@media screen and (max-width: 430px) {
    /* fv */
    .fv_bg_white {
        height: 315px;
    }
    /* sche */
    .sp_che .sche_left_item h3 {
        font-size: clamp(2rem, 1.919rem + 1.41vw, 2.375rem);
        width: 80%;
        transform: translateX(-46%);
    }
    .slick-prev {
        left: -49px;
    }
    .slick-next {
        right: -40px;
    }
}
@media screen and (max-width: 390px) {
    /* ナビ中身 */
    .nav_sub_txt .br_sp {
        display: none;
    }
    .sp_che .sche_left_item h3 {
        width: 85%;
    }
}

/* fvレスポンシブ */

@media screen and (max-width: 550px) {
    .sp_che .sche_left_item h3 {
        transform: translateX(-40%);
    }
    .thum {
        height: 180px;
    }
    .thum img {
        height: 180px;
    }
}
@media screen and (max-width: 440px) {
    .fv_bg_white {
        height: calc(74vw * (407 / 375));
    }
    .prod_logo {
        height: 70px;
    }
    .sp_che .sche_left_item h3 {
        transform: translateX(-46%);
    }
    .thum {
        height: 170px;
    }
    .thum img {
        height: 170px;
    }
}
@media screen and (max-width: 430px) {
    .thum {
        background-color: #dddddd;
        width: 100%;
        height: 130px;
        position: relative;
    }
    .thum img {
        width: 100%;
        height: 130px;
        object-fit: cover;
    }
}
@media screen and (max-width: 390px) {
    .prod_logo {
        height: 55px;
    }
}
@media screen and (max-width: 376px) {
    .thum {
        background-color: #dddddd;
        width: 100%;
        height: 125px;
        position: relative;
    }
    .thum img {
        width: 100%;
        height: 125px;
        object-fit: cover;
    }
}
