@charset "UTF-8";
/*-------------------------------------
デザインチケットCSS
-------------------------------------*/

/*-------------------------------------
デザインチケットの特徴
-------------------------------------*/
#design_ticket .assignment_contents{
    padding: 30px 0px 100px;
    position: relative;
}
#design_ticket .problem-section {
    background: #ffffff;
}
#design_ticket .problem-grid {
    max-width: 1280px;
    margin: auto;
    display: grid;
    gap: 40px;
    margin-bottom: 55px;
}
/* 上段 */
#design_ticket .problem-grid {
    grid-template-columns: repeat(6, 1fr);
}
#design_ticket .large {
    grid-column: span 3;
    width: 100%;
    max-width: 500px;
    height: 200px;
    align-items: center;
    margin-bottom: 22px;
}
/* 下段 */
#design_ticket .problem-grid .bubble:nth-child(3),
#design_ticket .problem-grid .bubble:nth-child(4),
#design_ticket .problem-grid .bubble:nth-child(5) {
    grid-column: span 2;
    width: 100%;
    max-width: 320px;
    height: 200px;
    align-items: center;
}
/* 吹き出し本体 */
#design_ticket .bubble {
position: relative;
background: #f3f5fa;
border-radius: 8px;
display: flex;
flex-direction: column;
justify-content: center;
box-sizing: border-box;
}
/* 吹き出し三角 */
#design_ticket .bubble-left::after {
    content: "";
    position: absolute;
    bottom: -26px;
    width: 50px;
    height: 30px;
    background: #f3f5fa;
    clip-path: polygon(0 0, 100% 0, 90% 100%);
}
#design_ticket .bubble-right::after {
    content: "";
    position: absolute;
    bottom: -26px;
    width: 50px;
    height: 30px;
    background: #f3f5fa;
    clip-path: polygon(0 0, 100% 0, 10% 100%);
}
#design_ticket .bubble-center::after {
    content: "";
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 30px;
    background: #f3f5fa;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
/* テキスト */
#design_ticket .bubble p {
    line-height: 1.6;
    font-size: 18px;
    color: #222;
    text-align: left;
}
/* マーカー */
#design_ticket .marker {
    font-size: 22px;
    display: inline;
    font-weight: 500;
    background-image: linear-gradient(
    transparent 60%,
    #FFE066 60%
    );
    padding: 0 2px;
}
/* 下中央の三角 */
#design_ticket .assignment_contents::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
    width: 280px;
    height: 40px;
    background: #FFFFFF;
    clip-path: polygon(
        0 0,
        100% 0,
        50% 100%
    );
    z-index: 1;
}
/*-------------------------------------
SP用コーディング
-------------------------------------*/
@media screen and (max-width:767px){
#design_ticket .assignment_contents {
    padding: 50px 0px 60px;
}
#design_ticket .problem-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}
#design_ticket .bubble{
    padding:15px 15px;
}
#design_ticket .large{
    width:100%;
    max-width:none;
    height:auto;
    align-items:initial;
    margin-bottom:0px;
}

#design_ticket .problem-grid .bubble:nth-child(3),
#design_ticket .problem-grid .bubble:nth-child(4),
#design_ticket .problem-grid .bubble:nth-child(5){
    width:100%;
    height:auto;
    max-width:none;
    align-items:initial;
    grid-column: span 3;
}
/* テキスト */
#design_ticket .bubble p {
    font-size: 16px;
    text-align: left;
}
/* マーカー */
#design_ticket .marker {
    font-size: 16px;
}
#design_ticket .large {
    align-items: left;
}
/* 下段 */
#design_ticket .problem-grid .bubble:nth-child(3),
#design_ticket .problem-grid .bubble:nth-child(4),
#design_ticket .problem-grid .bubble:nth-child(5) {
    align-items: left;
}
/* 吹き出し4つ目まで非表示 */
#design_ticket .bubble-left::after,
#design_ticket .bubble-right::after,
#design_ticket .bubble-center::after{
    display:none;
}
/* 5個目だけ再表示 */
#design_ticket .problem-grid .bubble:nth-child(5)::after{
    display:block;
    content:"";
    position:absolute;
    left:50%;
    bottom:-23px;
    transform:translateX(-50%);
    width:40px;
    height:24px;
    background:#f3f5fa;
    clip-path:polygon(0 0,100% 0,50% 100%);
}

