@charset "utf-8";

body {
    line-height: 1.7;
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-style: normal;
    font-size: clamp(16px,1.1vw,18px);
    color: #333;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
}


.english {
    font-family: "open-sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.light-blue-txt {
  color: #8fcbeb;
}
.orange-txt {
  color: #ff7f3e;
}

.nowrap {
  white-space: nowrap;
}




/* 共通ボタン */
a.arrow-btn {
  position: relative;
  display: inline-block;
  padding: 1rem 4.5rem;
  border: 2px solid;
  transition: all 0.3s;
  color: #333;
  z-index: 1;
  overflow: hidden;
}

a.arrow-btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -25px;
  bottom: -25px;
  width: 50px;
  height: 50px;
  /* background-image: linear-gradient(120deg, #ffde85 10%, #f3ae5c 100%); */
  transform: rotate(-45deg);
  transition: all 0.3s;
  background-color: #8fcbeb;
}

a.arrow-btn .arrow {
  color: #333;
  position: absolute;
  bottom: 10px;
  right: 6px;
  margin-left: 2px;
  margin-top: 10px;
  width: 15px;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s;
}

a.arrow-btn .arrow:before {
  content: '';
  position: absolute;
  right: 1px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
}

a.arrow-btn:hover {
  border-color: #fff;
  padding: 1rem 4rem 1rem 5rem;
  background-color: #8fcbeb;
  color: #fff;
}

a.arrow-btn:hover:before {
  right: -80px;
}

a.arrow-btn:hover .arrow {
  right: -20px;
}


/* ======================================
ヘッダー
========================================*/

.header-pc {
    position: fixed;
    width: 100%;
    padding: .4em 1em;
    z-index: 9999;
}

/* .top-page .header-pc {
    opacity: 0;
    animation: mv-appear .8s 1.5s forwards;
} */

.header-pc .header-logo a img {
    width: 210px;
    filter: drop-shadow(0px 0px 3px #000);
}

.header-pc .header-pc-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-pc .header-menu {
    display: flex;
    gap: .5em;
}

.header-pc .header-menu>ul {
    display: flex;
    background-color: #fff;
    border-radius: 100px;
    box-shadow: 0px 0px 12.6px 2.4px rgba(150,162,175,0.5);
    padding: .8em 3em;
    gap: 4em;
}

/* ヘッダー問い合わせボタン */
a.header-contact {
    color: #fff;
    background-color: #eb6100;
    box-shadow: 0px 0px 12.6px 2.4px rgba(150,162,175,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .8rem 2.5rem .8rem 3rem;
    border-radius: 100vh;
    gap: 0.5em;
    transition: .2s;
}

a.header-contact::before {
    content: "";
    background-image: url(../img/contact-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 1.5em;
    height: 1em;
}

a.header-contact:hover {
    color: #fff;
    background: #ff8b38;
}

/* --------------------------
グローバルメニュー　ホバーメニュー
-----------------------------*/
.header-pc .header-menu>li::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    border-radius: 100px;
    background-color: #4335a7;
    opacity: 0;
    transition: all .2s;
}

.header-pc .header-menu>li:hover::after {
    opacity: 1;
}


/* カレント表示
.header-pc .header-menu>li::after {
    opacity: 1 !important;
} */



.header-menu>li {
    position: relative;
    transition: all .3s;
}

.submenu-web-site,.submenu-printed {
    width: 210px;
    position: absolute;
    top: 38px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;/* 非表示に設定 */
    z-index: 9999;
    border-radius: 10px;
    box-shadow: rgb(211 221 231 / 50%) 0px 0px 6px 3px;
    padding: .7em 0;
}

.submenu-web-site>li:not(:first-child)::before,.submenu-printed>li:not(:first-child)::before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
}

.submenu-web-site>li,.submenu-printed>li {
    transition: all 0.2s;
}

.submenu-web-site>li a,.submenu-printed>li a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    text-decoration: none;
    position: relative;
    text-align: center;
    padding: .7em 0;
    font-size: 16px;
    transition: all 0.2s;
}

.submenu-web-site>li:hover a,.submenu-printed>li:hover a {
    color: #8fcbeb;
}

