/* ----- ----- root ----- ----- */
:root {
    --color-black: #1a1a1a;
    --sec-padding1: 8rem 0;
    --transition: 0.3s;
    --scroll-margin: 130px;
    --radius: 1.5rem;
}

a {
    transition: 0.3s;
}

a:focus {
    outline: none;
}


/* ----- ----- global ----- ----- */
html {
    scroll-behavior: smooth;
}

body {
    color: #232323;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    letter-spacing: 0.06rem;
    counter-reset: number 0;
}

main:not(.home main) {
    padding-top: 5rem;
}

.page {
    margin: 0;
}

.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.home section, .company section, .custom section {
    padding: var(--sec-padding1);
}

.page-content, .entry-content, .entry-summary {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a, a:visited {
    color: #232323;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
}

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

.text-r {
    text-align: right;
}

.block {
    display: block;
}

.red {
    color: #ff0000;
    font-size: 1.5rem;
}

.radius {
    border-radius: var(--radius);
}

.full {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
}


/* ----- grid -----*/
.grid-list1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem 1rem;
}


/* ----- ----- font ----- ----- */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
}

h2 {
    margin-bottom: 1rem;
}

p {
    line-height: 2.2rem;
}

.section-title1 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 3rem;
    letter-spacing: .2rem;
    margin-top: 0;
    margin-bottom: 2rem;
}

.section-title1 .jp {
    font-size: 0.928rem;
    font-weight: 600;
    color: #a6a6a6;
    display: flex;
    line-height: normal;
    align-items: center;
}

.section-title1 .jp::before {
    content: '';
    background-image: url(../images/common/h2_icon1.svg);
    background-size: cover;
    background-position: center;
    width: 13px;
    height: 13px;
    display: inline-block;
    margin-right: 8px;
    position: relative;
    top: -1px;
}

.section-title2 {
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: .3rem;
    margin-top: 0;
}

.section-title2::before {
    content: '';
    background-image: url(../images/common/h3_icon1.svg);
    background-size: cover;
    background-position: center;
    width: 32px;
    height: 32px;
    display: inline-block;
    margin-right: 12px;
    position: relative;
    top: 3px;
}

.lead {
    font-size: 1.714rem;
    font-weight: 600;
    line-height: 3.2rem;
}

.lead span {
    display: block;
}




/* ----- ----- button ----- ----- */
/* ----- btn1 ----- */
.btn1 {
    display: inline-block;
    border: 1px solid #322e2d;
    font-size: 0.875rem;
    padding: 10px 20px;
    border-radius: 2rem;
    color: #232323;
}

.btn1::after {
    content: '\2192';
    margin-left: 10px;
}

.btn1:hover {
    background: #232323;
    color: #ffffff;
}

/* ----- btn2 ----- */
.btn2 {
    display: inline-block;
    border: 1px solid #322e2d;
    font-size: 0.875rem;
    padding: 10px 20px;
    border-radius: 2rem;
    color: #232323;
}

.btn2:hover {
    background: #232323;
    color: #ffffff;
}


/* ----- pagination ----- */
.custom-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 30px 0;
    list-style: none;
}

.custom-pagination .page-item a,
.custom-pagination .page-item span {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    color: #1a1a1a;
    border: 1px solid #cccccc;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.3s;
}

.custom-pagination .page-item.active span {
    background-color: #1f7dcc;
    color: #fff;
    border: none;
}

.custom-pagination .page-item a:hover {
    background-color: #1f7dcc;
    color: #fff;
}


/* ----- inview animation ----- */
.sview {
    margin: 0 auto 100px;
    position: relative;
    overflow: hidden;
}

.sview::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateY(0%);
    transition: transform 0.6s ease-in-out;
    z-index: 2;
}

.sview img {
    width: 100%;
    vertical-align: middle;
    display: block;
    transform: scale(1.05);
    transition: transform 1s ease;
}

.sview.js-on::after {
    transform: translateY(-100%);
}

.sview.js-on img {
    transform: scale(1);
}


/* ----- ----- header ----- ----- */
body.admin-bar header.site-header {
    top: 32px;
}

.site-header {
    padding: 10px 0;
}

