@charset "utf-8";

/*全体にかかわる設定*/
html *,
::before,
::after {
	box-sizing: border-box;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;

	--color_text: #2D2D2D;
	--color_base: #fff;
	--color_main: #0018B4;
	--color_main: #1226A8;
	--color_main: #053FB4;
	--color_main: #003EBB;
	--color_sub: #F2F2F2;
	--color_ac: #CECECE;
	font-weight: normal;
  color: var(--color_text);
  line-height: 1.7;
	font-size: 17px;
	letter-spacing: 0.08em;
}

p {
	margin-bottom: 40px;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	width: 100%;
}

a {
	transition: 0.5s;
	color: #1d1d1d;
	text-decoration: none;
}

a:hover {
	opacity: 0.6;
}

.link {
 	color: #0000EE;
 	text-decoration: underline;
}

ul , li {
	list-style: none;
}

h1,h2,h3,h4,h5,h6 {

}

.level2-heading {
	font-size: 32px;
	text-align: center;
	line-height: 1.4;
	margin-bottom: 120px;
}

.level2-heading--lead {
	margin-bottom: 22px;
}

.level2-heading--assist {
	margin-bottom: 40px;
}

.assist-text {
	text-align: center;
	margin-bottom: 120px;
}

.container {
	max-width: 1080px;
	padding: 140px 2.5%;
	margin: 0 auto;
}
.page-container {
	max-width: 880px;
	padding: 120px 2.5%;
	margin: 0 auto;
}


.container--footer {
	padding-top: 60px;
}


.btn-wrapper {
	text-align: center;
}

.btn {
	display: inline-block;
	padding: 16px 52px;
	background-color: var(--color_main);
	color: var(--color_base);
	font-size: 20px;
	text-decoration: none;
	position: relative;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .1);
}


.btn--thanks {
	color: var(--color_base) !important;
	text-decoration: none !important;
}


.text-center {
	text-align: center;
}