/* ドロップダウン WEBサイト制作 */
.has-submenu:hover .submenu-web-site {
    opacity: 1;
    visibility: visible;/* 表示に設定 */
}

/* ドロップダウン 印刷物制作 */
.has-submenu:hover .submenu-printed {
    opacity: 1;
    visibility: visible;/* 表示に設定 */
}

/* spメニュー */
.header-sp {
    display: none;
}


/* ======================================
フッター
========================================*/

footer {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    padding: 4em 20px 20px;
}

footer .f_content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 78px;
    gap: 4em;
    justify-content: center;
}

footer .f_content .col_left {
    padding-right: 20px;
    width: 50%;
}
footer .f_content .col_right {
    gap: 4em;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

footer .f_logo {
  margin-bottom: 28px;
}

footer .f_logo figure a img {
  width: 300px;
}

footer .f_logo figure {
  margin-right: 30px;
}

footer .f_logo span {
  font-size: 20px;
}

footer .f_add {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
  max-width: 940px;
  margin: 0 -20px;
}

footer .f_add .add_block {
  width: 44%;
  margin: 0 20px;
}

footer .f_add .add_block .ttl {
  font-size: clamp(18px,2vw,20px);
  font-weight: 900;
  margin-bottom: .4em;
}

footer .f_add .add_block .txt {
  line-height: 1.6;
  margin-bottom: 14px;
  min-height: 88px;
}

footer .f_add .add_block iframe {
  width: 100%;
  height: 200px;
}

footer .f_menu>li {
padding-bottom: 1.4em;
}

footer .f_menu li a {
  /* font-size: 16px; */
  line-height: 1.6;
  display: block;
  transition: all 0.3s ease;
  /* font-size: 0.6888888888vw; */
  margin-bottom: .2em;
}

footer .f_menu li a:hover {
  color: #80c4e9;
}

footer .f_menu .has_sub {
  border-bottom: 1px solid #222c2e;
}

footer .f_menu .has_sub>p>a {
  padding: 19px 0 18px;
  border-bottom: 1px solid #222c2e;
  position: relative;
}

footer .f_menu .f_sub_menu {
  padding-left: .5em;
}

footer .f_menu .sub_menu li a {
  font-weight: 400;
  line-height: 1.9;
}

footer .f_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .f-copyrights p {
  text-align: center;
    font-weight: 100;
}




/* ======================================
トップ
========================================*/

/* --------------------------
MV
-----------------------------*/
.top-mv {
    height: 100vh;
    position: relative;
}

.top-mv::before {
    height: 100%;
    width: 40vw;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    background-color: #333;
    background-image: url(../img/pascal-mark-white.svg);
    background-repeat: no-repeat;
    background-position: -15% -80px;
    background-size: 56%;
    z-index: 99;

    /* opacity: 0;
    animation: clip-fv .8s .8s forwards; */
}

.top-mv .top-mv-ttl {
    position: absolute;
    top: 30%;
    left: 10%;
    z-index: 1000;
    /* animation: mv-appear .8s 2.2s forwards;
    opacity: 0;
    transform: translateY(3rem); */
}

.top-mv .top-mv-ttl p {
    line-height: 1.5;
    font-size: clamp(20px,4vw,80px);
    color: #fff;
    font-weight: 900;
}

.top-mv video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    /* animation: mv-appear .8s 1.5s forwards;
    opacity: 0; */

}

.top-mv .video-wrap {
position: relative;
width: 100%;
height: 100%;
}

/* .top-mv .video-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.2;
  background:
    radial-gradient(#0000002b 1px, transparent 1px),
    radial-gradient(#0000002b 1px, transparent 1px);
  background-size: 5px 5px;
  opacity: 0;
  animation: mv-appear .8s 1.5s forwards;
} */

@keyframes mv-appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes clip-fv {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

/* --------------------------
about
-----------------------------*/

#top-about {
    margin-top: -170px;
    position: relative;
    z-index: 100;

    /* opacity: 0;
    transition: opacity .8s ease-in-out, transform .8s ease-in-out;
    transform: translateY(30px); */
}