header.site-header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s ease;
    z-index: 1000;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.site-branding {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    z-index: 999999;
}

.site-header.scrolled {
    background: #ffffff;
}


/* ----- ----- footer ----- ----- */
footer {
    background-color: #f2f2f2;
    padding: 20px 0 0;
    margin-top: 10rem;
}

footer .container.top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

footer .section-title1 {
    margin-bottom: 0;
}

footer .lead span {
    display: inline-block;
}

footer .btn1 svg {
    width: auto;
    height: 14px;
    margin-right: 6px;
    position: relative;
    top: 1px;
}

footer .btn1:hover .st1, footer .btn1:hover .st2 {
    fill: #ffffff;
    transition: color 0.3s;
}

footer .btn1, header.site-header .btn1 {
    border-color: #232323;
    display: inline-flex;
    align-items: center;
    margin-top: 2rem;
    padding: 10px 20px;
}

footer .btn1:hover, header.site-header .btn1:hover {
    background-color: #232323;
    border-color: #232323;
}

footer .btn1::after, header.site-header .btn1::after {
    content: '\2192';
    margin-left: 10px;
    transition: 0.3s;
}

footer .list ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

footer .list a {
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

#colophon {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-align: right;
    margin-bottom: 1.5rem;
}

#footer-logo svg {
    width: 100%;
    height: 100%;
    transform: translate3d(0px, 0px, 0px);
    content-visibility: visible;
    margin-bottom: -5px;
}

#footer-logo svg .st0 {
    fill:none;
}

#footer-logo svg .st1 {
    fill:#FFFFFF;
}

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

.penko {
    animation: floatUpDown1 1s ease-in-out infinite;
    transform-box: fill-box;
    transform-origin: center;
}

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

.menko {
    animation: floatUpDown2 1.8s ease-in-out infinite;
    transform-box: fill-box;
    transform-origin: center;
}


/* ----- ----- breadcrumb ----- ----- */
.breadcrumb ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
    font-size: 0.9em;
    padding: 0;
    margin: 0 0 3em 0;
}
.breadcrumb li::after {
    content: ">";
    margin: 0 0.5em;
}
.breadcrumb li:last-child::after {
    content: "";
}
.breadcrumb a {
    text-decoration: none;
}


/* ----- ----- top ----- ----- */
/* ----- common ----- */
.home #about .lead, .home #estate .lead, .home #building .lead, .home #company .lead {
    line-height: 3.2rem;
}

/* ----- hero -----*/
#hero {
    display: flex;
    height: calc(100vh - 110px);
    align-items: center;
}

#hero .hero-inner {
    position: relative;
    /* left: 16%; */
}

#hero h1 {
    width: 267px;
    height: 60px;
    background: url("../images/common/logo_b.svg") no-repeat center/contain;
    display: block;
    margin-top: 0;
    text-indent: -9999px;
    overflow: hidden;
    white-space: nowrap;
}

#hero .lead {
    font-size: 1.142rem;
}

#hero .lead span {
    display: block;
}


/* ----- service -----*/
#service {
    padding-top: 0;
    padding-bottom: 0;
    scroll-margin-top: var(--scroll-margin);
}

#service .service, .service .intro .button {
    display: flex;
    gap: 20px;
}

#service .service > div, .service .intro .button a {
    background: #f2f2f2;
    padding: 1rem 3rem 3rem;
    margin-bottom: 3rem;
    border-radius: var(--radius);
    width: 50%;
}

#service h3, .service .intro h3 {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

#service .icon, .service .button .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 82px;
    height: 82px;
    margin-right: 1rem;
    border-radius: 5rem;
}

#service .icon::before, .service .button .icon::before {
    content: '';
    background-size: cover;
    background-position: center;
    display: inline-block;
    width: 82px;
    height: 82px;
}

#service .web .icon::before, .service .button .web .icon::before {
    background-image: url(../images/top/icon_web.svg);
}

#service .graph .icon::before, .service .button .graph .icon::before {
    background-image: url(../images/top/icon_graph.svg);
}

#service h3 .jp, .service .button h3 .jp {
    color: #a6a6a6;
    display: block;
    font-size: 0.812rem;
}