#design_ticket .assignment_contents img{
width:70%;
}
}

/*-------------------------------------
クリエイティブ業務のお悩み解決します！
-------------------------------------*/
#design_ticket .ticket-point_contents{
    background: #F4F5FA;
    padding: 100px 0;
}
#design_ticket .bg-gray{
    background:#F4F5FA;
}
#design_ticket h3.comment{
    font-size: 28px;
    font-weight: 500;
    color: #1D72A8;
    margin-bottom: 60px;
}
#design_ticket .service_banner{
    background: #fff;
    border-radius: 0px;
    border: 2px solid #1D72A8;
    min-height: 300px;
}
#design_ticket .service_banner:last-child{
    margin-bottom:0;
}
#design_ticket .service_banner .text{
    width: 70%;
}
/* POINT */
#design_ticket .service_banner .point{
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1D72A8;
}
/* 見出し */
#design_ticket .service_banner .ticket-point{
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    color: #1D72A8;
    background: #FFE066;
    padding: 6px 28px;
    margin-bottom: 35px;
    position: relative;
    width: 100%;
    text-align: center;
}
/* 吹き出し線画像 */
#design_ticket .service_banner .ticket-point {
    position: relative;
    display: inline-block;
    padding: 10px 28px 10px;
    margin-bottom: 35px;
}
#design_ticket .service_banner .ticket-point::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -25px;
    width: 100%;
    height: 18px;
    background: url("/designare_new-child/design-ticket/images/banner-bubble.jpg")
        no-repeat left center;
    background-size: 100% 100%;
}
/* リード文 */
#design_ticket .service_banner p{
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #000000;
    margin: 0;
}
/*-------------------------------------
SP用コーディング
-------------------------------------*/
@media screen and (max-width:767px){
#design_ticket .ticket-point_contents {
    padding: 60px 0;
}
#design_ticket h3.comment {
    font-size: 18px;
    margin-bottom: 30px;
}
.service_banner .illust {
    width: 100%;
    margin: 0 auto;
}
#design_ticket .service_banner .text {
    width: 100%;
}
#design_ticket .service_banner .point {
    font-size: 14px;
}
#design_ticket .service_banner .ticket-point {
    font-size: 18px;
    padding: 10px 10px;
    margin-bottom: 30px;
}
#design_ticket .service_banner p {
    font-size: 16px;
}
}
/*-------------------------------------
デザインチケットの特徴
-------------------------------------*/
#design_ticket .feature_contents {
    padding: 100px 0;
    background: #fff;
}
#design_ticket .feature-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 135px;
}
#design_ticket .feature-image {
    flex: 0 0 38%;
}
#design_ticket .feature-image img {
    width: 100%;
    display: block;
}
#design_ticket .feature-content {
    flex: 1;
}
/* リスト */
#design_ticket .feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
#design_ticket .feature-list li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 33px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.9;
    color: #1968A6;
    text-align: left;
}
/* チェックアイコン画像 */
#design_ticket .feature-list li::before {
    content: "";
    width: 32px;
    height: 32px;
    position: absolute;
    left: 0;
    top: 4px;
    background: url("/designare_new-child/design-ticket/images/check_circle.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
/*-------------------------------------
SP用コーディング
-------------------------------------*/
@media screen and (max-width:767px){
#design_ticket .feature_contents{
    padding:60px 0;
}
#design_ticket .feature-container{
    flex-direction:column;
    gap:40px;
}
#design_ticket .feature-image{
    flex:none;
    width:70%;
}
#design_ticket .feature-content{
    width:100%;
}
#design_ticket .feature-list li{
    font-size:16px;
    padding-left:40px;
    margin-bottom:20px;
    line-height:1.6;
}
#design_ticket .feature-list li::before{
    width:24px;
    height:24px;
    top:2px;
}
#design_ticket .feature-list li:last-child {
    margin-bottom: 0px;
}
}
/*-------------------------------------
対応できるデザイン業務について
-------------------------------------*/
.design-business_contents{
    padding: 100px 0;
}
#design_ticket .design-business_contents{
    padding:100px 0;
}
/* リード */
#design_ticket .design-business_lead{
    font-size:18px;
    line-height:1.6;
    text-align:left;
    margin:10px auto 66px;
}
/* アイコン */
#design_ticket .design-service_grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:60px 230px;
    max-width:900px;
    margin:0 auto 60px;
}
#design_ticket .service-item{
    text-align:center;
}
#design_ticket .service-item img{
    width:100px;
    height:100px;
    object-fit:contain;
    margin-bottom:20px;
}
#design_ticket .service-item p{
    font-size:16px;
    font-weight:regular;
    line-height:1.6;
}
/* 説明文 */
#design_ticket .design-business_text{
    max-width:1100px;
    margin:0 auto;
}
#design_ticket .design-business_text p{
    font-size:18px;
    line-height:1.6;
    color:#000;
    text-align:left;
}
/*-------------------------------------
SP用コーディング
-------------------------------------*/
@media screen and (max-width:767px){
#design_ticket .design-business_contents {
    padding: 60px 0;
}
#design_ticket .design-service_grid{
    grid-template-columns:repeat(2,1fr);
    gap:30px 15px;
}
#design_ticket .design-business_lead {
    font-size: 16px;
    margin: 0px auto 30px;
}
#design_ticket .service-item img {
    margin-bottom: 10px;
}
#design_ticket .service-item p {
    font-size: 14px;
}
#design_ticket .design-business_text p {
    font-size: 16px;
}
#design_ticket .design-service_grid {
    margin: 0 auto 30px;
}
}
/*-------------------------------------
導入フロー
-------------------------------------*/
#design_ticket .fllow_contents{
    padding: 100px 0;
}
#design_ticket .fllow_lead{
    font-size: 18px;
    line-height: 1.6;
    margin: 10px 0 60px;
    text-align: left;
}