#top-about.is-visible {
  margin-top: -170px;
    /* opacity: 1;
    transform: translateY(0); */
}

.top-about-box {
    max-width: 1200px;
    background-color: #4335a7;
    color: #fff;
    padding: 4em;
    border-radius: 0 50px 0 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: auto;
    background-image: url(../img/pascal-mark-white.svg);
    background-repeat: no-repeat;
    background-position: 104% 125%;
    background-size: 20%;
}

.top-about-box > h3 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: .5;
    font-size: clamp(30px,4vw,85px);
    line-height: 0.6;
}

.top-about-box .content h4 {
    text-align: center;
    font-size: clamp(20px,3vw,30px);
    margin-bottom: .4em;
}

/* --------------------------
サービス
-----------------------------*/

.top-service-item {
    display: flex;
    gap: 0.5em;
    justify-content: space-between;
    margin-top: 150px;
}

.top-service-item-printed {
    flex-direction: row-reverse;
}

.top-service-item .txt-box h3 {
    font-size: clamp(20px,5vw,80px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: .8rem;
}


.top-service-item-printed .txt-box h3 {
  letter-spacing: .1em;
}

.top-service-item .txt-box {
    width: 49%;
    display: flex;
    justify-content: flex-end;
}

.top-service-item-printed .txt-box {
    justify-content: flex-start;
}

.top-service-item .txt-box .txt-box-inner {
    width: 590px;
    margin-top: 6em;
}

.top-service-item-printed .txt-box .txt-box-inner {
    margin-left: 2em;
}

.top-service-item .img-box {
    width: 49%;
    height: 740px;
}

.top-service-item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px 0 0 50px;
}

.top-service-item .txt-box .english {
    margin-bottom: 1em;
}

.top-service-item-web .txt-box .english {
    color: #8fcbeb;
}

.top-service-item-printed .txt-box .english {
    color: #ff7f3e;
}

.top-service-item .txt-box .txt {
    margin-bottom: 1.5em;
}

.top-service-item-printed .img-box img {
    border-radius: 0 50px 50px 0;
}

.initial-color-blue {
  color: #8fcbeb;
}

.initial-color-orange {
  color: #ff7f3e;
}

/* サービスボタン */
a.arrow-btn-top-web {
  color: #333;
}
a.arrow-btn-top-web:before {
  background-color: #8fcbeb;
}
a.arrow-btn-top-web .arrow {
  color: #333;
  background-color: #fff;
}
a.arrow-btn-top-web .arrow:before {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
a.arrow-btn-top-web:hover {
  border-color: #fff;
  background-color: #8fcbeb;
  color: #fff;
}

a.arrow-btn-top-printed {
  color: #333;
}
a.arrow-btn-top-printed:before {
  background-color: #ff7f3e;
}
a.arrow-btn-top-printed .arrow {
  color: #333;
  background-color: #fff;
}
a.arrow-btn-top-printed .arrow:before {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
a.arrow-btn-top-printed:hover {
  border-color: #fff;
  background-color: #ff7f3e;
  color: #fff;
}



/* ======================================
お問合せ　共通
========================================*/

#contact {
    background-color: #4335a7;
    color: #fff;
    padding: 4em;
    margin-top: 150px;
}

#contact .contact-inner {
    display:flex;
    gap: 4em;
    max-width: 1200px;
    margin: 0 auto 2em;
}

#contact .contact-ttl h3 {
    font-size: clamp(20px,4vw,60px);
    line-height: 1;
    margin-bottom: .2em;
}

/* ボタン */
a.arrow-btn-contact {
  color: #fff;
  background-color: #ff7f3e;
  border-color: #ff7f3e;
  padding: 1rem 3.5rem 1rem 5.5rem;
  position: relative;
  transform: translateX(-50%);
  left: 50%;
}
a.arrow-btn-contact:before {
  background-color: #fff;
}
a.arrow-btn-contact .arrow {
  color: #333;
  background-color: #ff7f3e;
}
a.arrow-btn-contact .arrow:before {
  border-top: solid 2px #ff7f3e;
  border-right: solid 2px #ff7f3e;
}
a.arrow-btn-contact:hover {
  border-color: #fff;
  background-color: #fff;
  color: #ff7f3e;
  padding: 1rem 3rem 1rem 6rem;
}