#service ul {
    margin-top: 3rem;
}

#service .list li {
    font-size: 0.75rem;
    display: inline-block;
    margin-right: .6rem;
    margin-bottom: 1rem;
}

#service .list li:last-child {
    margin-right: 0;
}

#service .list li {
    background: #ffffff;
    display: inline-block;
    font-weight: 600;
    padding: 10px 10px;
    border-radius: 0.5rem;
}

#service .text {
    display: flex;
    gap: 20px;
    margin-bottom: 5rem;
}

#service .text > div {
    width:calc(100% / 2);
}

#service .lead {
    font-size: 1.312rem;
    border-right: 1px solid #000000;
}

#service .lead span {
    display: block;
    font-size: 1.875rem;
}

#service .text p {
    margin: 0;
    padding: 0px 10%;
}

#service .btn-box, #works .btn-box {
    text-align: center;
}


/* ----- works -----*/
.works-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 20px;
    justify-content: space-between;
    margin-bottom: 6rem;
}

.works-list .thumb {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 10px;
}

.works-list .thumb a {
	display: block;
	width: 100%;
	height: 100%;
}

.works-list .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
    border-radius: var(--radius);
}

.cat a {
    background: #ebebeb;
    display: inline-block;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 0.4rem;
    font-weight: 600;
}

.works-list h3 {
    margin-top: .5rem;
}

#works .btn-box {
    margin-top: 4rem;
}

/* ----- about -----*/
#about {
    background-color: #f2f2f2;
    margin: 0 auto;
    padding: 3rem;
    border-radius: var(--radius);
}

#about .inner {
    max-width: 600px;
    margin: 0 auto;
}

#about h2 {
    font-size: 2rem;
}

#about h2 span {
    display: block;
    font-size: 1rem;
    margin-bottom: .2rem;
}

#about h2 img {
    max-width: 165px;
}

#about .text {
    display: flex;
}

#about ul {
    display: flex;
    margin-top: 1rem;
}

#about li {
    width: 33.3%;
    display: inline-flex;
    aspect-ratio: 1 / 1;
    justify-content: center;
    align-items: center;
    padding: .5rem;
}

#about li img {
    max-width: 165px;
}

#about li span {
    display: block;
}


/* ----- news -----*/
#news .title {
    display: flex;
    justify-content: space-between;
}

#news .list {
    width: 100%;
    margin-bottom: 2rem;
}

.new-posts-list li {
    border-bottom: 1px solid #d0d5dd;
    display: flex;
    align-items: center;
    padding: 1.5rem 0 1.5rem;
}

.new-posts-list li::after {
    content: '\2192';
    margin-left: 10px;
}

.new-posts-list .post-category {
    font-size: 0.625rem;
    margin-right: 1rem;
}

.new-posts-list .post-category .btn1 {
    background: #232323;
    color: #ffffff;
    font-size: 0.714rem;
    padding: 4px 10px;
}

.new-posts-list .post-category .btn1::after {
    content: none !important;
}

.new-posts-list .post-category .btn1:hover {
    background: #ffffff;
    color: #232323;
}

.new-posts-list .post-date {
    font-size: 0.75rem;
    margin-right: 1rem;
}

#news .title-wrapper {
    width: calc(100% - 215px);
}

#news .post-title {
    font-size: 0.875rem;
    display: block;
    padding: 10px 20px;
}

#news .btn-box {
    text-align: center;
    margin-top: 3rem;
}

#news .sp.btn1 {
    display: none;
}

#news .btn1::after {
    content: '\2192';
    margin-left: 10px;
}


/* ----- ----- page ----- ----- */
/* あとで削除 */
#graphic h3, #graphic .grid-list1 {
    display: none;
}


/* ----- service ----- */
#web {
    padding: var(--sec-padding1);
}

#web .icon::before, #graphic .icon::before {
    content: '';
    background-size: cover;
    background-position: center;
    display: inline-block;
    width: 160px;
    height: 160px;
}

#web .icon::before {
    background-image: url(../images/page/service/icon_web2.svg);
}

#web .head {
    display: flex;
}

#web .head .text {
    width: calc(100% - 160px);
    padding-right: 120px;
}