#design_ticket .flow-image img{
    width: 100%;
    /* display: block; */
    margin-bottom: 48px;
}
/* 下説明 */
#design_ticket .flow-detail{
    margin-top: 60px;
}
#design_ticket .flow-item{
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}
#design_ticket .flow-item .step{
    flex-shrink: 0;
    width: 90px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #1D72A8;
    border: 2px dashed #1D72A8;
    border-radius: 20px;
}
#design_ticket .flow-item p{
    font-size: 18px;
    line-height: 1.8;
    color: #000;
    margin: 0;
}
/*-------------------------------------
SP用コーディング
-------------------------------------*/
@media screen and (max-width:767px){
#design_ticket .fllow_contents {
    padding: 60px 0;
}
#design_ticket .fllow_lead {
    font-size: 16px;
    margin: 0px 0 30px;
}
#design_ticket .flow-image img {
    margin-bottom: 20px;
}
#design_ticket .flow-item .step {
    width: 70px;
    font-size: 14px;
}
#design_ticket .flow-item p {
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
}
}
/*-------------------------------------
制作事例
-------------------------------------*/
#design_ticket .works_contents.bg-gray {
    background-color: #F4F5FA;
}
#design_ticket .works_contents{
    padding-top:100px;
}
#design_ticket .works-layout{
    display:flex;
    gap:40px;
    margin-top:40px;
}
#design_ticket .works-left{
    flex:1;
}
#design_ticket .works-right{
    width:300px;
    flex-shrink:0;
    text-align:center;
}
#design_ticket .works-block{
    margin-bottom:100px;
}
#design_ticket .works-title-area{
    display:flex;
    align-items:center;
    gap:30px;
}
#design_ticket .works-head{
    width:250px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#1D72A8;
    color:#fff;
    font-size:22px;
    font-weight:500;
    flex-shrink:0;
    margin-bottom:30px;
}
#design_ticket .works-text{
    margin:0;
    font-size:18px;
    line-height:1.6;
    color:#000;
    text-align:left;
}
#design_ticket .works-image-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}
#design_ticket .works-image-grid img{
    width:100%;
    display:block;
}
#design_ticket .works-right img{
    width:100%;
    display:block;
    margin-top:40px;
}
#design_ticket .works-right small{
    font-size:14px;
}
/*-------------------------------------
SP用コーディング
-------------------------------------*/
@media screen and (max-width:767px){
#design_ticket .works_contents{
    padding-top:60px;
}
#design_ticket .works-layout{
    display:block;
    margin-top:0px;
}
#design_ticket .works-left,
#design_ticket .works-right{
    width:100%;
}
#design_ticket .works-block{
    margin-bottom:50px;
}
#design_ticket .works-title-area{
    display:block;
}
#design_ticket .works-head{
    width:180px;
    height:40px;
    margin-bottom:15px;
    font-size:18px;
}
#design_ticket .works-text{
    font-size:16px;
    line-height:1.6;
}
#design_ticket .works-image-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}
#design_ticket .works-image-grid img{
    width:100%;
    height:auto;
    display:block;
}
#design_ticket .works-right{
    margin-top:20px;
    text-align:left;
}
#design_ticket .works-right img{
    width:100%;
    max-width:280px;
    margin:20px auto 0;
}
#design_ticket .works-right .works-head{
    margin-bottom:15px;
}
#design_ticket .works-right small{
    font-size:12px;
}
#design_ticket .works-head {
    width: 150px;
    height: 35px;
    margin-bottom: 10px;
    font-size: 16px;
}
#design_ticket .works-block {
    margin-bottom: 30px;
}
#design_ticket .works-text {
    margin-bottom: 10px;
}
#design_ticket .works-right img {
    width: 50%;
    margin:  0;
}
#design_ticket .works-right .works-head {
    margin-bottom: 10px;
}
#design_ticket .works-right {
    padding-bottom: 60px;
}
}
/*-------------------------------------
提供プラン
-------------------------------------*/
#design_ticket .plan_contents{
    padding:100px 0;
}
#design_ticket .plan-message{
    position:relative;
    background:#1D72A8;
    padding:25px;
    margin-top:10px;
    text-align:center;
    position: relative;
    background:#1D72A8;
    border:6px solid #FFE066;
    font-family: "Noto Sans JP";
}
/* 黄色の三角 */
#design_ticket .plan-message::before{
    content:"";
    position:absolute;
    left:50%;
    bottom:-44px;
    transform:translateX(-50%);
    width:270px;
    height:44px;
    background:#F3D25D; 
    clip-path:polygon(0 0,100% 0,50% 100%);
}
/* 青の三角 */
#design_ticket .plan-message::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-38px;
    transform:translateX(-50%);
    width:250px;
    height:40px;
    background:#1D72A8;
    clip-path:polygon(0 0,100% 0,50% 100%);
}
#design_ticket .plan-area{
    background:#F4F5FA;
    padding:60px 60px 10px;
}
#design_ticket .plan-message p{
    margin:0;
    color:#fff;
    font-size:22px;
    line-height:2;
}
#design_ticket .plan-message strong{
    font-size:28px;
    font-weight:700;
}
#design_ticket .plan-card{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:60px;
    padding-bottom:80px;
}
#design_ticket .plan-label{
    writing-mode:vertical-rl;
    background:#1D72A8;
    color:#fff;
    font-size:26px;
    font-weight:700;
    line-height:1.3;
    border-radius:999px;
    padding: 20px 9px;
}
#design_ticket .plan-body{
    text-align:center;
}
#design_ticket .plan-note{
    font-size:22px;
    font-weight:700;
    color:#000;
    margin-bottom:13px;
}
#design_ticket .plan-ticket{
    width:200px;
    height:45px;
    margin:0 auto;
    background:#1D72A8;
    border-radius:999px;
    color:#fff;
    font-size:18px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}