.marker {
	background:linear-gradient(transparent 70%, #ffff2b 70%);
	font-weight: bold;
}



@media (max-width: 768px) {
	body {
	}
	.container {
		padding: 100px 2.5%;
	}

	.level2-heading {
		font-size: 26px;
		margin-bottom: 80px;
	}
	.level2-heading--lead {
		margin-bottom: 22px;
	}
}


/* ==================== お問い合わせ ==================== */

.contact__item {
	display: flex;
	flex-direction: column;
	margin-bottom: 40px;
}

.contact__item br {
	display: none;
}

.contact__item:first-of-type {
    margin-top: 60px;
}

.contact__label {
	margin-bottom: 8px;
	font-size: 18px;
}


.contact__required {
	color: #fff;
	background-color: var(--color_text);
	line-height: 1;
	padding: 3px 3px;
	margin-right: 10px;
	font-size: 12px;
}

.contact__optional {
	border: solid 1px;
	line-height: 1;
	padding: 3px 3px;
	margin-right: 10px;
	font-size: 12px;
	color: var(--color_text);
}

.contact__input {
	height: 44px;
	padding: 16px 12px;
	background-color: var(--color_sub);
	border: solid 1px var(--color_ac);
    margin-top: 10px;
    width: 100%;
}

.contact__input--textarea {
	height: 300px;
}

.wpcf7-form input[type="submit"] {
background-color: var(--color_main);
color: white;
cursor: pointer;
transition: 0.3s ease;
border: none;
width: 100px;
height: 40px;
border-radius: 6px;
font-size: 16px;
}

.submit-center {
    text-align: center;
}

.wpcf7-form input[type="submit"]:hover {
    opacity: 0.8;
}


/*.contact__submit {
    position: relative;
    display: inline-block;
    background: var(--color_main);
    color: white;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 16px;
    margin:  0 auto;
}

.contact__submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.3s ease;
    pointer-events: none;
}

.contact__submit:hover::before {
    left: 100%;
}

.contact__submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.contact__submit input[type="submit"] {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 8px 20px;
    margin: 0;
    width: 100%;
    height: 100%;
    outline: none;
}*/

.error {
	color: blue;
}

.thanks {
	width: 100%;
	max-width: 740px;
	margin: 0 auto 60px;
}


/*ハニーポッド*/
.honeypot-field {
    display: none;
}


/* ==================== メインビジュアル ==================== */

.mv {
  width: 100%;
  background: radial-gradient(circle, 
    #ffffff 0%, 
    #fbfbfb 10%, 
    #f6f6f6 20%, 
    #f2f2f2 30%, 
    #e8e8e8 50%, 
    #dddddd 70%, 
    #cccccc 85%, 
    #b0b0b0 100%
  ); /* 白の光を強調しつつ、多様なグラデーション */
  background-size: 200% 200%;
  animation: backgroundGradient 10s ease infinite;
  overflow: hidden;

}

@keyframes backgroundGradient {
  0% {
    background-position: 50% 50%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 50% 50%;
  }
}






.mv__inner {
	display: flex;
	flex-wrap: wrap;
}


.mv__body {
	padding: 70px 5%;
	width: 50%;
}

.mv__heading {
	font-size: 61px;
	font-weight: bold;
	margin-bottom: 20px;
}

.mv__heading span {
	font-size: 32px;
	color: var(--color_main);
}

.mv__text {
	font-size: 24px;
	margin-bottom: 52px;
}

.mv__btn {
	display: inline-block;
	width: 100%;
	max-width: 580px;
	padding: 28px 0;
	background-color: var(--color_main);
	text-align: center;
	font-size: 28px;
	font-weight: bold;
	color: var(--color_base);
}

.mv__btn--2 {
	margin-top: 20px;
	background-color: var(--color_base);
	color: var(--color_main);
	border: solid 3px var(--color_main);
}


/*ここから新規*/

        .mv__sp-visual-wrapper {
            display: flex;
            width: 43%;
            height: 750px;
            justify-content: space-around;
        }
        .mv__sp-visual {
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            width: 47%;
            overflow: hidden;
            position: relative;
        }
        .mv__sp-list {
            display: flex;
            flex-direction: column;
        }
        /* CSS animationを削除してJavaScript制御に変更 */
        .mv__sp-item {
            width: 100%;
            margin-bottom: 24px;
        }
        .mv__sp-item > img {
            width: 100%;
            display: block;
        }
        @media (max-width: 1461px) {
            .mv__body {
                padding: 70px 5%;
                width: 50%;
            }
            .mv__heading {
                font-size: 50px;
            }
            .mv__heading span {
                font-size: 26px;
            }
            .mv__text {
                font-size: 20px;
            }
            .mv__btn {
                padding: 28px 0;
                font-size: 20px;
            }
            .mv__sp-visual-wrapper {
                height: 670px;
            }
        }
        @media (max-width: 1240px) {
            .mv__body {
                padding: 70px 5%;
                width: 50%;
            }
            .mv__heading {
                font-size: 40px;
            }
            .mv__heading span {
                font-size: 20px;
            }
            .mv__text {
                font-size: 16px;
            }
            .mv__btn {
                padding: 20px 0;
                font-size: 20px;
            }
            .mv__sp-visual-wrapper {
                height: 590px;
            }
        }
        @media (max-width: 1000px) {
            .mv__inner {
                flex-direction: column;
                align-items: center;
            }
            .mv__body {
                padding: 70px 5%;
                width: 100%;
                max-width: 500px;
            }
            .mv__heading {
                font-size: 45px;
            }
            .mv__heading span {
                font-size: 20px;
            }
            .mv__text {
                font-size: 16px;
            }
            .mv__btn {
                padding: 20px 0;
                font-size: 20px;
            }
            .mv__sp-visual-wrapper {
                margin-bottom: 80px;
                width: 100%;
                flex-direction: column;
                height: auto;
            }
            .mv__sp-visual {
                display: flex;
                overflow: hidden;
                width: auto;
                flex-direction: row;
           
            }
            .mv__sp-list {
                flex-direction: row;
                list-style: none;
                padding: 0;
            }
            /* CSS animationを削除 */
            .mv__sp-item {
                width: calc(100vw / 3);
                padding: 10px;
                margin-bottom: 16px;
            }
            .mv__sp-item>img {
                width: 100%;
            }
        }
        @media (max-width: 500px) {
            .mv__sp-item {
                width: calc(100vw / 2.5);
                margin-bottom: 0;
            }
        }
        @media (max-width: 420px) {
            .mv__heading {
                font-size: 38px;
            }
            .mv__heading span {
                font-size: 20px;
            }
        }

/* ==================== 料金 ==================== */

.price__price {
	font-size: 52px;
	text-align: center;
}

.price__tax {
	font-size: 30px;
}





.price__body-wrapper {
    max-width: 100%;
    margin: 0 auto 120px;
    border: solid 1px #e0e0e0;
    padding-bottom: 40px;  
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    overflow: hidden;
}

.price__header {
    background: #f8f9fa;
    padding: 24px;
    margin-bottom: 48px;
    position: relative;
}

.price__header::after {
    content: '';
    width: 60px;
    height: 4px;
    background: var(--color_main);
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.price__header h3 {
    text-align: center;
    margin: 0;
    font-size: 22px;
}

.price__body {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    padding: 0 30px;
}

.price__list-wrapper {
    width: 300px;
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.price__list-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.price__list-wrapper--basic {
    border-top: 4px solid #4CAF50;
}

.price__list-wrapper--technical {
    border-top: 4px solid #2196F3;
}

.price__list-wrapper--support {
    border-top: 4px solid #FF9800;
}

.price__list-header {
    text-align: center;
    margin-bottom: 25px;
}

.price__list-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.price__list-wrapper--basic .price__list-icon {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.price__list-wrapper--technical .price__list-icon {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.price__list-wrapper--support .price__list-icon {
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

.price__list-wrapper h4 {
    text-align: center;
    font-size: 20px;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
    color: #333;
    font-weight: 600;
}

.price__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price__item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #3b3a3a;
    /*line-height: 1.6;*/
}

.price__item:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 768px) {
    .price__body {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0 20px;
    }
    
    .price__list-wrapper {
        width: 100%;
        max-width: 350px;
    }
}












@media (max-width: 900px) {
	.price__body {
		flex-direction: column;
	}
	.price__body {
	    padding: 0 60px;
	}
	.price__list-wrapper {
	    width: 100%;
	}
}
@media (max-width: 600px) {
	.price__body {
	    padding: 0 28px;
	}

	.price__price {
		font-size: 36px;
	}

	.price__tax {
		font-size: 20px;
	}
}





/* ==================== 制作リスト ==================== */
.works-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}


.works-list__item {
	width: 48%;
	margin-bottom: 40px;
	border: solid 1px var(--color_sub);
}

.works-list__img {
	width: 100%;
}

.works-list__title {
	text-align: center;
	padding: 12px;
	margin-bottom: 0;
}


@media (max-width: 768px) {
	.works-list {
		flex-direction: column;
		align-items: center;
	}	
	.works-list__item {
		width: 100%;
		max-width: 440px;
	}

	.works-list__item:not(:last-of-type) {

		margin-bottom: 60px;
	}
}





/* ==================== 制作詳細 ==================== */
.work__img-wrapper {
	margin-bottom: 60px;
		border: solid 1px #ECECEC;
}

.work__img {
	width: 100%;
}

.work__contents {
	padding: 40px 60px;
	background-color: #F6F6F6;
}

.work__title {
/*	text-align: center;*/
	margin-bottom: 24px;
	font-size: 20px;
}

.work__list {
	list-style-type: none;
	display: flex;
	margin-bottom: 24px;
	font-size: 12px;
	flex-wrap: wrap;
	gap: 12px 12px;
}


.work__item {
	padding: 2px 8px;
	background-color: #fff;
	color: #909090;
	border: solid 1px #D1D1D1;

}

.work__item:not(:last-of-type) {
/*	margin-right: 12px;*/
}

.work__text {
	margin-bottom: 40px;
}

.work__link {
	display: block;
	width: 240px;
	max-width: 100%;
	color: var(--color_base);
	font-size: 16px;
	text-align: center;
	text-decoration: none;
	margin: 0 auto;
	padding: 12px 0px;
	background-color: var(--color_main);
	box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

/* Good */
.work__link {
  position: relative;
}

.work__link::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 14px;
  height: 14px;
  padding-right: 24px;
   transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  content: "";
  background-image: url("../images/open.svg");
  background-repeat: no-repeat;
  background-size: 14px;
}

@media (max-width: 781px) {
	.marjinoff img {
		margin-bottom: 0;
		height: 120px !important;
		object-fit: cover;
	}
	.work__contents {
		padding: 40px 20px;
	}
}




/* ==================== 制作実績 ==================== */
.works {
	background-color: var(--color_sub);
}

.works__contents {
  width:100%;
  height:auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  row-gap:52px;/* (縦方向)の余白 */
  column-gap: 52px;/* (横方向)の余白 */
  margin-bottom: 60px;
}
.works__item {
  width:calc(100%/2.28 - 40px);

}

.works__img-wrapper {
  box-shadow: 0 3px 3px rgba(0, 0, 0, .08);
  margin-bottom: 20px;
}

.works__img {
}

.works__title {
	text-align: center;
	font-size: 14px;
}



@media (max-width: 900px) {
	.works__item {
		width: calc( (100% - 40px) / 2 );
	}
}
@media (max-width: 600px) {
	.works__contents {
	  column-gap: 2.5%;/* (横方向)の余白 */
	}
	.works__item {
		width: calc( (100% - 2.5%) / 2 );
	}
}
@media (max-width: 500px) {
	.works__item {
		width: 100%;
	}
}



/* ==================== 制作の流れ ==================== */
        .flow__body-wrapper {
            margin: 0 auto 100px;
        }

        .flow__item {
            display: flex;
            align-items: start;
            position: relative;
        }

        .flow__number {
            font-size: 100px;
            color: var(--color_sub);
            width: 100px;
            padding-right: 20px;
            line-height: 1;
            font-weight: bold;
        }

        .flow__body {
            position: relative;
            padding-left: 40px;
            flex: 1;
        }
        .flow__body:not(:last-of-type) {
        	padding-bottom: 30px;
        }

        /* 縦線の実装 */
        .flow__body::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 12px;
            background-color: var(--color_sub);
        }

        .flow__item:first-of-type .flow__body::before {
			 border-radius: 150px 150px 0 0;
		}
        .flow__item:last-of-type .flow__body::before {
			 border-radius: 0 0 150px 150px;
		}

        /* 最後の要素の縦線を調整 */
        .flow__item:last-child .flow-content {
            padding-bottom: 0;
        }

        .flow__title {
            font-size: 24px;
            margin-bottom: 18px;
        }

        .flow__text {
            font-size: 18px;
            margin-bottom: 60px;
        }
        .flow__item:last-of-type .flow__text {
			 margin-bottom: 0; /* 最後の要素のマージンボトムを0または他の値に変更 */
		}

@media (max-width: 800px) {
  .flow__number {
      font-size: 80px;
      width: 68px;
      padding-right: 20px;
  }
}


@media (max-width: 600px) {
  .flow__number {
      font-size: 68px;
      width: 50px;
      padding-right: 16px;
  }
  .flow__title {
      font-size: 24px;
  }
  .flow__body {
      padding-left: 28px;
  }
  .flow__body::before {
      width: 8px;
  }
}




/* ==================== リード文 ==================== */
.lead__body {
	display: flex;
	justify-content: space-around;
	align-items: end;
	margin-bottom: 120px;
}

.lead__img-wrapper {
	max-width: 270px;
}

.lead__list {
	font-size: 24px;
}

.lead__list-item:not(:last-of-type) {
	margin-bottom: 28px;
}

.lead__list-item::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 25px;
  vertical-align: bottom;
  background: url(../images/list.svg) no-repeat;
  background-size: contain;
  margin-right: 16px;
}


/*矢印*/
        .lead-arrow-wrapper {
            text-align: center;
            padding: 50px 40px 70px;
            margin: 40px 0;
            position: relative;
            height: 80px;
            overflow: hidden;
        }
        
        .lead-arrow {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .chevron {
            width: 60px;
            height: 20px;
            position: relative;
        }

        .chevron::before {
            content: '';
            position: absolute;
            width: 26px;
            height: 4px;
            background-color: var(--color_main);
            transform: rotate(45deg);
            top: 8px;
            left: 9px;
        }

        .chevron::after {
            content: '';
            position: absolute;
            width: 26px;
            height: 4px;
            background-color: var(--color_main);
            transform: rotate(-45deg);
            top: 8px;
            right: 9px;
        }

        .chevron {
            animation: dropDown 1.5s infinite linear;
        }

        @keyframes dropDown {
            0% {
                transform: translateY(-30px);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: translateY(50px);
                opacity: 0;
            }
        }













.lead__text {
	font-size: 28px;
	text-align: center;
	font-weight: bold;
}


@media (max-width: 1000px) {

	.lead__list {
		font-size: 20px;
	}
	.lead__list-item::before {
	  width: 22px;
	  height: 20px;
	  margin-right: 12px;
	}

	.lead__img-wrapper {
		max-width: 260px;
	}
}


@media (max-width: 800px) {

	.lead__body {
		flex-direction: column-reverse;
		align-items: center;
	}
	.lead__img-wrapper {
		margin-bottom: 60px;
	}
}


@media (max-width: 420px) {

	.lead__list {
		font-size: 18px;
	}
	.lead__list-item::before {
	  width: 18px;
	  height: 17px;
	  margin-right: 10px;
	}
}





/* ==================== 個別ページ ==================== */

/*共通*/

.page__title-wrapper {
  background-image: url(../images/page_h1.jpg);
  background-image: image-set(url(../images/page_h1.jpg) 1x, url(../images/page_h1@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../images/page_h1.jpg) 1x, url(../images/page_h1@2x.jpg) 2x);
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 212px;
}

.page__title {
	font-size: 36px;
	color: var(--color_base);
}

.content p {
	margin-bottom: 40px;
}

.content img {
	margin-bottom: 40px;
}


.content a {
 	color: #0000EE;
 	text-decoration: underline;
}



.content h2 {
	font-size: 26px;
	margin-bottom: 60px;
  padding: 10px 4px;
  display: block;
  border-bottom: 4px solid var(--color_main);
}
.content h2 .add {
	font-size: 12px;
	background-color: var(--color_main);
	color: var(--color_base);
	margin-right: 4px;
	padding: 2px 4px;
	line-height: 3;
}








.content h3 {
	font-size: 22px;
	margin-bottom: 40px;
	padding: 1px 13px;
  display: block;
  border-left: 7px solid var(--color_main);
}





.content ul , ol {
  margin-bottom: 40px;
}

.content ul li {
  list-style: disc;  /* 黒い丸 */
  margin-left: 20px;
}


.content ol li {
  list-style: decimal;  /* 通常の数字 */
  margin-left: 20px;
}




@media (max-width: 768px) {
	.page__title-wrapper {
		height: 150px;
	}
	.page__title {
		font-size: 24px;
	}
}


/*よくある質問*/

.faq-wrap {
  width: 100%;
  margin: 0 auto 40px;
  border: solid 2px var(--color_sub);
}
.faq-item {
}

.faq-question::before {
  content: 'Q';
  position: absolute;
  left: 20px;
  top: 48%;
  transform: translateY(-50%);
  font-weight: bold;
  color: var(--color_main);
  font-size: 32px;
}

.faq-question {
  position: relative;
  padding: 20px 40px 20px 68px;
  cursor: pointer;
  font-weight: bold;
  background: var(--color_base);
  font-size: 18px;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  transition: transform 0.4s;
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-answer {
  padding: 0 68px; 
  max-height: 0;
  overflow: hidden;
  transition: all 0.25s ease;
  font-size: 16px;
}

.faq-item.active .faq-answer {
  padding: 16px 68px;
  max-height: 500px;
}



/*運営者情報*/
.greeting {
	display: flex;
	justify-content: space-between;
}

.greeting__img-wrapper {
	width: 26%;
}

.greeting__text {
	width: 60%;
}


.profile__list {

}

.profile__group {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	border-bottom: 1px solid var(--color_sub);	
	padding-bottom: 14px;
	margin-bottom: 20px;
	font-size: 16px;
}

.profile__title , .profile__data {}

.profile__title {
	width: 200px;
	font-weight: bold;
}

.profile__data {
	 width: calc( 100% - 200px );
	 margin-bottom: 12px;
}


@media (max-width: 768px) {

	.greeting {
		flex-direction: column;
		align-items: center;
	}

	.greeting__img-wrapper {
		margin-bottom: 60px;
		min-width: 180px;
	}
	.greeting__text {
		width: 100%;
		max-width: 500px;
	}
}


@media (max-width: 660px) {

	.profile__title {
		width: 100%;
		margin-bottom: 14px;
	}
	.profile__data {
		 width: 100%;
	}
}



/*料金-固定*/

.h2price-icon {
	padding: 7px 10px;
    margin: 0 12px 15px 0;
    border-radius: 50%;
}

.h2price-icon--basic {
	background-color: #4CAF50;
}
.h2price-icon--technical {
	background-color: #2196F3;
}
.h2price-icon--support {
	background-color: #FF9800;
}
.h2price-icon--option {
	background-color: #fa141c;
}



.h2price--basic {
	border-bottom: 4px solid #4CAF50 !important;
}
.h2price--technical {
	border-bottom: 4px solid #2196F3 !important;
}
.h2price--support {
	border-bottom: 4px solid #FF9800 !important;
}

.h2price--option {
	border-bottom: 4px solid #fa141c !important;
}







.price-detail {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin-bottom: 120px;
		text-align: left;
}

.price-detail tr {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 28px 0;

}

.price-detail tr:not(:last-of-type) {
	border-bottom: 1px solid var(--color_ac);
}



.price-detail th , td {
	border: none !important;
}


.price-detail th {
	width: 260px;
	font-weight: bold;
}



.price-detail td {
	 width: calc( 100% - 260px );
}




.price__list--page li {
	list-style: none !important;
}

.price__header--page h3 {
	margin-bottom: 0;
	padding: 0;
}


@media (max-width: 768px) {
	.price-detail tr {
		flex-direction: column;
	}
	.price-detail th {
		width: 100%;
		margin-bottom: 20px;
		text-align: left;
		font-size: 18px;
	}
	.price-detail td {
		 width: 100%;
	}
}




/*制作の流れー固定*/
.page-flow {
	margin-bottom: 60px;
}
.page-flow__body {
	margin-bottom: 60px;
}

.page-flow__heading {
	text-align: left !important;
	margin-bottom: 20px !important;
}
.page-flow__heading span {
	font-size: 12px;
	background-color: var(--color_main);
	color: var(--color_base);
	margin-right: 4px;
	padding: 2px 4px;
	line-height: 3;
}


.page-flow__arrow {
	margin: 100px auto 100px;
  display: block;
  width: 28px;
  height: 40px;
  background: var(--color_main);
  clip-path: polygon(0 63.2%, 31% 63.2%, 31% 0, 69% 0, 69% 63.2%, 100% 63.2%, 50% 100%);
}


/*料金ー固定*/
        .transition-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* ボーダー強調（上下ボーダー削除版） */
        .transition-section {
            text-align: center;
            padding: 50px 40px 0px;
            margin: 40px 0 0;
            position: relative;
        }
        
        
        .transition-section::before {
            top: 20px;
        }
        
        .transition-section::after {
            bottom: 50px;
        }
        
        .transition-section h3 {
            font-size: 26px;
            margin-bottom: 40px;
            font-weight: bold;
            color: var(--color_main);
        }


        
        .transition-section p {
        }
        
        /* 矢印 */
        .arrow-down {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 22px solid transparent;
            border-right: 22px solid transparent;
            border-top: 30px solid var(--color_main);
            animation: bounce 1.2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-8px);
            }
            60% {
                transform: translateX(-50%) translateY(-4px);
            }
        }


@media (max-width: 400px) {
        .transition-section h3 {
            font-size: 24px;
        }
	}





/*コンセプト*/

.feature {

}

.feature-lead__body {
	display: flex;
	justify-content: space-between;
}

.feature-lead__text {
	width: 53%;
}

.feature__heading {
	font-size: 29px;
	margin-bottom: 80px;
	color: var(--color_main);
}



.feature-lead__img-wrapper {
	width: 41%;
}


.feature-list {
	background-color: var(--color_sub);
}


.feature-list__body {
	display: flex;
	justify-content: space-between;
}

.feature-contents__body {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.feature-contents__img-wrapper {
/*	background-color: #DBDBDB;*/
	width: 180px;
	height: 180px;
	max-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin-bottom: 46px;
}

.feature-contents__img {
	width: 100%;
}

.feature-contents {
	display: flex;
	flex-direction: column;
	max-width: 27.8%;
}

.feature-contents__heading {
	font-size: 20px;
	margin-bottom: 20px;
}

@media (max-width: 1190px) {
	.feature-contents {
		max-width: 30.8%;
	}	
}



@media (max-width: 930px) {
	.feature-lead__body {
		flex-direction: column-reverse;
		align-items: center;
	}
	.feature-lead__img-wrapper {
		margin-bottom: 40px;
	}


.feature-lead__text {
	width: 100%;
	max-width: 500px;
}

.feature-lead__img-wrapper {
	width: 45%;
	min-width: 280px;
}


	.feature-contents__img-wrapper {

		margin-bottom: 20px;
	}
	.feature-contents__img {
	}	

	.feature-contents {
		max-width: 340px;
	}
	.feature-contents:not(:last-of-type) {
		margin-bottom: 60px;
	}

	.feature-list__body {
		flex-direction: column;
		align-items: center;

	}
}


@media (max-width: 700px) {

	.feature__heading {
		font-size: 24px;
	}
}


@media (max-width: 420px) {

	.feature__heading {
		font-size: 20px;
	}
}





/* ==================== コンセプト ==================== */

.concept {
	background-color: var(--color_sub);
}

.concept-contents {
	margin-bottom: 120px;
}

.concept__body-wrapper {
	display: flex;
	justify-content: space-around;
}

.concept__body-wrapper:not(:last-of-type) {
	margin-bottom: 120px;
}

.concept__img-wrapper {
	width: 40%;
	max-width: 370px;
}


.concept__body {
	width: 50%;
    position: relative;
    padding: 0 0 0 60px;
}


.concept__body::before {
    content: attr(data-number);
    position: absolute;
    top: 0;
    left: -10px;
    width: 60px;
    height: 60px;
    color: var(--color_main);
    font-size: 90px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}


.concept__heading {
	font-size: 28px;
	margin-bottom: 40px;
}

.concept__text {
	width: 100%;
	max-width: 400px;
}

@media (max-width: 1000px) {
	.concept__heading {
		font-size: 22px;
	}
	.concept__body::before {
	    left: -10px;
	    width: 60px;
	    height: 50px;
	    font-size: 70px;
	}

}


@media (max-width: 830px) {
	.concept__body-wrapper {
		flex-direction: column;
		align-items: center;

	}
	.concept__body-wrapper:not(:last-of-type) {
		margin-bottom: 60px;		
	}
	
	.concept-contents {
		margin-bottom: 60px;
	}

	.concept__body-wrapper:nth-of-type(2) {
		flex-direction: column-reverse;
	}
	.concept__img-wrapper {
		margin-bottom: 40px;
		min-width: 280px;
	}
	.concept__body {
		max-width: 420px;
		width: 100%;
	}
}



@media (max-width: 480px) {
	.concept__body::before {
	    width: 60px;
	    height: 50px;
	    font-size: 60px;
	}


	.concept__heading {
		font-size: 19px;
		margin-bottom: 40px;
	}

}

/* ==================== ヘッダー ==================== */
.header {
	padding: 0;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
}

.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 40px;
}

.header__logo-wrapper {
	/*width: 240px;*/
    width: 178px;
}

.header__logo-wrapper:hover {
	opacity: 1;
}

.header__logo {
	margin-bottom: 7px;
}

.header__logo-text {
	font-size: 10px;
	text-align: center;
	margin-bottom: 0;
	font-weight: bold;
}

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

.header-utilities {
	display: flex;
	margin-bottom: 12px;
	justify-content: end;
}

.header__btn {
	width: 140px;
	background-color: var(--color_main);
	color: var(--color_base);
	text-align: center;
	padding: 3px;
	font-size: 18px;
}

.header__btn--2 {
	background-color: var(--color_base);
	color: var(--color_main);
	border: solid 2px var(--color_main);
	margin-right: 16px;
}




.header-nav {
	padding: 0;
}

.header-nav ul {
	display: flex;
	align-items: center;
	text-align: center;
	margin-left: 60px;
	font-weight: bold;
	}
 
#g-nav-list {
	display: flex;
}