.service .intro .head {
    margin-bottom: 8rem;
}

.service .intro h3 {
    margin-bottom: 0;
}

.service .intro .arrow {
    text-align: center;
}

.service .intro .arrow::after {
    content: '\2335';
    display: inline-block;
    font-size: 2.5rem;
    line-height: 1.8rem;
}

#plan {
    background: #f2f2f2;
    padding: var(--sec-padding1);
}

#plan h3, #base h3, #flow h3, #graphic h3, #other h2 {
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
}

#plan h3 span, #base h3 span, #flow h3 span, #graphic h3 span, #other h2 span {
    font-size: 1rem;
    font-weight: 600;
    margin-left: 10px;
}

.plan-list {
    margin-top: 3rem;
}

.plan-list > ul {
    display: flex;
	gap: 1.1rem;
	align-items: stretch;
}

.plan-list > ul > li {
    display: flex;
	flex-direction: column;
	width: 33.3%;
}

.plan-list .name {
    color: #ffffff;
    font-size: 1.5rem;
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 2rem 2rem 0 0;
}

.plan-list .name::before {
    content: '';
    background-size: cover;
    background-position: center;
    height: 13px;
    display: inline-block;
    position: relative;
}

.plan-list .name h4 {
    margin: 0;
}

.plan-list .light .name::before {
    background-image: url(../images/page/service/icon_light.svg);
    width: 13px;
}

.plan-list .standard .name::before {
    background-image: url(../images/page/service/icon_standard.svg);
    width: 34px;
}

.plan-list .business .name::before {
    background-image: url(../images/page/service/icon_business.svg);
    width: 55px;
}

.plan-list .mid {
    flex: 1;
	display: flex;
	flex-direction: column;
    background: #ffffff;
    padding: 20px 20px 4rem;
}

.plan-list .light .name {
    background: #898989;
}

.plan-list .standard .name {
    background: #595757;
}

.plan-list .business .name {
    background: #000000;
}

.plan-list .head-lead {
    margin: 1rem;
}

.plan-list .head-lead li {
    font-size: 1rem;
    font-weight: 600;
    line-height: 2.4rem;
    padding-left: 1rem;
	text-indent: -1rem;
}

.plan-list .head-lead li::before {
    content: '・'
}

.plan-list .list {
	flex: 1;
	flex-direction: column;
}

.plan-list .list > li {
    flex: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #cccccc;
	padding: 1.5rem 1rem 1.5rem 0;
}

.plan-list .list > li > div {
    font-weight: 600;
}

.plan-list .list > li > div span {
    font-size: 0.875rem;
    font-weight: 400;
    margin-left: 5px;
}

.plan-list .list > li.op {
    border-bottom: none;
}

.plan-list .list > li.op {
    display: block;
}

.icon {
    display: inline;
}

.icon::before {
    content: '';
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    position: relative;
    top: 4px;
}

.icon.file::before {
    background-image: url(../images/page/service/icon_file1.svg);
    width: 20px;
    height: 24px;
}

.icon.mail::before {
    background-image: url(../images/page/service/icon_mail1.svg);
    width: 22px;
    height: 17px;
}

.icon.pen::before {
    background-image: url(../images/page/service/icon_pen1.svg);
    width: 26px;
    height: 27px;
}

.plus1 {
    font-size: 3rem;
    margin: 1rem;
    text-align: center;
}

.plus2 {
    font-size: 4.5rem;
    text-align: center;
}

.plan-list .add {
    display: block;
    font-size: 0.875rem;
    text-align: center;
    margin: 0 auto;
    width: 200px;
    background: #f2f2f2;
    padding: 2rem;
    border-radius: 1rem;
}

.plan-list .add span {
    margin-left: 0 !important;
    margin-bottom: .5rem;
}

.plan-list .price {
    background: #e0e1e1;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    padding: 2rem .5rem;
    border-radius: 0 0 2rem 2rem;
}

.plan-list .tax {
    font-size: 1rem;
    margin-left: 10px;
}

.add-plan {
    background: #ffffff;
    border-radius: 150px;
    padding: 2rem .5rem;
    text-align: center;
}