#design_ticket .plan-price-wrap{
    display:inline-block;
    padding:0 30px;
    font-family: "Zen Kaku Gothic Antique";
    background-image: linear-gradient(
    transparent 60%,
    #FFE066 60%
    );
}
#design_ticket .plan-price{
    font-size:90px;
    font-weight:700;
    line-height:1.1;
    color:#000;
}
#design_ticket .plan-price span{
    font-size:50px;
}
#design_ticket .plan-attention{
    position:absolute;
    right:-50px;
    bottom:0;
    text-align:left;
}
#design_ticket .plan-attention p{
    margin:0;
    font-size:16px;
    font-weight:700;
    line-height:1.8;
    color:#000;
}
/* プラン詳細 */
#design_ticket .plan-detail{
    gap:40px;
    margin-top:60px;
}
#design_ticket .plan-detail h3{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}
#design_ticket .plan-detail p{
    margin-bottom: 20px;
}
#design_ticket .plan-table{
    width:100%;
}
#design_ticket .plan-condition{
    display: flex;
    position:relative;
    padding-top:24px;
}
#design_ticket .plan-table table{
    width:100%;
    border-collapse:collapse;
}
#design_ticket .plan-table th{
    background:#008AC5;
    color:#fff;
    font-size:16px;
    font-weight:500;
    padding-top:10px;
    padding-bottom:10px;
    border: 1px solid #E5E5E5;
}
#design_ticket .plan-table td{
    background:#fff;
    color:#000;
    font-size:14px;
    padding:12px 20px;
    border:1px solid #E5E5E5;
    text-align:left;
}
#design_ticket .condition-head{
    width:200px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#1D72A8;
    border:3px solid #FFE066;
    color:#fff;
    font-size:16px;
    font-weight:500;
    margin:0 0 -3px 20px;
    position:relative;
    z-index:2;
    position:absolute;
    top:0;
    left:20px;
    margin-top: 40px;
}
#design_ticket .plan-condition ul{
    width: 46%;
    margin-right: 7%;
    padding:30px 17px 10px;
    border:2px solid #1D72A8;
    background:#F4F5FA;
    list-style:none;
    text-align:left;
    margin-top: 40px;
}
#design_ticket .plan-condition li{
    position:relative;
    padding-left:10px;
    margin-bottom:8px;
    font-size:14px;
}
#design_ticket .plan-condition li::before{
    content:"-";
    position:absolute;
    left:0;
}
#design_ticket .condition-note{
    margin-top:38px;
    width: 40%;
}
#design_ticket .condition-note h4{
    margin:0 0 10px;
    font-size:18px;
    font-weight:500;
    color:#000;
    white-space: nowrap;
}
#design_ticket .condition-note p{
    margin:0;
    font-size:14px;
    line-height:1.5;
    color:#000;
    text-align:left;
}
/*-------------------------------------
SP用コーディング
-------------------------------------*/
@media screen and (max-width:767px){
#design_ticket .plan_contents{
    padding:60px 0;
}
#design_ticket .plan-message{
    padding:20px 15px;
    margin-top:10px;
}
#design_ticket .plan-message p{
    font-size:16px;
    line-height:1.8;
}
#design_ticket .plan-message strong{
    font-size:20px;
}
#design_ticket .plan-message::before{
    width:120px;
    height:25px;
    bottom:-25px;
}
#design_ticket .plan-message::after{
    width:100px;
    height:20px;
    bottom:-20px;
}
#design_ticket .plan-area{
    padding:40px 20px 20px;
}
#design_ticket .plan-card{
    display:block;
    padding-bottom:0;
}
#design_ticket .plan-label{
    writing-mode:horizontal-tb;
    width:180px;
    margin:0 auto 20px;
    text-align:center;
    border-radius:999px;
    padding:10px 20px;
    font-size:18px;
}
#design_ticket .plan-note{
    font-size:16px;
}
#design_ticket .plan-ticket{
    width:160px;
    height:40px;
    font-size:16px;
}
#design_ticket .plan-price{
    font-size:48px;
}
#design_ticket .plan-price span{
    font-size:28px;
}
#design_ticket .plan-attention{
    position:static;
    margin-top:15px;
    text-align:center;
}
#design_ticket .plan-attention p{
    font-size:14px;
}
#design_ticket .plan-detail{
    display:block;
    margin-top:40px;
}
#design_ticket .plan-detail h3{
    font-size: 18px;
}
#design_ticket .plan-table{
    width:100%;
    margin-bottom:40px;
}
#design_ticket .plan-condition{
    display: inherit;
}
#design_ticket .condition-head{
    width:160px;
    height:36px;
    left:15px;
    top: 0px;
    font-size:14px;
}
#design_ticket .plan-condition ul{
    padding:30px 15px 15px;
    margin-right: 0;
    width: 100%;
    margin-top: 0;
}
#design_ticket .plan-condition li{
    font-size:14px;
    line-height:1.6;
}
#design_ticket .condition-note{
    margin-top:25px;
    width: 100%;
}
#design_ticket .condition-note h4{
    white-space:normal;
    font-size:16px;
    line-height:1.5;
    text-align: left;
}
#design_ticket .condition-note p{
    font-size:14px;
    line-height:1.6;
}
#design_ticket .plan-message {
    padding: 20px 15px;
    margin-top: 0px;
}
    #design_ticket .plan-message strong {
    font-size: 18px;
}
#design_ticket .plan-label {
    width: 160px;
    margin: 0 auto 10px;
    padding: 6px;
    font-size: 16px;
}
#design_ticket .plan-note {
    font-size: 14px;
}
#design_ticket .plan-ticket {
    width: 160px;
    font-size: 16px;
    padding: 6px;
}
#design_ticket .plan-ticket {
    width: 160px;
    height: 34px;
    margin-bottom: 20px;
}
#design_ticket .plan-price-wrap {
    padding: 0 8px;
}
#design_ticket .plan-price {
    font-size: 45px;
}
    #design_ticket .plan-price span {
    font-size: 20px;
}
#design_ticket .plan-attention p {
    text-align: left;
}
#design_ticket .plan-table th {
    border: 1px solid #E5E5E5;
}
#design_ticket .plan-table td {
    padding: 8px 8px;
    border: 1px solid #E5E5E5;
}
#design_ticket .plan-detail {
    margin-top: 30px;
}
#design_ticket .plan-table {
    margin-bottom: 30px;
}
    #design_ticket .condition-head {
        left: 50%;
        transform: translateX(-50%);
    }