.arrow-btn-contact .contact-btn-icon {
    position: relative;
}

.arrow-btn-contact .contact-btn-icon::before {
    content: url(../img/contact-icon.svg);
    width: 2em;
    aspect-ratio: 41/30;
    display: inline-block;
    position: absolute;
    left: -2.5em;
    top: 0;
}

.arrow-btn-contact:hover .contact-btn-icon::before {
    content: url(../img/contact-icon-hover.svg);
}


/* ======================================
下層ページMV
========================================*/

#common-mv .common-mv-inner {
  position: relative;
}

#common-mv .common-mv-inner img {
  width: 100%;
  aspect-ratio: 1920/395;
  object-fit: cover;
}

#common-mv .common-mv-inner .mv-ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: clamp(20px,3vw,55px);
  font-weight: 900;
  text-align: center;
}


.printed-material-design-mv .mv-ttl p {
  color: #333;
  text-shadow: 0px 0px 8px #ffffff;
  letter-spacing: .1em;
}

/* ======================================
WEBサイト制作ページ、印刷物制作ページ
========================================*/

/* --------------------------
前置き文-共通
-----------------------------*/
#searvice-introduction-sentence {
padding: 6em 15px;
}

#searvice-introduction-sentence .searvice-introduction-sentence-inner {
  max-width: 1200px;
  margin: auto;
}

.searvice-introduction-sentence-inner .ttl {
  margin-bottom: .7em;
}

.searvice-introduction-sentence-inner .ttl h3 {
  font-size: clamp(18px,2vw,32px);
  position: relative;
  display: inline-block;
  padding-right: .5em;
}

.searvice-introduction-sentence-inner .ttl h3::after {
  content: "";
  height: 2px;
  width: 4em;
  background-color: #333;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.searvice-introduction-sentence-inner .txt {
  max-width: 1000px;
  margin: auto;
}

/* --------------------------
サービス前置きボックス-共通
-----------------------------*/
.servive-intro-box {
  display: flex;
}

.servive-intro-box-reverse {
  flex-direction: row-reverse;
}

.servive-intro-box .servive-intro-txt-box {
  background-color: #4335a7;
  color: #fff;
  width: 50%;
  padding: 10%;
  background-image: url(../img/pascal-mark-white.svg);
    background-position: -10% -30%;
    background-repeat: no-repeat;
    background-size: 38%;
}

.servive-intro-box .servive-intro-txt-box .ttl {
  margin-bottom: .7em;
}

.servive-intro-box .servive-intro-txt-box .ttl h3 {
  font-size: clamp(18px,2vw,32px);
}

.servive-intro-box .servive-intro-img-box {
  width: 50%;
  aspect-ratio: 960 / 620
}

.servive-intro-box .servive-intro-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* --------------------------
WEBサイト制作サービスプラン
-----------------------------*/
#web-plan .plan-list {
  background-color: #f4f6fc;
  max-width: 1400px;
  padding: 4em;
  display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .7em;
    margin: 5em auto 15em;
    position: relative;
}

#web-plan .plan-list::before {
  content: "";
  background-color: #4335a7;
  width: 100%;
  position: absolute;
  right: -4em;
  bottom: -4em;
  z-index: -1;
  height: 100%;
}

#web-plan .plan-list .plan-item {
  border: 3px #80C4E9 solid;
  border-radius: 26px;
  background-color: #FFF;
  width: 30%;
  padding: 0 1em 1em 1em;
}

#web-plan .plan-list .plan-item .plan-num {
  background-color: #80C4E9;
    color: #fff;
    display: inline-block;
    text-align: center;
    position: relative;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 .5em;
}

#web-plan .plan-list .plan-item .ttl-and-price {
  font-size: clamp(18px,2vw,28px);
  padding: .8em 0;
  border-bottom: 3px #80C4E9 solid;
  text-align: center;
  white-space: nowrap;
}

#web-plan .plan-list .plan-item .ttl-and-price p .small {
  font-size: clamp(15px,2vw,22px);
}