.add-plan .plan-b, .add-plan .price {
    font-size: 1.5rem;
    font-weight: 600;
}

#base {
    padding: var(--sec-padding1);
}

#base .list {
    margin-bottom: 5rem;
}

#base h4 {
    background: #000000;
    color: #ffffff;
    padding: 1rem;
}

#base .list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#base .list-grid > div {
    background: #f2f2f2;
    padding: 1.5rem 1.5rem;
    font-weight: 600;
}

#base .list-grid .title {
    font-weight: 600;
}

#base .list-grid ul li {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 400;
}

#base .list-grid ul li::after {
    content: '/';
    display: inline-block;
    margin-left: .3rem;
    margin-right: .5rem;
}

#base .list-grid ul li:last-child::after {
    content: none;
}

#flow {
    width: 100%;
    margin-bottom: 4rem;
}

.flow-list {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin: 0 auto;
    margin-bottom: 30px;
    padding-bottom: 30px;
    max-width: 900px;
}

.flow-list:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

#flow h4 {
    font-size: 1.5rem;
    display: inline;
    margin-right: 1rem;
}

#flow .date {
    border: 1px solid #000000;
    border-radius: 50px;
    display: inline-block;
    padding: .1rem 1rem .1rem;
}

.flow-list:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 39px;
    top: 93px;
    bottom: -19px;
    width: 2px;
    background-color: black;
    z-index: 0;
}

#flow .number {
    width: 82px;
    height: 82px;
    background-color: black;
    border-radius: 50%;
    color: white;
    display: flex;
    font-size: 1.375rem;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.flow-list .text {
    line-height: 1.7;
    padding-top: 5px;
}

#graphic {
    padding: var(--sec-padding1);
}

#graphic .info .name::after {
    content: '/';
    margin-left: .5rem;
    margin-right: .5rem;
}

#graphic .icon::before {
    background-image: url(../images/page/service/icon_graphic2.svg);
}

#graphic .head {
    display: flex;
}

#graphic .head .text {
    width: calc(100% - 160px);
    padding-right: 120px;
}

#map {
    margin-top: 7rem;
}

#map .head {
    margin-bottom: 3rem;
}

.contact-box .inner {
    border: 1px solid #000000;
    max-width: 900px;
    text-align: center;
    border-radius: 2rem;
    padding: 2rem 1rem 3rem;
    margin: 0 auto;
}

.contact-box h2 {
    margin-bottom: 2rem;
}

.contact-box a {
    font-size: 2.062rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    padding: .6rem 2.1rem;
    border-radius: 5rem;
}

.contact-box svg {
    height: 25px;
    margin-right: 12px;
    position: relative;
    top: 1px;
}

.contact-box a:hover .st1, .contact-box a:hover .st2 {
    fill: #ffffff;
    transition: color 0.3s;
}

.wpcf7-form-control-wrap {
    display: block;
    margin-top: .3rem;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 2rem;
}

.wpcf7-form .subject label {
    margin-bottom: 0;
    padding: .5rem;
}

.wpcf7-form .subject .first {
    margin-left: 0;
}

.wpcf7-form label.textarea {
    width: 100%;
    margin-top: 3rem;
}

.scroll-box {
    background: #f2f2f2;
	width: 80%;
    height: 100px;
    overflow-y: scroll;
    padding: 5px 20px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.scroll-box p {
    font-size: .8rem;
    line-height: 1.5rem;
}

.consent {
    border: 1px solid #cccccc;
    padding: 1rem 1rem;
    margin: 0 auto;
}

.consent .wpcf7-form-control-wrap {
    margin-top: 0;
}

.consent label {
    margin-bottom: 0;
}

#confirm-area {
  display: none;
}

#confirm-area {
    padding:20px;
    background:#f9f9f9;
    max-width:600px;
    margin: 0 auto;
    margin-top:20px;
    opacity:0;
    height:0;
    overflow:hidden;
    pointer-events:none;
    transition:opacity .2s ease, height .2s ease;
}

#confirm-area p {
    margin-bottom: .5rem;
    margin-top: .5rem;
}

#confirm-area .button {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
}

#back-edit, #send-form {
    border: none;
    padding: 1rem;
    width: 50%;
}