.header-nav li:not(:last-of-type) {
	margin-right: 40px;
}

.header__open-sp {
	display: none;
}

.header__logo--active {
	display: none;
}



@media (max-width: 1100px) {
.header {
	position: fixed;
	background-color: var(--color_base);
}

	.header__logo {
		width: 120px;
        margin-bottom: 0;
	}
	.header__logo-text {
		display: none;
	}

	.header__inner {
		padding: 12px 10px 12px 20px;
		height: 60px;
	}

	main {
		margin-top: 60px;
	}

	.header__body {
		flex-direction: column-reverse;
		align-items: center;
		height: 100vh;
	}

	.header-nav {
		padding: 0;
		display: flex;
		flex-direction: column;
	}

	.header-nav ul {
		flex-direction: column;

	}
	.header-nav li:not(:last-of-type) {
		margin-right: 0;
	}

	#g-nav{
	    position: absolute;
	    z-index: 999;
    	/*ナビのスタート位置と形状*/
		top:0;
	  right: 0;	
		width:100vw;
    height: 100vh;/*ナビの高さ*/
		background:#F8F8F8;
    	/*動き*/
		transition: all 0.6s;
		opacity: 0;
		z-index: -1;
		visibility: hidden
	}

	#g-nav-list {
		flex-direction: column;
		justify-content: center;
	}

	#g-nav ul {
		margin-left: 0;
		margin-bottom: 40px;
	}
	/*リストのレイアウト設定*/
	#g-nav li a{
		padding:12px;
		display: block;
	}


	/*アクティブクラスがついたら位置を0に*/
	#g-nav.panelactive{
	    opacity: 1.0;
	    z-index: 9999;
	    visibility: visible;
	    position: fixed;
	}

	/*ナビゲーションの縦スクロール*/
	#g-nav.panelactive #g-nav-list{
	    /*ナビの数が増えた場合縦スクロール*/
	    z-index: 9999; 
	    width: 100%;
	    height: 100vh;/*表示する高さ*/
	    overflow: auto;
	    -webkit-overflow-scrolling: touch;
	}




	.header-utilities {
		margin-bottom: 40px;
		position: absolute;
		bottom: 5%;
	}	