#web-plan .plan-list .plan-item .plan-details {
  padding: 1.3em .5em;
}


/* --------------------------
制作の流れ-共通
-----------------------------*/
.flow-list {
  max-width: 1400px;
  margin: 5em auto 15em;
  position: relative;
}

#web-flow .flow-list {
  background-color: #F4F6FC;
}
#printed-flow .flow-list {
  background-color: #f9f8f5;
}

.flow-list::before {
  content: "";
  background-color: #4335a7;
  width: 100%;
  position: absolute;
  left: -4em;
  bottom: -4em;
  z-index: -1;
  height: 100%;
}

.flow-list-inner {
    max-width: 1200px;
    margin: 0 auto 80px;
    counter-reset: number 0;
    padding: 4em 3.5em;
}

.flow_listItem {
    position: relative;
    z-index: 10;
    justify-content: center;
    align-items: flex-start;
    display: flex;
    margin-bottom: 3em;
}

.flow_listItem:nth-last-of-type(n+2)::before {
    content: "";
    position: absolute;
    left: 50px;
    z-index: 1;
    display: block;
    width: 0;
    height: calc(100% - 78px - 20px);
    border-right: 2px solid #333;
    top: 140px;
}

.flow_listItem .step {
    position: relative;
    z-index: 10;
    margin-right: 20px;
    padding-top: 5px;
}

.flow_listItem .step::before {
    counter-increment: number 1;
    content: "STEP " counter(number, decimal-leading-zero);
    display: block;
    font-size: clamp(10px, 1vw, 12px);
    font-weight: 700;
    text-align: center;
}

#web-flow .flow_listItem .step::before {
  color: #80C4E9;
}
#printed-flow .flow_listItem .step::before {
  color: #ff7f3e;
}

.flow_listItem .step .ic {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

#web-flow .flow_listItem .step .ic img, #printed-flow .flow_listItem .step .ic img {
    width: 70%;
    height: auto;
}
#web-flow .flow_listItem-step1 .step .ic img {
    width: 60%;
}

#web-flow .flow_listItem .step .ic {
  background-color: #80C4E9;
}
#printed-flow .flow_listItem .step .ic {
  background-color: #ff7f3e;
}

.flow_listItem_content {
    width: calc(100% - 78px);
}

.flow_listItem_content .ttl {
    margin-bottom: 10px;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
}

.flow_listItem_content .txtBox {
    padding: 1em 1.2em;
    background: #ffffff;
}

.flow-small-note {
  font-size: clamp(11px,2vw,14px);
}


/* --------------------------
下層ページタイトル-共通
-----------------------------*/
.common-ttl h3 {
  font-size: clamp(22px,3vw,40px);
}

.common-ttl {
  position: relative;
  padding-left: 3em;
  margin-bottom: 2em;
}

.common-ttl::before {
  content: "";
    width: 2.3em;
    height: 1px;
    background: #000;
    position: absolute;
    top: 35%;
    left: 0;
    margin: auto;
}


/* ======================================
制作実績
========================================*/
#web-works-main, #printed-works-main,
#web-samples-main, #printed-samples-main {
  margin-bottom: 150px;
}

#web-works-main .works-main-inner, #printed-works-main .works-main-inner,
#web-samples-main .samples-main-inner, #printed-samples-main .samples-main-inner {
  max-width: 1200px;
  margin: auto;
}

.works-list {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  flex-wrap: wrap;
}

.works-list .works-list-item {
  border: 1px #ccc solid;
  width: 30%;
  margin-bottom: 2em;
}

.works-list .works-list-item .img-box {
  width: 100%;
  aspect-ratio: 380/230;
}

.works-list .works-list-item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.works-list .works-list-item .txt-box {
  text-align: center;
    padding: .8em;
    border-top: 1px #ccc solid;
}

.works-list .works-list-item .txt-box h4 {
  font-size: clamp(18px,3vw,24px);
}

.works-list .works-list-item .txt-box p {
  font-size: clamp(14px,2vw,16px);
}