#design_ticket .condition-head {
    margin: 0;
}
}
@media screen and (max-width:1100px){
#design_ticket .condition-note h4{
    white-space: inherit;
}
}
/*-------------------------------------
Q＆A
-------------------------------------*/
#design_ticket .faq_contents .sh2{
    margin: 0 auto 60px;
}
#design_ticket .faq_contents .sh2 span{
text-transform: uppercase !important;
}
#design_ticket .faq_contents{
    background:#F4F5FA;
    padding:100px 0;
}
#design_ticket .faq_contents{
    background:#F4F5FA;
    padding:100px 0;
}
#design_ticket .faq_heading{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;
    color:#1D72A8;
    font-size:48px;
    font-weight:500;
    line-height:1;
    margin-bottom:10px;
}
#design_ticket .faq_heading span{
    width:60px;
    height:2px;
    background:#1D72A8;
}
#design_ticket .faq_subtitle{
    text-align:center;
    font-size:18px;
    margin-bottom:60px;
}
#design_ticket .faq_item{
    background:#fff;
    margin-bottom:20px;
}
#design_ticket .faq_item:last-child{
margin-bottom:0;
}
#design_ticket .faq_question{
    width:100%;
    background:none;
    border:none;
    padding:20px 30px;
    display:flex;
    align-items:center;
    cursor:pointer;
}
#design_ticket .faq_q_icon{
    width:40px;
    height:40px;
    margin-right:28px;
    border-radius:50%;
    background:#1D72A8;
    color:#fff;
    font-size:24px;
    font-weight:500;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}