.header__btn {
	max-width: 200px;
	width: auto;
	background-color: var(--color_main);
	color: var(--color_base);
	text-align: center;
	padding: 12px 28px;
	font-size: 18px;
	z-index: 999999;
}

.header__btn--2 {
	background-color: var(--color_base);
	color: var(--color_main);
	border: solid 2px var(--color_main);
	margin-right: 16px;
}

	.header__open-sp {
		width: 90%;
		max-width: 360px;
		display: block;
	}

/*========= ボタンのためのCSS ===============*/
	/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
	.openbtn{
		/*ボタン内側の基点となるためrelativeを指定。
		追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
		position: relative;
		right: 0;
		top: 0;
		cursor: pointer;
	  width: 58px;
	  height:58px;
		z-index: 99999;
	}

	/*ボタン内側*/
	.openbtn span{
	    display: inline-block;
	    transition: all .4s;/*アニメーションの設定*/
	    position: absolute;
	    left: 17px;
		background-color: var(--color_main);
	  	width: 45%;
	  }

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

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

	.openbtn span:nth-of-type(2)::after {
		content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
		position: absolute;
		top:7px;
		font-weight: bold;
		color: var(--color_acce);
		font-size: 8px;
		color: var(--color_main);
		text-transform: uppercase;
	}

	/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

	.openbtn.active span:nth-of-type(1) {
	    top: 16px;
	    left: 20px;
	    transform: translateY(6px) rotate(-45deg);
	    width: 30%;
	    height: 2px;
	}

	.openbtn.active span:nth-of-type(2){
	    top: 28px;
	    left: 20px;
	    transform: translateY(-6px) rotate(45deg);
	    width: 30%;
	}

	.openbtn.active span:nth-of-type(2)::after {
		content:"Close";
	    transform: translateY(0) rotate(-45deg);
		top:8px;
		left:8px;
	}
}


