#send-form {
    background:#0073aa;
    color: #ffffff;
}

.show-confirm #confirm-area {
    opacity:1;
    height:auto;
    pointer-events:auto;
    margin: 0 auto;
}

.show-confirm form.wpcf7-form {
    opacity:0;
    height:0;
    overflow:hidden;
    pointer-events:none;
}

#to-confirm {
    border: none;
    background:#ccc;
    border-radius: 0;
    color:#666;
    cursor:not-allowed;
    transition:background .2s ease;
    width: 100%;
    padding: 2rem 1rem;
}

#to-confirm.active {
    background:#0073aa;
    color:#fff;
    cursor:pointer;
}

#to-confirm:disabled {
    opacity:.7;
}

.swal2-actions {
    width: 100%;
}

.swal2-actions .swal2-confirm {
    width: 100%;
    background-color: #0073aa !important;
    margin: 1rem;
}

.show-confirm .wpcf7 {
  display: none;
}

.show-confirm #confirm-area {
  display: block;
}

#to-confirm:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#to-confirm.active {
  opacity: 1;
}

.wpcf7-not-valid-tip {
    margin-top: .5rem;
}


/* ----- contact ----- */
.contact form {
    max-width: 800px;
    margin: 0 auto;
}

.wpcf7-radio .wpcf7-list-item {
    display: block;
}

.wpcf7-form-control-wrap input, .wpcf7-form-control-wrap textarea {
    padding: 10px;
    margin-top: 5px;
}

.contact textarea {
    border: 1px solid #ccc;
}

.wpcf7 .wpcf7-submit {
    border: 1px solid var(--color-dark-green);
    background: #1f7dcc;
    color: #ffffff;
    font-size: 1.714rem;
    padding: 2rem;
    margin-bottom: 1rem;
    width: 100%;
    transition: 0.3s all ease;
}

.wpcf7 .wpcf7-submit:hover {
    background: #3ac8e1;
}


/* ----- privacy-policy ----- */
.privacy-policy .entry-content section {
    margin: 0 auto;
    margin-bottom: 6rem;
}

.privacy-policy .entry-content ul {
    margin-bottom: 2rem;
}

.privacy-policy .entry-content li {
    list-style: none;
    margin-bottom: .3rem;
}

.privacy-policy .entry-content section > ul > li {
    border-bottom: 1px solid #cfd4dc;
    margin-bottom: 2rem;
    padding-bottom: .5rem;
}

.privacy-policy section.policy-list > ul > li {
    padding: 40px 10px 40px 0;
    margin-bottom: 0;
}

.privacy-policy .entry-content h2::before {
    font-size: 1.5rem;
    counter-increment: number 1;
    content: counter(number) '.';
}

.privacy-policy .entry-content li h2 {
    margin-top: 0;
}


/* ----- 404 ----- */
.error404 .link {
    border-bottom: 1px solid #222222;
}



/* ----- ----- post archive ----- ----- */



/* ----- ----- single ----- ----- */
.single-post .entry-content {
    max-width: 800px;
    margin: 0 auto;
}

.single-post .entry-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.single .entry-meta .post-categories a {
    font-size: 0.714rem;
    padding: 5px 10px;
    margin-right: 10px;
}

.single .entry-header h1 {
    border-bottom: 1px solid #cfd4dc;
    font-weight: normal;
    padding: 10px 0;
}

/* ----- btn ----- */
/* .nav-subtitle {
    display: inline-block;
    padding: 10px 10px 10px 0;
} */