#design_ticket .faq_q_text{
    flex:1;
    text-align:left;
    color:#1D72A8;
    font-size:22px;
    font-weight:400;
}
#design_ticket .faq_icon{
    color:#1D72A8;
    font-size:48px;
    line-height:1;
    flex-shrink:0;
}
#design_ticket .faq_answer{
max-height:0;
overflow:hidden;
transition:max-height .4s ease;
padding:0 28px;
}
#design_ticket .faq_answer_inner{
    display:flex;
    align-items:flex-start;
}
#design_ticket .faq_a_icon{
    width:38px;
    margin-right:28px;
    color:#1D72A8;
    font-size:24px;
    line-height:1;
    flex-shrink:0;
    text-align:center;
}
#design_ticket .faq_answer p{
    margin:0;
    font-size:16px;
    line-height:1.6;
    color:#000;
}
#design_ticket .faq_item.active .faq_answer{
    display:block;
    max-height:200px;
    padding:0 28px 24px;
}
#design_ticket .faq_item.active .faq_icon{
    font-size:40px;
}
#design_ticket .faq_item.active .faq_icon{
    color:transparent;
    position:relative;
}
#design_ticket .faq_item.active .faq_icon::before{
    color:#1D72A8;
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
}
#design_ticket .faq_icon{
    position:relative;
    width:21px;
    height:21px;
    flex-shrink:0;
}
/* 横線 */
#design_ticket .faq_icon::before{
    content:"";
    position:absolute;
    top:50%;
    left:0;
    width:21px;
    height:3px;
    background:#1D72A8;
    border-radius:999px;
    transform:translateY(-50%);
}
/* 縦線 */
#design_ticket .faq_icon::after{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    width:3px;
    height:21px;
    background:#1D72A8;
    border-radius:999px;
    transform:translateX(-50%);
    transition:.3s;
}
#design_ticket .faq_item.active .faq_icon::after{
    opacity:0;
}
#design_ticket .faq_icon::after{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    width:3px;
    height:21px;
    background:#1D72A8;
    border-radius:999px;
    transition:.3s ease;
}
#design_ticket .faq_item.active .faq_icon::after{
    opacity:0;
}
/*-------------------------------------
SP用コーディング
-------------------------------------*/
@media screen and (max-width:767px){
#design_ticket .faq_contents {
    padding: 60px 0;
}
#design_ticket .faq_question {
    padding: 10px 10px;
}
#design_ticket .faq_q_text {
    font-size: 16px;
    font-family: "Noto Sans JP";
    font-weight: normal;
}
#design_ticket .faq_q_icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    font-size: 16px;
    line-height: inherit;
}
#design_ticket .faq_answer p {
    text-align: left;
}
#design_ticket .faq_a_icon {
    margin-right: 8px;
    font-size: 22px;
}
#design_ticket .faq_item.active .faq_answer {
    padding: 0 8px 16px;
}
#design_ticket .faq_item {
    margin-bottom: 20px;
}
#design_ticket .faq_contents .sh2 {
    margin: 0 auto 20px;
}
}