/* ==================== フッター（コンタクト） ==================== */



.cta {
	padding: 0 5% 0;
	color: var(--color_base);
	margin-bottom: 120px;
}

.cta__inner {
	background-color: var(--color_main);
	padding: 60px 0;
}

.cta__level2-heading {
	margin-bottom: 70px;
}

.cta__br {
	display: none;
}
.cta__level2-heading::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 25px;
  vertical-align: middle;
  background: url(../images/cta_icon.svg) no-repeat;
  background-size: contain;
  margin-right: 8px;
  margin-bottom: 6px;
}

.cta__body {
	display: flex;
	justify-content: space-around;
}

.cta__btn-wrapper {
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cta__btn-text {
	margin-bottom: 12px;
	font-size: 16px;
}

.cta__btn {
  display: inline-block;
  width: 100%;
  max-width: 428px;
  background-color: var(--color_base);
  color: var(--color_main);
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 24px;
  padding: 20px 0;
}



@media (max-width: 1060px) {

	.cta__level2-heading {
		font-size: 30px;
	}
	.cta__btn {
	  width: 95%;
	  max-width: 428px;
	  font-size: 20px;
	  padding: 20px 0;
	}
}


@media (max-width: 870px) {
	.cta__body {
		flex-direction: column;
		align-items: center;
	}
	.cta__btn {
	  width: 90%;
	  max-width: 600px;
	  font-size: 20px;
	  padding: 20px 0;
	}
	.cta__btn:first-of-type {
		margin-bottom: 40px;
	}
	.cta__btn-wrapper {
		width: 95%;
	}
}

@media (max-width: 750px) {
	.cta__level2-heading {
		font-size: 24px;
	}
	.cta__level2-heading::before {
	  width: 28px;
	  height: 20px;
	  margin-right: 8px;
	}
}


@media (max-width: 520px) {

	.cta {
		padding: 0 3% 0;
	}
	.cta__level2-heading {
		font-size: 24px;
	}
	.cta__level2-heading::before {
	  width: 28px;
	  height: 20px;
	  margin-right: 8px;
	}
	.cta__br {
		display: block;
	}
}





/* ==================== フッター ==================== */
.footer {
    background-color: var(--color_text);
}

.footer-border {
	 padding:3.5px;
	 border-top:2px solid var(--color_ac);
	 border-bottom:2px solid var(--color_ac);
	 width: 85%;
	 margin: 0 auto;
}





.footer__inner {
	padding: 48px 2.5% 20px;
	max-width: 1240px;
	margin: 0 auto;
}


.footer-nav {
	margin-bottom: 56px;
}

.footer-nav a {
    color: var(--color_base);
}


.footer-nav ul {
	display: flex;
	justify-content: center;
	font-size: 15px;
	flex-wrap: wrap;
}

.footer-nav li {
		margin-bottom: 20px;
}


.footer-nav li:not(:last-of-type) {
	margin-right: 20px;
	padding-right: 20px;
}

.copyright { 
	text-align: center;
    color: #ADADAD;
    font-size: 14px;
    margin-bottom: 0;
}

@media (max-width: 650px) {
	.footer-nav ul {
		flex-direction: column;
		align-items: center;
	}

	.footer-nav li:not(:last-of-type) {
		margin-right: 0px;
		padding-right: 0px;
	}
}





/* ==================== 404 ==================== */
.notfound {
	margin-bottom: 60px;
}


/* ==================== 2カラム維持 ==================== */
@media (max-width: 781px){
   .wp-block-columns.sp2:not(.is-not-stacked-on-mobile)>.wp-block-column {
                 flex-basis: 48% !important;　/*数字は幅を見ながら調整*/
    }
  .wp-block-columns.sp2::after{
		 content: "";
		 width: 48%;
		 height: 0;
	 }
}






/* ==================== ボタンアニメーション ==================== */
/* 共通の光るアニメーション */
.btn,
.mv__btn,
.cta__btn {
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

/* 光るエフェクト用の疑似要素（共通） */
.btn::before,
.mv__btn::before,
.cta__btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		110deg,
		transparent,
		rgba(220, 220, 220, 0.4),
		transparent
	);
	transition: left 0.6s ease;
}