.nav-previous a {
    background: #f2f2f2;
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.nav-next a {
    background: #f2f2f2;
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
/* 
.nav-previous .nav-subtitle::before {
    content: '\2190';
    display: inline;
    background: #1f7dcc;
    color: #ffffff;
    font-size: 1.5rem;
    margin-right: 15px;
    padding: 17px;
    border-radius: 2rem;
    transition: 0.3s;
}

.nav-next .nav-subtitle::after {
    content: '\2192';
    display: inline;
    background: #1f7dcc;
    color: #ffffff;
    font-size: 1.5rem;
    margin-left: 15px;
    padding: 17px;
    border-radius: 2rem;
    transition: 0.3s;
} */


/* ----- nav previous next ----- */
.post-navigation {
    text-align: center;
}

.post-navigation .nav-previous, .post-navigation .nav-next {
    flex: 0 1 auto;
}

.post-navigation .nav-links {
    display: inline-flex;
    margin-top: 7rem;
}

.nav-next {
    border-left: 1px solid #000000;
    padding-left: 50px;
    margin-left: 50px;
}

.postid-91 .nav-next {
    border-left: none;
    padding-left: 0;
}

.nav-previous .nav-title::before {
    content: '\25C0';
}

.nav-next .nav-title::before {
    content: '\25B6';
}


/* ----- ----- custom post single ----- ----- */
.single-work .entry-header {
    margin-bottom: 1.5rem;
}

.single-work main .info {
    display: flex;
    gap: 20px;
    margin-top: 3rem;
    margin-bottom: 8rem;
}

.single-work main .info > div {
    width: calc(100% / 2);
}

.single-work .url {
    border-left: 1px solid #000000;
    padding-left: 30px;
}

.single-work .url h2 {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

.single-work .url p {
    margin-top: 0;
}

.single-work .url a::after {
    content: '';
    background-image: url(../images/works/icon_url.svg);
    background-size: contain;
    background-position: center;
    width: 16px;
    height: 14px;
    display: inline-block;
    margin-left: 12px;
    position: relative;
    top: 2px;
}

.single-work .list-image {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.list-image .top.image, .list-image .bottom.image {
    aspect-ratio: 16 / 9;
    grid-column: auto / span 2;
}

.list-image .center.image {
    aspect-ratio: 1 / 1;
    grid-column: auto / span 1;
}

.single-work .main img, .single-work .list-image img {
    border-radius: var(--radius);
}


@media (hover: hover) and (pointer: fine) {
    a:hover {
        color: #39FF14;
    }
}


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

}
        

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


}


@media screen and (max-width: 1200px) {
    /* ----- ----- footer ----- ----- */
    footer .info {
        width: 55%;
    }

    footer .list {
        width: 40%;
    }


    /* ----- ----- page ----- ----- */
    /* ----- service ----- */
    #web .head .text, #graphic .head .text {
        padding-right: 40px;
    }

    


}


@media screen and (max-width: 991px) {
    /* ----- ----- header ----- ----- */
    .main-navigation ul#primary-menu {
        display: block;
    }


    /* ----- ----- footer ----- ----- */
    footer .container.top {
        display: block;
    }

    footer .info, footer .list {
        width: 100%;
    }

    footer .info {
        margin-bottom: 4rem;
    }

    footer .list ul {
        grid-template-columns: 1fr 1fr;
    }


    /* ----- ----- top ----- ----- */
    /* ----- service -----*/
    #service .service, .service .intro .button {
        display: block;
    }

    #service .service > div, .service .intro .button a {
        width: 100%;
        display: block;
    }


    /* ----- works -----*/
    .works-list {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }


    /* ----- ----- page ----- ----- */
    /* ----- service ----- */
    .plan-list > ul {
        flex-flow: column;
    }

    .plan-list > ul > li {
        width: 100%;
    }

    .plan-list .head-lead {
        margin: 1rem 0;
    }

    .plan-list .mid {
        padding: 20px 25% 4rem;
    }

    .add-plan .plan-b, .add-plan .price {
        font-size: 1.2rem;
    }

    .add-plan .price {
        display: block;
    }

}