.pc-only{
display:block;
}
@media screen and (max-width:767px){
.pc-only{
display:none;
}
}
.sp-only{
    display:none;
}
@media screen and (max-width:767px){
    .sp-only{
        display:block;
    }
}



#design_ticket_hero{
    margin-top: 40px;
}
.hero .inner_wrap {
    width: 100%;
    background-color: #1D72A8;
}
    .hero .inner_wrap {
    width: inherit !important;
    margin: 0 !important; 
}
.hero-title {
    padding-left: 15% !important;
}
#design_ticket_hero .hero-title .min {
    font-size: 38px;
    color: #fff;
    font-family: 游明朝体;
}
#design_ticket_hero .hero-title h1 {
    font-size: 14px;
    color: #FFFFFF;
    font-family: メイリオ;
}
.hero-img {
    right: 10% !important;
}
.hero-img img {
    max-width: 710px !important;
}

@media screen and (max-width: 767px) {
#design_ticket_hero{
    margin-top: 0px;
}
.hero {
    top:  15px !important;
}
.hero-img {
    top: inherit !important;
    margin-bottom: inherit !important;
}
#design_ticket_hero .hero-title .min {
    font-size: 24px;
}
.hero-img {
    right: 0% !important;
}
}


/*-------------------------------------
お問い合わせバナー
-------------------------------------*/
.design-ticket-contact-banner{
    margin: 80px auto 0px;
}
.design-ticket-contact-banner a{
    display:block;
    transition:.3s;
    width: 50% ;
    margin:0 auto;
}
.design-ticket-contact-banner a:hover{
    opacity:.8;
}

.design-ticket-contact-banner img {
    width:100%;
    height:auto;
    display:block;
}
@media screen and (max-width: 767px) {
.design-ticket-contact-banner a{
    display:block;
    transition:.3s;
    width: 100% ;
    margin:0 auto;
}
}