/* ホバー時のアニメーション（共通） */
.btn:hover::before,
.mv__btn:hover::before,
.cta__btn:hover::before {
	left: 100%;
}

/* 個別のボタンスタイル */

/* ホバー時のボタン全体の変化（共通） */
.btn:hover,
.mv__btn:hover,
.cta__btn:hover {
	transform: translateY(-3px);
	opacity: 1;
}

/* 個別のボックスシャドウ調整 */
.btn:hover {
	box-shadow: 0 5px 12px rgba(0, 0, 0, .2);
}

.mv__btn:hover {
	box-shadow: 0 8px 16px rgba(0, 0, 0, .15);
}

.cta__btn:hover {
	box-shadow: 0 8px 16px rgba(0, 0, 0, .15);
}












/* ==================== お客様の声 ==================== */


        .review-section {
            /*max-width: 800px;*/
            margin: 0 auto 0;
            text-align: center;
            /*background-color: var(--color_base);*/
            background-image: url(../images/1.jpeg);
            /*background-image: url(../images/1.png);*/
		    background-image: url(../images/review.jpg);
		    background-image: image-set(url(../images/review.jpg) 1x, url(../images/review@2x.jpg) 2x);
		    background-image: -webkit-image-set(url(../images/review.jpg) 1x, url(../images/review@2x.jpg) 2x);

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
        }