@media screen and (max-width: 781px) {
    /* ----- ----- global ----- ----- */
    /* ----- grid -----*/
    .grid-list1 {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 1rem;
    }


    /* ----- ----- footer ----- ----- */
    footer .list ul {
        grid-template-columns: 1fr 1fr;
    }


    /* ----- ----- button ----- ----- */
    /* ----- btn3 ----- */


    /* ----- ----- top ----- ----- */
    /* ----- service -----*/
    #service .text {
        display: block;
    }

    #service .text > div {
        width: 100%;
        padding: 0px 8%;
    }

    #service .lead {
        border-right: none;
        margin-bottom: 2rem;
    }

    #service .text p {
        padding: 0;
    }

    #service h3, .service .intro h3 {
        display: block;
        text-align: center;
    }

    .service .button .icon {
        margin-right: 0;
        margin-bottom: 1.3rem;
    }


    /* ----- works -----*/
    .works-list {
        flex-flow: column;
        align-items: center;
    }


    /* ----- news -----*/
    .new-posts-list li {
        display: block;
    }

    #news .title-wrapper {
        width: 100%;
    }

    #news .post-title {
        padding: 10px 0;
    }

    .new-posts-list li {
        padding: 1rem 0 .8rem;
        margin-bottom: .3rem;
    }

    .new-posts-list li::after {
        content: none;
    }

    #news .title .pc {
        display: none;
    }

    #news .sp.btn1 {
        display: inline-block;
    }


    /* ----- ----- page ----- ----- */
    /* ----- service ----- */
    #web .head, #graphic .head {
        flex-flow: column;
    }

    #web .head .text, #graphic .head .text {
        width: 100%;
        padding-right: 0;
        order: 2;
    }

    #web .head .icon, #graphic .head .icon {
        order: 1;
        text-align: center;
        padding: 2rem 0;
    }

    #base .list-grid {
        gap: 5px;
    }

    #base .web .list-grid, #base .base .list-grid, #base .option .list-grid, #base .mainte .list-grid {
        grid-template-columns: 1fr;
    }

    #base .web .list-grid .price, #base .base .list-grid .price, #base .option .list-grid .price, #base .mainte .list-grid .price {
        margin-bottom: 1rem;
    }

    .contact-box h2 span {
        display: block;
    }
    
}


@media screen and (max-width: 600px) {
    /* ----- ----- top ----- ----- */
    /* ----- hero -----*/
    .tile {
        width: 100%;
        height: 100%;
    }


    /* ----- ----- page ----- ----- */
    /* ----- service ----- */
    #flow .number {
        width: 50px;
        height: 50px;
        font-size: 1.375rem;
        margin-right: .8rem;
    }

    .flow-list .text {
        font-size: 1rem;
        padding-top: 2px;
    }

    .flow-list:not(:last-child)::after {
        left: 23px;
        top: 70px;
        bottom: 0;
    }

    .plan-list .mid {
        padding: 20px 16% 4rem;
    }

}


@media screen and (max-width: 480px) {
    /* ----- ----- root ----- ----- */
    :root {
        --sec-padding1: 6rem 0;
    }


    /* ----- ----- font ----- ----- */
    .page .lead span:not(.home .lead span) {
        display: inline;
    }


    /* ----- ----- top ----- ----- */
    /* ----- hero -----*/
    #hero {
        height: calc(100vh - 70px);
        padding: 0;
    }


    /* ----- service -----*/
    #service .service > div, .service .intro .button a {
        padding: 2rem 1.5rem 4rem;
    }

    #service .text > div {
        padding: 0;
    }

    #service .lead span {
        font-size: 1.7rem;
    }


    /* ----- about -----*/
    #about {
        padding: 3rem 1.5rem;
    }

    #about ul {
        display: block;
    }

    #about li {
        width: 100%;
        aspect-ratio: auto;
        margin-top: 1rem;
    }

    
    /* ----- ----- page ----- ----- */
    /* ----- service ----- */
    .service .section-title2 {
        font-size: 1.5rem;
    }

    .service .section-title2::before {
        content: '';
        background-image: url(../images/common/h3_icon1.svg);
        background-size: cover;
        background-position: center;
        width: 24px;
        height: 24px;
        display: inline-block;
        margin-right: 12px;
        position: relative;
        top: 3px;
    }

    .plan-list .mid {
        padding: 20px 2rem 4rem;
    }

    .contact-box .inner {
        padding: 1rem 1rem 2rem;
    }

    .contact-box h2 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .contact-box a {
        font-size: 1.5rem;
    }

    .contact-box svg {
        height: 17px;
        top: 0px;
    }


    /* ----- contact ----- */
    .wpcf7-form-control-wrap input:not(.wpcf7-radio input), .wpcf7-form-control-wrap textarea {
        width: 100%;
    }
    
    
}