#web-works-main .works-main-inner .arrow-btn, #printed-works-main .works-main-inner .arrow-btn,
#web-samples-main .samples-main-inner .arrow-btn, #printed-samples-main .samples-main-inner .arrow-btn {
  position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 3em;
}


/* ======================================
実績一覧ページ
========================================*/

.work-list-mv-ttl {
  line-height: 1.3;
}

.work-list-mv-ttl .small {
  font-size: clamp(18px,2vw,32px);
  margin-bottom: .3em;
}

#web-works, #printed-works, #web-samples, #printed-samples {
    margin: 150px 0 80px;
}

#web-works .works-main-inner, #printed-works .works-main-inner, #web-samples .samples-main-inner, #printed-samples .samples-main-inner {
    max-width: 1200px;
    margin: auto;
}

.work-list-ttl h3 {
  font-size: clamp(18px,2vw,32px);
  position: relative;
  margin-bottom: .8em;
}

.work-list-ttl h3::after {
  position: absolute;
    content: "";
    width: 4em;
    height: 2px;
    background-color: #333;
    margin-left: 15px;
    top: calc(50% - 1px);
}

.work-list-sentence {
  max-width: 1000px;
    margin: auto;
    margin-bottom: 4em;
}

/* --------------------------
ページネーション
-----------------------------*/

#pagination {
  margin-top: 3em;
}

#pagination .pagination {
  display: flex;
  justify-content: center;
  color: #4335a7;
}

#pagination .pagination .page-numbers,
#pagination .pagination span {
  width: 1.8em;
    height: 1.8em;
    text-align: center;
    line-height: 1.6;
    border: solid 2px #4335a7;
    margin-left: .8em;
    display: inline-block;
}

#pagination .pagination .current {
      background-color: #4335a7;
    width: 1.8em;
    height: 1.8em;
    text-align: center;
    line-height: 1.6;
    margin-left: .8em;
    color: #fff;
}

#pagination .pagination a:first-child {
  margin-right: 1em;
  border:none;
  width: auto;
  height: auto;
}
#pagination .pagination a:last-child {
  margin-left: 1em;
  border:none;
  width: auto;
  height: auto;
}

#pagination .pagination .dots {
  border: none;
    width: auto;
}



/* ======================================
実績詳細ページ
========================================*/
.works-detail {
  max-width: 1200px;
  margin: auto;
  box-shadow: 0 0 5px #b0b0b0;
  margin-top: 5em;
  padding: 3em;
}

.works-detail .img-box {
  display: flex;
  justify-content: center;
  gap: 4em;
}
.works-detail .img-pc {
width: 65%;
  aspect-ratio: 700 / 800;
}
.works-detail .img-sp {
width: 25%;
  aspect-ratio: 300 / 800;
}

.works-detail .img-pc, .works-detail .img-sp {
  box-shadow: 0 0 5px #ccc;
}

.works-detail .img-pc img, .works-detail .img-sp img {
  width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.works-detail h3 {
  font-size: clamp(18px,2vw,32px);
  margin-bottom: .9em;
    font-weight: bolder;
}

.works-detail .txt-box {
  margin-bottom: 3em;
}

.works-detail .txt-box .txt-box-item {
  margin-bottom: 1em;
  display: flex;
  gap: 1em;
}

.works-detail .txt-box .txt-box-item.url a {
  text-decoration: underline;
}

.works-detail .txt-box .txt-box-item .ttl {
  font-weight: bold;
  width: 15%;
}

.works-detail .txt-box .txt-box-item .content {
    font-weight: lighter;
    width: 80%;
}

.works-detail .detail-categories {
  margin-bottom: 2em;
  color: #4335a7;
}

#website-works-detail .arrow-btn {
  position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 3em;
}

/* 印刷物 */
.works-detail .img-print {
  box-shadow: 0 0 5px #ccc;
  width: 45%;
}

.works-detail .img-print img {
  width: 100%;
}

.detail-mockup {
  margin-top: 5em;
}

.detail-mockup img {
  margin: auto;
  display: block;
}



/* ======================================
レスポンシブ
========================================*/

@media only screen and (max-width:1670px) {
  footer .f_content .col_left {
    width: 60%;
  }
}