.review__heading {
	text-align: left;
	font-size: 18px;
	margin-bottom: 48px;
}

        .review-slider {
        	max-width: 800px;
            position: relative;
            background: var(--color_base);
            border: solid 1px var(--color_sub);
            border-radius: 16px;
            /*box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);*/
            padding: 56px 20px;
            margin: 0 auto 0;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow: visible;
            /*opacity: 0.95;*/
        }

        .review-slider__container {
            width: 100%;
            position: relative;
            overflow: hidden;
            border-radius: 16px;
        }

        .review-slider__track {
            display: flex;
            transition: transform 0.6s ease-in-out;
        }

        .review-card {
            width: 100%;
            flex-shrink: 0;
            text-align: center;
            opacity: 0.3;
            transform: scale(0.85);
            transition: all 0.6s ease-in-out;
            padding: 0 30px;
            display: flex;
            align-items: center;
            gap: 40px;
            margin-bottom: 60px;
        }

        .review-card--active {
            opacity: 1;
            transform: scale(1);
        }

        .review-card--prev,
        .review-card--next {
            opacity: 0.4;
            transform: scale(0.9);
        }

        .review-card__header {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
            min-width: 150px;
        }

        .review-card__icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #fff;
            font-weight: bold;
			background-image: linear-gradient(133deg, rgba(230, 230, 230, 1), rgba(193, 193, 193, 1));
			}
        .review-card__meta {
            font-size: 16px;
            color: #666;
            font-weight: 500;
        }

        .review-card__industry {
            color: #333;
            font-weight: 600;
        }

        .review-card__text {
            max-width: 600px;
            margin: 0 auto;
            text-align: left;
        }

        .review-slider__nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #333;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        }

        .review-slider__nav:hover {
            background: #fff;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
        }

        .review-slider__nav--prev {
            left: -24px;
        }

        .review-slider__nav--next {
            right: -24px;
        }

        .review-slider__indicators {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .review-slider__indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .review-slider__indicator--active {
            background: #4facfe;
            transform: scale(1.2);
        }

        .review-slider__progress {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            position: relative;
            overflow: hidden;
        }

        .review-slider__progress-bar {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: conic-gradient(#4facfe 0deg, #ddd 0deg);
            transition: background 0.1s ease;
        }

            @media (max-width: 1000px) {
            	.review-card {
            		padding: 0 20px;    	        		
            	}
		        .review-slider {
		        	width: 90%;
		        }
            }

            @media (max-width: 768px) {
 				.review-card {
 					flex-direction: column;
 				}
 				.review-slider {
		        	max-width: 450px;
		        }
		        .review-card__icon {
		        	width: 80px;
		        	height: 80px;
		        }
            }






.fadeIn {
	animation-name:fadeInAnime;
	animation-duration:1.2s;
	animation-fill-mode:forwards;
	opacity:0;
}


@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
