@charset "utf-8";
/*
theme Name: marushin
Description: 株式会社マルシンのテーマです
version： 1.0
*/

/*----------------------------------------
	all
----------------------------------------*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ ゴシック', sans-serif;
    font-size: 62.5%;
    color: #333;
    -webkit-text-size-adjust: 100%;
    line-height: 1;
    font-weight: 400;
    scroll-behavior: smooth;
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 1.8rem;
}

a {
    text-decoration: none;
    color: #333;
}

img {
    vertical-align: bottom;
    height: auto;
}

ul {
    list-style-type: none;
}

#container {
    overflow: hidden;
}

.bold {
    font-weight: bold;
}


@media screen and (max-width:768px) {
    body {
        font-size: 1.6rem;
    }
}

/*----------------------------------------
	common
----------------------------------------*/

.c-inner {
    width: 100%;
    padding: 0 10%;
}

.c-inner02 {
    width: 1300px;
    margin: auto;
}

.c-inner03 {
    width: 1000px;
    margin: auto;
}

.c-text {
    font-size: 1.8rem;
    line-height: 1.75;
}

.c-button {
    text-align: center;
    display: block;
    width: 260px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    background-color: #2067A5;
    color: #fff;
    transition: all 0.3s;
    position: relative;
    font-weight: bold;
    transition: all 0.4s;
    margin: 0 auto;
}

.c-button:after {
    content: "";
    display: inline-block;
    width: 260px;
    height: 60px;
    background-repeat: no-repeat;
    position: absolute;
    transition: all 0.4s;
    border-right: 2px solid #2067A5;
    border-bottom: 2px solid #2067A5;
    bottom: -7px;
    right: -7px
}

.color {
    color: #006FB9;
}

.op {
    transition: .3s;
}

.op:hover {
    opacity: 0.7;
}

.lookforward-close-btn {
    display: none;
}

#body:not(.home) #container {
    opacity: 0;
}

body:not(.home).appear #container {
    animation-name: PageAnime-content;
    animation-duration: 0.55s;
    animation-delay: 0.55s;
    animation-fill-mode: forwards;
    opacity: 0;
    pointer-events: auto;
}

.animation:not(.home) #container {
    opacity: 1;
    pointer-events: auto;
}

.move:not(.home) .animation-bg {
    background: #2067A5;
    display: block;
    content: "";
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes PageAnime-content {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.ltr:not(.home) .animation-bg {
    animation-name: PageAnime-ltr;
}

@keyframes PageAnime-ltr {
    0% {
        transform-origin: left;
        transform: scaleX(0);
    }

    50% {
        transform-origin: left;
        transform: scaleX(1);
    }

    50.001% {
        transform-origin: right;
    }

    100% {
        transform-origin: right;
        transform: scaleX(0);
    }
}

@media screen and (min-width:821px) {
    .c-button:hover {
        transform: translate(4px, 4px);
    }
}

@media screen and (max-width:1500px) {
    .c-inner {
        width: 100%;
        padding: 0 5.5%;
    }

    .c-inner02 {
        width: 100%;
        padding: 0 5%;
    }
}

@media screen and (max-width:1300px) {
    .c-inner {
        width: 100%;
        padding: 0 4.5%;
    }

    .c-inner02 {
        width: 100%;
        padding: 0 4%;
    }
}

@media screen and (max-width:1000px) {
    .c-inner03 {
        width: 800px;
        margin: auto;
    }
}

@media screen and (max-width:820px) {
    .c-text {
        font-size: 1.4rem;
    }

    .c-button {
        width: 200px;
        height: 45px;
        font-size: 1.2rem;
    }

    .c-button:after {
        width: 200px;
        height: 45px;
        bottom: -6px;
        right: -6px;
    }

    .c-inner {
        width: 100%;
        padding: 0 3.5%;
    }

    .c-inner02 {
        width: 100%;
        padding: 0 3.5%;
    }

    .c-inner {
        width: 100%;
        padding: 0 3.5%;
    }

    .c-inner03 {
        width: 100%;
        padding: 0 3.4%;
    }
}

/*----------------------------------------
	animation
----------------------------------------*/

.appear_mv {
    transform-origin: center top;
    animation: show 1s both;
}

span.appear_mv {
    display: inline-block;
}

.d1 {
    animation-delay: 0.5s;
}

.d2 {
    animation-delay: 1s;
}

.d3 {
    animation-delay: 1.5s;
}

.d4 {
    animation-delay: 2s;
}

.d5 {
    animation-delay: 2.5s;
}

.d6 {
    animation-delay: 3s;
}

.d8 {
    animation-delay: 3.5s;
}

.d10 {
    animation-delay: 10s;
}

.d12 {
    animation-delay: 12s;
}

@keyframes show {
    0% {
        transform: translate(0, 2em);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
    transition: 0.5s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
}

.scroll_up.on {
    transform: translateY(0);
    opacity: 1.0;
}

.scroll_up__mv {
    transition: 0.8s ease-in-out;
    transform: translate(-50%, -35%);
    opacity: 0;
}

.scroll_up__mv.on {
    transform: translate(-50%, -50%);
    opacity: 1.0;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

.timing02 {
    transition-delay: .2s;
}

.timing03 {
    transition-delay: .4s;
}

.timing04 {
    transition-delay: .6s;
}

.timing05 {
    transition-delay: .8s;
}

.timing06 {
    transition-delay: 1s;
}

.timing07 {
    transition-delay: 1.2s;
}

.timing08 {
    transition-delay: 1.4s;
}

/*----------------------------------------
	l-header
----------------------------------------*/

.l-header {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.4s ease;
    background-color: #fff;
}

/*.l-header.change-color {
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}

.l-header.change-color02 {
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}*/

.l-header__inner {
    width: 100%;
    height: 100%;
    padding: 0 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9999;
}


.l-header__gnavForm {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 170px;
    height: 170px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    background-color: #2067A5;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0px 0px 0px 10px;
    cursor: pointer;
    transition: .3s;
}

.l-header__gnavForm:hover {
    background-color: #66C2C4;
}

.l-header__gnavIcon {
    margin: 0 0 25px;
}

.l-header__gnavTel {
    font-size: 2.4rem;
    letter-spacing: 0.08em;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #2067A5;
}

.l-header__gnavTime {
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    color: #000000;
    display: block;
    text-align: center;
    margin: 8px 0 0;
    font-weight: normal;
}

.l-header__gnav {
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0 220px 0 0;
}

.l-header__gnavLists {
    display: flex;
    align-items: center;
}

.l-header__gnavList {
    height: 100%;
}

.l-header__gnavList a {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    transition: .3s;
}

.l-header__gnavList a:hover {
    color: #2067A5;
}

.l-header__gnavList:not(:last-child) {
    margin: 0 43px 0 0;
}

.input-hidden {
    display: none;
}

.hamburger-demo-cover {
    display: none;
}

.l-header__gnavList.l-header__gnavContact > a span:before {
    content: "";
    display: inline-block;
    background-image: url(images/header_contact_icon.svg);
    width: 26px;
    height: 19px;
    vertical-align: middle;
    margin: 0 0 9px 0;
}

.logo a {
    display: block;
}

.l-header__gnavSp {
    display: none;
}

@media screen and (max-width:1600px) {
    .l-header__gnavList:not(:last-child) {
        margin: 0px 20px 0 0;
    }

    .l-header__gnavList.l-header__gnavContact > a {
        width: 160px;
    }

    .l-header__gnavList a {
        font-size: 1vw;
    }

    .logo img {
        width: 100%;
    }
}

@media screen and (max-width:1200px) {
    .l-header__inner {
        padding: 0 0 0 35px;
    }

    .logo a {
        width: 200px;
    }

    .l-header__gnav {
        margin: 0 200px 0 0;
    }
}

@media screen and (min-width:1025px) and ( max-width:1400px) {
	.l-header__gnavForm {
		font-size: 1.3rem;
		width: 145px;
		height: 145px;
	}
	
	.logo a {
		width: 150px;
	}
	
	.l-header__gnavTel {
		font-size: 1.8rem;
	}
	
	.l-header__gnav {
	   margin: 0 170px 0 0;
	}
}

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

    .l-header {
        height: 70px;
    }

    .l-header__inner {
        padding: 0 0 0 35px;
    }

    .l-header__gnavLists {
        flex-direction: column;
    }

    .l-header__gnavList {
        width: 100%;
        height: auto;
    }

    .l-header__gnavList_en {
        font-size: 2rem;
        color: #006FB9;
        margin: 0 0 7px 0;
    }

    .l-header__gnavList_jp {
        font-size: 1.8rem;
    }

    .l-header__gnavList:not(:last-child) {
        margin: 0;
    }

    .l-header__gnavLists li > a {
        display: flex;
        flex-direction: column;
    }

    .l-header__gnavList a {
        font-size: 1.7rem;
    }

    .l-header__gnavLists li.has-child > a {
        position: relative;
    }

    .l-header__gnavLists li.has-child > a:after {
        content: '';
        position: absolute;
        right: 40px;
        width: 12px;
        height: 12px;
        border-top: 2px solid #222;
        border-right: 2px solid #222;
        transform: rotate(135deg) translateY(-50%);
    }

    .l-header__gnavLists li.has-child.active > a:after {
        transform: rotate(-45deg);
    }

    nav ul li a {
        padding: 10px 20px;
        border-bottom: 1px dashed #ccc;
    }

    .nav ul li:last-child a {
        border-bottom: none;
    }

    nav ul li:first-child a {
        border-top: 1px dashed #ccc;
    }

    nav ul li li a {
        padding: 0;
    }

    .input-hidden {
        display: none;
    }

    .hamburger-demo-switch {
        cursor: pointer;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9999;
        width: 70px;
        height: 70px;
        background-color: #006FB9;
    }

    .hamburger-switch-line1,
    .hamburger-switch-line1-before,
    .hamburger-switch-line1-after {
        width: 25px;
        height: 3px;
        background: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transition: .3s;
        border-radius: 100px;
        content: "";
    }

    .hamburger-switch-line1 {
        transform: translate(-50%, -50%);
    }

    .hamburger-switch-line1-before {
        transform: translate(-50%, -300%);
    }

    .hamburger-switch-line1-after {
        transform: translate(-50%, 200%);
    }

    #hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1 {
        width: 0;
    }

    #hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1-before {
        background-color: #fff;
        transform: rotate(45deg) translate(-40%, 325%);
    }

    #hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1-after {
        background-color: #fff;
        transform: rotate(-45deg) translate(-40%, -325%);
    }

    .l-header__gnav {
        position: fixed;
        height: 100vh;
        background: #fafafa;
        padding: 5em 3% 2em;
        z-index: 9998;
        transition: .3s;
        overflow-y: scroll;
        justify-content: flex-start;
        align-items: center;
        top: 0;
        left: 100%;
        width: 80%;
    }

    .l-header__gnavLists {
        width: 100%;
        margin-right: 3%;
        padding-left: 5% !important;
        list-style: none;
        margin-bottom: 40px;
    }

    .l-header__gnavLists li a {
        text-decoration: none;
        color: #006FB9;
        padding: 1.6em 0;
    }

    #hamburger-demo1:checked ~ .l-header__gnav {
        left: 20%;
    }

    #hamburger-demo1:checked ~ .hamburger-demo-cover {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        z-index: 9997;
        background: rgba(3, 3, 3, .5);
        display: block;
    }

    .l-header__gnavList > a {
        height: auto;
    }

    .l-header__gnavLists li a {
        padding: 1.5em 0;
    }

    .logo a {
        width: 185px;
    }

    .l-header__gnavWrap {
        display: flex;
        align-items: center;
    }

    .l-header__gnavWrap {
        width: 90%;
        margin: 0 auto;
        justify-content: center;
    }

    .l-header__gnav {
        flex-direction: column;
    }

    .l-header__gnavTel {
        margin: 30px 0 0;
    }

    .l-header__gnavForm {
        position: unset;
        border-radius: 8px;
        width: 80%;
        height: auto;
        padding: 20px;
    }

    .l-header__gnavIcon {
        margin: 0 0 15px;
    }
}

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

    #l-header {
        height: 55px;
    }

    .hamburger-demo-switch {
        width: 55px;
        height: 55px;
    }

    .l-header__gnav {
        padding: 4em 3% 2em;
    }

    .l-header__gnavList a {
        font-size: 1.5rem;
    }

    .l-header__inner {
        padding: 0 15px;
    }

    .l-header__gnavList {
        width: 100%;
    }

    .l-header__gnavList_jp {
        font-size: 1.5rem;
    }

    .l-header__gnavLists li.has-child > a:after {
        right: 8px;
        width: 8px;
        height: 8px;
    }

    .logo a {
        width: 154px;
    }

    .l-header__gnavLists li a {
        padding: 0.9em 0;
    }

    .l-header__gnavArea,
    .l-header__gnavTime {
        font-size: 1rem;
    }

    .l-header__gnavWrap {
        flex-direction: column;
    }
}

/*----------------------------------------
	footer
----------------------------------------*/

.l-footer {
    padding: 90px 0 20px;
    background-color: #2067A5;
    position: relative;
}

.l-footer:before {
    content: "";
    display: block;
    width: 100%;
    height: 90px;
    background-color: #2067A5;
    position: absolute;
    top: -90px;
}

.l-footer__serviceLists {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 85px;
}

.l-footer__serviceList:not(:nth-child(4n+4)) {
    margin-right: 1.7%;
}

.l-footer__serviceList:nth-child(-n+3) {
    margin-bottom: 30px;
}

.l-footer__serviceList {
    width: 23.6%;
    height: 55px;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.l-footer__serviceList a {
    display: block;
    color: #fff;
}

.l-footer__inner {
    margin: 0 auto;
    padding: 0 0 102px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.l-footer__right {
    display: flex;
    align-items: flex-start;
}

.l-footer__copyright {
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.13em;
    padding: 13px 0 12px;
    text-align: center;
}

.l-footer__logo {
    margin: 0 auto 58px;
    display: block;
}

.l-footer__navLists {
    display: flex;
    align-items: center;
}

.l-footer__navList:not(:last-child) {
    margin: 0 59px 0 0;
}

.l-footer__navList a {
    display: flex;
    align-items: center;
    letter-spacing: 0.08em;
    font-weight: bold;
    transition: .3s;
    color: #fff;
}

.l-footer__info {
    letter-spacing: 0.08em;
    color: #fff;
    line-height: 1.875;
}

.l-footer__Address {
    margin: 0 0 35px;
    color: #fff;
    line-height: 1.875;
}

@media screen and (min-width:769px) {
    .l-footer__navList a {
        font-size: 0.938vw;
    }
}

@media screen and (max-width:1400px) {
    .l-footer__navList a {
        font-size: 1.2rem;
    }

    .l-footer__logo {
        margin: 0 auto 30px;
    }

    .l-footer__navList:not(:last-child) {
        margin: 0 35px 0 0;
    }

    .l-footer__Address {
        font-size: 1.4rem;
    }
}

@media screen and (max-width:1300px) {
    .l-footer__navLists:nth-of-type(1) {
        margin-right: 35px;
    }

    .l-footer__navLists:nth-of-type(2) {
        margin-right: 35px;
    }

    .l-footer__navList a {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 1024px) {
    .l-footer {
        padding: 70px 0 0;
    }

    .l-footer__navLists:nth-of-type(1) {
        margin-right: 0;
    }

    .l-footer__navList a {
        font-size: 1rem;
    }

    .l-footer__inner {
        padding: 0px 2% 60px;
    }

    .l-footer__logo img {
        width: 100%;
    }
}

@media screen and (max-width:820px) {
    .l-footer__logo {
        width: 60%;
        margin: 0 auto 40px;
    }

    .l-footer__Address {
        text-align: center;
        margin: 0 0 15px;
    }

    .l-footer__serviceList {
        width: 49%;
        height: 45px;
        font-size: 1.4rem;
    }

    .l-footer__serviceList:not(:nth-child(4n+4)) {
        margin-right: 0;
    }

    .l-footer__serviceList:not(:nth-child(2n+2)) {
        margin-right: 2%;
    }

    .l-footer__serviceList:nth-child(-n+6) {
        margin-bottom: 10px;
    }

    .l-footer__serviceLists {
        margin: 0 0 50px;
        justify-content: flex-start;
    }

    .l-footer__navList a:after {
        content: "";
        position: absolute;
        top: 50%;
        right: 10px;
        width: 10px;
        height: 10px;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: rotate(45deg) translateY(-50%);
    }

    .l-footer__right {
        width: 100%;
    }

    .l-footer {
        padding: 55px 0 0;
    }

    .l-footer__Address {
        font-size: 1.4rem;
    }

    .l-footer__inner {
        margin: 0 auto 50px;
    }

    .l-footer__logo {
        width: 190px;
    }

    .l-footer__logo img {
        width: 100%;
    }

    .l-footer__inner {
        flex-direction: column;
    }

    .l-footer__nav {
        width: 100%;
        flex-direction: column;
    }

    .l-footer__navList a {
        width: 100%;
        font-size: 1.4rem;
        border-bottom: 1px solid rgba(250, 250, 250, 0.5);
        padding: 12px 10px;
    }

    .l-footer__copyright {
        padding: 8px 0 9px;
    }

    .l-footer__navLists {
        width: 100%;
        flex-direction: column;
    }

    .l-footer__navList {
        width: 100%;
        position: relative;
    }

    .l-footer__navLists:nth-of-type(1) {
        margin-right: 0;
    }

    .l-footer__navLists:nth-of-type(2) {
        margin-right: 0;
    }

    .l-footer__navList:not(:last-child) {
        margin: 0;
    }

    .l-footer__navLists:nth-of-type(1) .l-footer__navList:not(:last-child) {
        margin: 0;
    }

    .l-footer__navChild li:not(:last-child) {
        margin: 0;
    }

    .l-footer__navChild li:not(:last-child) a {
        border-bottom: none;
    }

    .l-footer__navChild ul {
        margin-top: 0;
        margin-right: 0;
    }

    .l-footer__navChild ul {
        margin-left: 0;
    }

    .l-footer__navTitle h2 {
        font-size: 1.7rem;
        margin: 0 0 8px;
    }

    .l-footer__copyright {
        font-size: 1rem;
    }

    .l-footer__contact {
        font-size: 2rem;
    }

    .l-footer__left {
        width: 100%;
        margin: 0 0 30px;
    }

    .l-footer__inner {
        padding: 0 4.5%;
    }

    .l-footer__logo {
        width: 300px;
    }

    .l-footer__info {
        font-size: 1.5rem;
        line-height: 1.6;
        text-align: center;
    }

    .l-footer__info:nth-of-type(1) {
        margin: 0 0 10px;
    }

    .l-footer__right {
        flex-direction: column;
    }
}

@media screen and (max-width:590px) {
    .l-footer__wrap {
        flex-direction: column;
    }

    .l-footer__logo {
        width: 57%;
        margin: 0 auto 40px;
    }
}


/*----------------------------------------
	topCommon
----------------------------------------*/

.c-top__titleWrap {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    position: relative;
}

.c-top__titleJp {
    font-size: 2.2rem;
    letter-spacing: 0.08em;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

.c-top__titleEn {
    font-size: 7.2rem;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #2067A5;
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.c-top__titleEn span {
    position: relative;
}

.c-top__titleEn span:before {
    content: "";
    display: block;
    position: absolute;
    top: -110px;
    left: -100px;
    width: 216px;
    height: 216px;
    border-radius: 50%;
}

@media screen and (max-width:820px) {
    .c-top__titleEn {
        font-size: 4.2rem;
    }

    .c-top__titleEn span:before {
        width: 120px;
        height: 120px;
        top: -30px;
        left: -40px;
    }

    .c-top__titleJp {
        font-size: 1.6rem;
    }

    .c-top__titleEn {
        margin: 0 0 10px;
    }
}

@media screen and (max-width:590px) {
    .c-top__titleEn {
        font-size: 3rem;
    }

    .c-top__titleEn span:before {
        width: 80px;
        height: 80px;
        top: -30px;
        left: -40px;
    }

    .c-top__titleJp {
        font-size: 1.4rem;
    }

    .c-top__titleEn {
        margin: 0 0 8px;
    }
}



/*----------------------------------------
	topMv
----------------------------------------*/

.p-topMv {
    position: relative;
    margin: 110px auto 0;
    width: 100%;
    height: 88.7vh;
}

.p-topMv:before {
    content: "";
    width: 100%;
    height: 26.9%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #2067A5;
    z-index: -1;
}

.p-topMv__img {
    width: 91.1%;
    height: 100%;
    margin: 0 auto;
    background-image: url(images/mv.jpg);
    background-size: cover;
    border-radius: 30px;
}

.p-topMv__copy {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.p-topMv__copy h2 {
    width: 42.9%;
    margin: 0 auto 52px;
}

.p-topMv__text {
    text-align: center;
    color: #fff;
    font-size: 1.25vw;
    line-height: 1.708;
    letter-spacing: 0.08em;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-topMv__established {
    writing-mode: vertical-rl;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.2em;
    color: #2067A5;
    font-size: 1.5rem;
    writing-mode: vertical-rl;
}

.p-topMv__establishedLeft {
    position: absolute;
    left: 1.8%;
    bottom: 30.4%;
}

.p-topMv__establishedRight {
    position: absolute;
    right: 1.8%;
    bottom: 30.4%;
}

.p-topMv__scroll {
    position: absolute;
    bottom: 39px;
    left: 50%;
    transform: translateX(-50%);
}

.p-topMv__scroll a {
    position: relative;
    padding-top: 60px;
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
    text-decoration: none;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-topMv__scroll a span {
    position: absolute;
    top: 0;
    right: calc(50% - 15px);
    bottom: 25px;
    left: calc(50% - 15px);
    width: 30px;
    border: 2px solid #fff;
    border-radius: 16px;
}

.p-topMv__scroll a span::before {
    opacity: 0;
    position: absolute;
    top: 8px;
    right: calc(50% - 3px);
    left: calc(50% - 3px);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    content: '';
    animation: down 1.2s linear infinite;
}

@keyframes down {
    0% {
        opacity: 0;
        top: 8px;
    }

    5% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        top: 38px;
    }
}

@media screen and (max-width:1000px) {
    .p-topMv__text {
        font-size: 1.4rem;
    }
}

@media screen and (max-width:820px) {
    .p-topMv {
        height: 70vh;
        margin: 95px auto 0;
    }

    .p-topMv__img {
        width: 85%;
    }

    .p-topMv__established {
        font-size: 1.4rem;
    }

    .p-topMv__text {
        font-size: 1.6rem;
    }

    .p-topMv__text .pc_none {
        display: none;
    }

    .p-topMv__copy h2 {
        width: 58%;
    }

    .p-topMv__establishedLeft {
        left: 2.8%;
    }

    .p-topMv__establishedRight {
        right: 2.8%;
    }
}

@media screen and (max-width:590px) {
    .p-topMv {
        height: 70vh;
        margin: 70px auto 0;
    }

    .p-topMv__img {
        width: 85%;
        background-image: url(images/mv_sp.jpg);
    }

    .p-topMv__established {
        font-size: 1rem;
    }

    .p-topMv__text {
        font-size: 1.1rem;
    }

    .p-topMv__scroll {
        bottom: 17px;
    }

    .p-topMv__scroll a span {
        width: 20px;
        border: 1px solid #fff;
    }

    .p-topMv__scroll a {
        font-size: 1rem;
        padding-top: 49px;
    }

    .p-topMv__copy h2 {
        width: 64%;
        margin: 0 auto 30px;
    }

    .p-topMv__text .pc_none {
        display: block;
    }

    @keyframes down {
        0% {
            opacity: 0;
            top: 8px;
        }

        5% {
            opacity: 1;
        }

        100% {
            opacity: 0;
            top: 28px;
        }
    }
}

/*----------------------------------------
	topWorks
----------------------------------------*/

.p-topWorks {
    position: relative;
    margin: 0 0 275px;
    padding: 140px 0 0;
}

.p-topWorks:before {
    content: "";
    width: 100%;
    height: 613px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #2067A5;
    z-index: -1;
}

.p-topWorks .c-top__titleJp {
    color: #fff;
}

.p-topWorks .c-top__titleEn {
    color: #fff;
}

.p-topWorks .c-top__titleEn span:before {
    background-color: rgba(255, 255, 255, 0.24);
}

.p-topWorks .c-top__titleWrap {
    text-align: center;
}

.p-topWorks__subTitle {
    font-size: 3.8rem;
    color: #fff;
    letter-spacing: 0.08em;
    margin: 0 0 90px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.579;
    text-align: center;
}

.p-topWorks .c-top__titleWrap {
    margin: 0 0 55px;
}

.p-topWorks__list {
    padding: 0 17px;
}

.p-topWorks__img img {
    border-radius: 20px 20px 0 0;
}

.p-topWorks__text {
    width: 100%;
    height: 240px;
    background-color: #E6F0F4;
    border-radius: 0 0 20px 20px;
    padding: 45px 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-topWorks__title {
    font-size: 2.5rem;
    margin: 0 0 30px;
}

.p-topWorks__archive_name {
    color: #9B9B9B;
    font-size: 1.6rem;
    margin: 0 0 77px;
}

.p-topWorks__attention {
    font-size: 1.8rem;
    color: #2067A5;
}

.p-topWorks .c-button {
    margin: 50px auto 0;
    border: 1px solid #fff;
}

.p-topWorks__none {
    color: #fff;
}

@media screen and (max-width:820px) {
    .p-topWorks {
        margin: 0 0 90px;
        padding: 80px 0 0;
    }

    .p-topWorks .c-button {
        margin: 30px auto 0;
    }

    .p-topWorks__subTitle {
        font-size: 3.2rem;
        margin: 0 0 40px;
    }

    .p-topWorks__img {
        width: 500px;
    }

    .p-topWorks__img img {
        width: 100%;
    }

    .p-topWorks:before {
        height: 510px;
    }
}

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

    .p-topWorks__subTitle {
        font-size: 2.2rem;
    }

    .p-topWorks__img {
        width: 300px;
    }

    .p-topWorks__list {
        padding: 0 6px;
    }

    .p-topWorks__title {
        font-size: 1.8rem;
        margin: 0 0 20px;
    }

    .p-topWorks__archive_name {
        font-size: 1.4rem;
        margin: 0 0 45px;
    }

    .p-topWorks__attention {
        font-size: 1.3rem;
    }

    .p-topWorks__text {
        height: 180px;
        padding: 30px 15px 20px;
    }

    .p-topWorks {
        margin: 0 0 70px;
    }

    .p-topWorks:before {
        height: 435px;
    }
}

/*----------------------------------------
	topService
----------------------------------------*/

.p-topService {
    margin: 0 0 375px;
    position: relative;
}

.p-topService:before {
    content: "";
    width: 1152px;
    height: 1152px;
    background-color: rgba(32, 103, 165, 0.18);
    position: absolute;
    border-radius: 50%;
    right: -22.8%;
    top: -514px;
    z-index: -1;
}

.p-topService:after {
    content: "";
    width: 591px;
    height: 591px;
    background-color: rgba(102, 194, 196, 0.17);
    position: absolute;
    border-radius: 50%;
    right: 28.5%;
    top: -12px;
    z-index: -2;
}

.p-topService__subTitle {
    font-size: 3.8rem;
    letter-spacing: 0.08em;
    line-height: 1.579;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

.p-topService__list:nth-child(n+2) {
    background-color: #F5F5F5;
    width: 29.8%;
}

.p-topService__lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.p-topService__title {
    display: flex;
    align-items: center;
    margin: 0 0 84px;
}

.p-topService__title .c-top__titleWrap {
    margin: 0 131px 0 0;
}

.p-topService .c-top__titleEn span:before {
    background-color: rgba(102, 194, 196, 0.24);
    z-index: -2;
}

.p-topService__listTitle {
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
}

.p-topService__listTitle h3 {
    font-size: 3.5rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

.p-topService__listTitle h4 {
    font-size: 4rem;
    letter-spacing: 0.08em;
    color: #2067A5;
}

.p-topService__listLeft {
    margin: 0 150px 0 0;
}

.p-topService__listLeft h4 {
    font-size: 4rem;
    letter-spacing: 0.08em;
    color: #2067A5;
    margin: 0 0 68px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

.p-topService__listright h4 {
    font-size: 2.8rem;
    margin: 0 0 44px;
    color: #2067A5;
    margin: 0 0 40px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    line-height: 1.464;
}

.p-topService__listsProblem {
    margin: 0 0 50px;
}

.p-topService__listProblem {
    font-size: 2rem;
    text-indent: -2em;
    padding-left: 2em;
}

.p-topService__listProblem:before {
    content: "";
    background-image: url(images/top_service_arrow.svg);
    width: 28px;
    height: 28px;
    display: inline-block;
    margin: 0 9px 0 0;
    vertical-align: middle;
}

.p-topService__listProblem:not(:last-child) {
    margin: 0 0 23px;
}

.p-topService__listNumber {
    font-size: 3.7rem;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #2067A5;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.p-topService__listNumber span {
    font-size: 2rem;
    margin: 0 6px 0 0;
}

.p-topService__list01 {
    width: 100%;
    background-color: #E6F0F4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 80px;
    padding: 90px 20px;
    border-radius: 20px 0 20px 20px;
    position: relative;
}

.p-topService__list01:before {
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    background-image: url(images/service_arrow01.svg);
    position: absolute;
    top: 0;
    right: 0;
}

.p-topService__list01 .p-topService__listNumber {
    margin: 0 30px 0 0;
}

.p-topService__list02 {
    width: 29.8%;
    background-color: #F5F5F5;
    border-radius: 15px 0 15px 15px;
    padding: 30px 20px 50px;
    height: 630px;
    position: relative;
}

.p-topService__list02:before {
    content: "";
    width: 56px;
    height: 56px;
    background-image: url(images/service_arrow02.svg);
    position: absolute;
    top: 0;
    right: 0;
}

.p-topService__list02:nth-child(-n+3) {
    margin: 0 0 80px;
}

.p-topService__list02 h3 {
    font-size: 3.2rem;
    margin: 0 0 40px;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

.p-topService__list02 .p-topService__listIcon {
    margin: 0 0 52px;
    text-align: center;
}

.p-topService__list02 .c-text {
    margin: 0 0 40px;
    line-height: 1.778;
}

.p-topService__list02 .p-topService__listNumber {
    margin: 0 0 30px;
}

.p-topService__list02 .c-button {
    margin: auto;
}

.p-topService__list:nth-of-type(6) .p-topService__listIcon {
    height: 139px;
}

.p-topService__list01Button {
    display: flex;
    align-items: center;
}

.p-topService__list01Button .c-button {
    width: 47%;
}

.p-topService__list01Button .c-button:after {
    width: 100%;
}

@media screen and (max-width:1400px) {
    .p-topService {
        margin: 0 0 250px;
    }

    .p-topService__title .c-top__titleWrap {
        margin: 0 90px 0 0;
    }

    .p-topService__list01 img {
        width: 100%;
    }

    .p-topService__listLeft {
        margin: 0 80px 0 0;
    }

    .p-topService__listProblem {
        font-size: 1.8rem;
    }

    .p-topService__listTitle h3 {
        font-size: 3.2rem;
    }

    .p-topService__listTitle {
        flex-direction: column;
        align-items: flex-start;
    }

    .p-topService__listLeft h4 {
        font-size: 3.5rem;
    }

    .p-topService__list01 .p-topService__listNumber {
        margin: 0 0 20px 0;
    }

    .topService__list01 {
        padding: 75px 35px;
    }

    .p-topService:before {
        width: 800px;
        height: 800px;
        top: -300px;
    }

    .p-topService:after {
        width: 380px;
        height: 380px;
        right: 36.5%;
        top: -12px;
    }
}

@media screen and (max-width:1200px) {
    .p-topService__list:nth-child(n+2) {
        width: 48%;
    }

    .p-topService__list02 {
        padding: 30px 30px 50px;
    }

    .p-topService__list02:nth-child(n+2) {
        margin: 60px 0 0;
    }
}

@media screen and (max-width:1000px) {
    .p-topService__list01Button {
        flex-direction: column;
    }

    .p-topService__list01Button .c-button {
        width: 100%;
    }

    .p-topService__list01Button .c-button:first-of-type {
        margin: 0 0 15px;
    }
}

@media screen and (max-width:820px) {
    .p-topService {
        margin: 0 0 130px;
    }

    .p-topService__listIcon img {
        width: 100%;
    }

    .p-topService__list01 {
        flex-direction: column;
        border-radius: 12px 0 12px 12px;
    }

    .p-topService__list01:before {
        width: 50px;
        height: 50px;
        background-image: url(images/page_service_triangle.svg);
    }

    .p-topService__subTitle {
        font-size: 2.8rem;
    }

    .p-topService:after {
        width: 250px;
        height: 250px;
    }

    .p-topService:before {
        width: 550px;
        height: 550px;
    }

    .p-topService__list:nth-child(n+2) {
        width: 48%;
        margin: 0 0 40px;
    }

    .p-topService__list:last-child {
        margin: 0;
    }

    .p-topService__listNumber {
        font-size: 3rem;
    }

    .p-topService__listNumber span {
        font-size: 1.4rem;
    }

    .p-topService__list01 .p-topService__listIcon {
        width: 68%;
    }

    .p-topService__list02 h3 {
        font-size: 2.6rem;
    }

    .p-topService__list02 .p-topService__listIcon {
        width: 30%;
        margin: 0 auto 30px;
    }

    .p-topService__list:nth-of-type(5).p-topService__list02 .p-topService__listIcon {
        width: 36%;
    }

    .p-topService__list:nth-of-type(6) .p-topService__listIcon {
        height: auto;
    }

    .p-topService__list:nth-of-type(6).p-topService__list02 .p-topService__listIcon {
        width: 38%;
        height: auto;
    }

    .p-topService__list02 {
        height: 500px;
    }

    .p-topService__list02:before {
        width: 40px;
        height: 40px;
    }

    .p-topService__list02 {
        padding: 30px 20px 30px;
    }

    .p-topService__list02 .c-text {
        margin: 0 0 25px;
    }

    .p-topService__listLeft h4 {
        font-size: 3rem;
        text-align: center;
        margin: 0 0 40px;
    }

    .p-topService__list01 .p-topService__listIcon {
        width: 60%;
        margin: 0 auto 40px;
    }

    .p-topService__listLeft {
        margin: 0;
    }

    .p-topService__listright h4 {
        text-align: center;
        font-size: 2.5rem;
        margin: 0 0 20px;
    }

    .p-topService__listProblem {
        font-size: 1.8rem;
    }

    .p-topService__listTitle {
        margin: 0 0 25px 0;
    }
}

@media screen and (max-width:590px) {
    .p-topService {
        margin: 0 0 100px;
    }

    .p-topService__title {
        flex-direction: column;
        align-items: flex-start;
    }

    .p-topService__list01 .p-topService__listIcon {
        width: 68%;
    }

    .p-topService__subTitle {
        font-size: 2.2rem;
    }

    .p-topService:before {
        width: 450px;
        height: 450px;
        right: -73.8%;
        top: -524px;
    }

    .p-topService:after {
        width: 200px;
        height: 200px;
        right: -25.5%;
        top: -5%;
    }

    .p-topService__title .c-top__titleWrap {
        margin: 0 auto 30px 0;
    }

    .p-topService__title {
        margin: 0 0 40px;
    }

    .p-topService__list:nth-child(n+2) {
        width: 100%;
    }

    .p-topService__list01 {
        padding: 50px 15px;
        margin: 0 0 40px;
    }

    .p-topService__list02 {
        padding: 30px 20px 50px;
        border-radius: 12px 0 12px 12px;
    }

    .p-topService__listProblem {
        font-size: 1.5rem;
    }

    .p-topService__listProblem:before {
        width: 20px;
        height: 20px;
        background-size: 100%;
    }

    .p-topService__list02 {
        height: auto;
    }

    .p-topService__list02:before {
        background-size: 100%;
        width: 40px;
        height: 40px;
    }

    .p-topService__listNumber {
        font-size: 3rem;
    }

    .p-topService__listNumber span {
        font-size: 1.4rem;
    }

    .p-topService__list02 h3 {
        font-size: 2.5rem;
    }

    .p-topService__listright h4 {
        font-size: 2rem;
        text-align: center;
        line-height: 1.25;
        margin: 0 0 25px;
    }

    .p-topService__listIcon {
        margin: 0 auto 30px;
    }

    .p-topService__listLeft h4 {
        font-size: 2.4rem;
        margin: 0 0 40px;
    }

    .p-topService__listTitle {
        flex-direction: column;
    }

    .p-topService__listTitle h3 {
        font-size: 2.5rem;
    }

    .p-topService__list01 .p-topService__listNumber {
        margin: 0 0 12px;
    }

    .p-topService__listProblem:not(:last-child) {
        margin: 0 0 14px;
    }

    .p-topService__listsProblem {
        margin: 0 0 40px;
    }

    .p-topService__list01:before {
        width: 40px;
        height: 40px;
    }

    .p-topService__list02:not(:last-child) {
        margin: 0 0 40px;
    }

    .p-topService__list02 .c-text {
        margin: 0 0 20px;
    }
}

/*----------------------------------------
	topStrength
----------------------------------------*/

.p-topStrength {
    position: relative;
    background-color: #2067A5;
    margin: 0 0 130px;
    padding: 0 0 160px;
}

.p-topStrength:before {
    content: "";
    display: block;
    background-image: url(images/strength_deco.svg);
    width: 100%;
    height: 225px;
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: -195px;
}

.p-topStrength .c-top__titleWrap {
    text-align: center;
    position: relative;
    color: #fff;
    margin: 0 0 77px;
}

.p-topStrength .c-top__titleEn span:before {
    background-color: rgba(255, 255, 255, 0.24);
}

.p-topStrength .c-top__titleJp,
.p-topStrength .c-top__titleEn {
    color: #fff;
}

.p-topStrength__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.p-topStrength__list:nth-of-type(1) .p-topStrength__listImg {
    position: relative;
}

.p-topStrength__list:nth-of-type(1) .p-topStrength__listImg:before {
    content: "";
    background-image: url(images/strenght01_point.svg);
    background-repeat: no-repeat;
    width: 660px;
    height: 194px;
    background-position: bottom;
    background-size: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -97px;
}

.p-topStrength__list:not(:last-child) {
    margin: 0 0 120px;
}

.p-topStrength__listText {
    width: 40.3%;
    position: relative;
}

.p-topStrength__listText:before {
    content: "";
    display: inline-block;
    width: 24%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 29px;
    background-position: left;
}

.p-topStrength__list:nth-of-type(even) .p-topStrength__listText:before {
    left: -40.25%;
}

.p-topStrength__list:nth-of-type(odd) .p-topStrength__listText {
    padding-left: 13.1%;
}

.p-topStrength__list:nth-of-type(even) .p-topStrength__listText {
    padding-right: 13.1%;
}

.p-topStrength__list:nth-of-type(even) {
    flex-direction: row-reverse;
}

.p-topStrength__listText h3 {
    font-size: 3.8rem;
    letter-spacing: 0.08em;
    margin: 0 0 70px;
    color: #fff;
    line-height: 1.711;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

.p-topStrength__listText .c-text {
    line-height: 1.944;
    color: #fff;
}

.p-topStrength__listNumber {
    font-size: 3.7rem;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 48px;
}

.p-topStrength__listNumber span {
    font-size: 2rem;
    margin: 0 6px 0 0;
}

.p-topStrength__list .p-topStrength__listImg {
    width: 43.75%;
    height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.p-topStrength__list:nth-of-type(1) .p-topStrength__listImg {
    background-image: url(images/service01.jpg);
}

.p-topStrength__list:nth-of-type(2) .p-topStrength__listImg {
    background-image: url(images/service02.png);
    height: 670px;
}

.p-topStrength__list:nth-of-type(3) .p-topStrength__listImg {
    background-image: url(images/service03.png);
}

.p-topStrength__list:nth-of-type(4) .p-topStrength__listImg {
    background-image: url(images/service04.png);
}

.p-topStrength__list:before {
    content: "";
    background-color: rgba(255, 255, 255, 0.1);
    position: absolute;
    border-radius: 50%;
}

.p-topStrength__list:nth-of-type(2):before {
    width: 1034px;
    height: 1034px;
    top: -440px;
    right: -22.9%;
}

.p-topStrength__list:nth-of-type(3):before {
    width: 686px;
    height: 686px;
    top: 93px;
    left: -17.8%;
}

.p-topStrength__list:nth-of-type(4):before {
    width: 686px;
    height: 686px;
    top: -626px;
    right: -25.6%;
}

@media screen and (min-width:1921px) {
    .p-topStrength:before {
        height: 300px;
    }
}

@media screen and (max-width:1700px) {
    .p-topStrength__list:nth-of-type(1) .p-topStrength__listImg:before {
        width: 450px;
        bottom: -66px;
    }
}

@media screen and (max-width:1400px) {
    .p-topStrength__list .p-topStrength__listImg {
        width: 47.75%;
        height: 400px;
    }

    .p-topStrength__list:nth-of-type(2) .p-topStrength__listImg {
        height: 480px;
    }

    .p-topStrength__list:nth-of-type(even) .p-topStrength__listText {
        padding-right: 3.1%;
    }

    .p-topStrength__list:nth-of-type(odd) .p-topStrength__listText {
        padding-left: 3.1%;
    }

    .p-topStrength__listText {
        width: 44%;
    }

    .p-topStrength__listText:before {
        display: none;
    }
}


@media screen and (max-width:820px) {
    .p-topStrength {
        margin: 0 0 80px;
    }

    .p-topStrength__listText:before {
        display: block;
    }

    .p-topStrength__list {
        flex-direction: column;
    }

    .p-topStrength__list:nth-of-type(even) {
        flex-direction: column;
    }

    .p-topStrength__list:nth-of-type(odd) .p-topStrength__listText {
        padding-left: 8%;
    }

    .p-topStrength__list:nth-of-type(even) .p-topStrength__listText {
        padding-right: 8%;
    }

    .p-topStrength__listText h3 {
        font-size: 3rem;
        margin: 0 0 30px;
    }

    .p-topStrength__listText {
        margin: 0 0 50px;
        padding: 0 8%;
        width: 100%;
    }

    .p-topStrength__list .p-topStrength__listImg {
        width: 60%;
        height: 310px;
    }

    .p-topStrength__list:nth-of-type(1) .p-topStrength__listImg:before {
        width: 300px;
        bottom: -44px;
    }

    .p-topStrength__listText:before {
        width: 9%;
        top: 27px;
    }

    .p-topStrength__list:nth-of-type(even) .p-topStrength__listText:before {
        left: 0;
    }

    .p-topStrength__listNumber {
        padding: 0 0 0 4%;
    }

    .p-topStrength__list:nth-of-type(2) .p-topStrength__listImg {
        height: 380px;
    }

    .p-topStrength {
        margin: 0 0 30px;
        padding: 0 0 80px;
    }

    .p-topStrength__list:nth-of-type(2):before {
        width: 600px;
        height: 600px;
        right: -18%;
    }

    .p-topStrength__list:nth-of-type(3):before {
        width: 400px;
        height: 400px;
        top: 87%;
        left: -8.8%;
    }

    .p-topStrength__list:nth-of-type(4):before {
        width: 400px;
        height: 400px;
        top: -715px;
        right: -11%;
    }
}

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

    .p-topStrength__listText:before {
        top: 22px;
    }

    .p-topStrength {
        padding: 50px 0 80px;
    }

    .p-topStrength .c-top__titleWrap {
        margin: 0 0 45px;
    }

    .p-topStrength__listText {
        margin: 0 0 40px;
        padding: 0 3.5%;
    }

    .p-topStrength__listText h3 {
        font-size: 2.2rem;
        margin: 0 0 25px;
    }

    .p-topStrength__listNumber span {
        font-size: 1.4rem;
    }

    .p-topStrength__listNumber {
        font-size: 3rem;
        margin: 0 0 20px;
        padding: 0 0 0 10%;
    }

    .p-topStrength__list .p-topStrength__listImg {
        width: 90%;
        height: 250px;
    }

    .p-topStrength__list:nth-of-type(2):before {
        width: 450px;
        height: 450px;
        top: -350px;
        right: -50.9%;
    }

    .p-topStrength__list:not(:last-child) {
        margin: 0 0 80px;
    }

    .p-topStrength__list:nth-of-type(2) .p-topStrength__listImg {
        height: 300px;
    }

    .p-topStrength__list:nth-of-type(3):before {
        width: 300px;
        height: 300px;
        top: 80%;
        left: -17.8%;
    }

    .p-topStrength__list:nth-of-type(4):before {
        width: 300px;
        height: 300px;
        top: -626px;
        right: -33%;
    }

    .p-topStrength__list:nth-of-type(1) .p-topStrength__listImg:before {
        width: 250px;
        bottom: -36px;
    }
}

/*----------------------------------------
	top_news
----------------------------------------*/

.p-topNews {
    margin: 0 0 120px;
    position: relative;
}

.p-topNews .c-top__titleWrap {
    margin: 0 0 70px;
}

.p-topNews__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-topNews__article a {
    display: flex;
    width: 100%;
    height: 50px;
}


.p-topNews__text {
    display: flex;
    position: relative;
}

.p-topNews__text:after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 1px solid #2B3A3F;
    border-right: 1px solid #2B3A3F;
    transform: rotate(45deg);
    position: absolute;
    right: 30px;
}

.p-topNews__article_wrap {
    width: 68%;
}

.p-topNews__article {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    margin: 0 0 30px;
}

.p-topNews__time {
    font-size: 1.4rem;
    width: 20%;
    background-color: #2067A5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-topNews__text {
    width: 80%;
    background-color: #E6F0F4;
    display: flex;
    align-items: center;
    padding: 0 0 0 30px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    position: relative;
}

.p-topNews__title {
    font-size: 1.5rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

.p-topNews__category {
    background-color: #006FB9;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    height: 21px;
    border-radius: 11px;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    margin: 0 20px 0 0;
}

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

    .p-topNews {
        margin: 0 0 70px;
    }

    .p-topNews .c-top__titleWrap {
        margin: 0 0 30px;
    }

    .p-topNews__wrap {
        flex-direction: column;
    }

    .p-topNews__article_wrap {
        width: 100%;
    }

    .p-topNews__left .c-button {
        display: none;
    }
}

@media screen and (max-width: 590px) {
    .p-topNews__text {
        padding: 0 0 0 25px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .p-topNews__time {
        font-size: 1.1rem;
    }

    .p-topNews__category {
        font-size: 1.1rem;
        margin: 0 0 12px 0;
        padding: 5px 10px;
    }

    .p-topNews__article {
        height: 75px;
    }

    .p-topNews__article a {
        height: 75px;
    }

    .p-topNews__title {
        font-size: 1.4rem;
    }

    .p-topNews__text {
        padding: 0 0 0 15px;
    }

    .p-topNews__text:after {
        right: 12px;
    }

    .top_news:after {
        border-width: 80px 0 80px 400px;
        top: -65px;
    }
}

/*----------------------------------------
	topAccess
----------------------------------------*/

.p-topAccess {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 500px;
    text-align: center;
}

.p-topAccess iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

/*----------------------------------------
	bottomContact
----------------------------------------*/

.p-bottomContact {
    position: relative;
    z-index: 10;
}

.p-bottomContact__wrap {
    background-color: #E6F0F4;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -70px 0 0;
    padding: 100px 0 90px;
    position: relative;
    z-index: 1;
}

.p-bottomContact__left {
    margin: 0 113px 0 0;
}

.p-bottomContact__left .c-top__titleWrap {
    margin: 0 0 65px;
}

.p-bottomContact__number {
    display: block;
    color: #2067A5;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 4.5rem;
    letter-spacing: 0.08em;
}

.p-bottomContact__number span {
    font-size: 2.9rem;
}

.p-bottomContact__time {
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    margin: 0 0 47px;
}

.p-bottomContact__right .c-button {
    font-size: 2rem;
    width: 450px;
    height: 80px;
}

.p-bottomContact__right .c-button span:before {
    content: "";
    display: inline-block;
    background-image: url(images/bottom_contact_icon.svg);
    width: 23px;
    height: 15px;
    margin: 0 12px 0 0;
}

.p-bottomContact__right .c-button:after {
    width: 450px;
    height: 80px;
}

.p-bottomContact__tel {
    margin: 0 0 12px;
}

.p-bottomContact__fax {
    margin: 0 0 14px;
}

.page .p-bottomContact__wrap,
.error404 .p-bottomContact__wrap,
.archive .p-bottomContact__wrap,
.single .p-bottomContact__wrap {
    margin: 0;
}

@media screen and (max-width:1400px) {
    .p-company:before {
        width: 900px;
        height: 900px;
        right: -23.8%;
        bottom: -20%;
    }

    .p-company:after {
        width: 400px;
        height: 400px;
        bottom: 440px;
    }

    .p-bottomContact__right .c-button {
        width: 400px;
    }

    .p-bottomContact__right .c-button:after {
        width: 400px;
    }

    .p-bottomContact__left .c-text {
        font-size: 1.6rem;
    }

    .p-bottomContact__number span {
        font-size: 2.2rem;
    }

    .p-bottomContact__left {
        margin: 0 80px 0 0;
    }

    .p-bottomContact__left .c-text {
        font-size: 1.4rem;
    }
}

@media screen and (max-width:1400px) {
    .p-bottomContact__wrap {
        padding: 90px 30px 80px;
    }
}

@media screen and (max-width:820px) {
    .p-bottomContact__wrap {
        flex-direction: column;
        padding: 50px 20px 40px;
    }

    .p-bottomContact__left {
        margin: 0 0 30px;
    }

    .p-bottomContact__right .c-button {
        width: 100%;
        height: 50px;
        font-size: 1.5rem;
    }

    .p-bottomContact__right .c-button:after {
        width: 100%;
        height: 50px;
    }

    .p-bottomContact__time {
        font-size: 1.4rem;
        margin: 0 0 30px;
    }

    .p-bottomContact__number span {
        font-size: 2.2rem;
    }

    .p-bottomContact__number {
        font-size: 3.5rem;
    }

    .p-bottomContact__left .c-top__titleWrap {
        margin: 0 0 20px;
    }

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

@media screen and (max-width:590px) {
    .p-bottomContact__number span {
        font-size: 1.8rem;
    }

    .p-bottomContact__number {
        font-size: 3rem;
    }
}

/*----------------------------------------
	pageCommon
----------------------------------------*/

.p-catch {
    width: 91.1%;
    height: 450px;
    margin: 110px auto 120px;
    position: relative;
    background-image: url(images/catch_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 30px;
    position: relative;
    background-position: center;
}

.p-catch__textWrap {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
}

.p-catch__en {
    font-size: 9.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 20px;
    color: #fff;
}

.p-catch__jp {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 2.9rem;
    letter-spacing: 0.08em;
    color: #fff;
}

.p-page__titleWrap {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    position: relative;
    margin: 0 0 80px;
    text-align: center;
}

.p-page__titleWrap:before {
    content: "";
    width: 120px;
    height: 120px;
    background-color: rgba(32, 103, 165, 0.15);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.p-page__titleJp {
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-page__titleEn {
    font-size: 4.5rem;
    letter-spacing: 0.08em;
    color: #2067A5;
    text-transform: uppercase;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 13px;
}

.c-page__intro {
    margin: 0 0 140px;
}

.c-section__block {
    margin: 0 0 140px;
}

@media screen and (max-width:1400px) {
    .p-catch {
        height: 360px;
        margin: 110px auto 100px;
    }

    .p-catch__en {
        font-size: 7rem;
    }

    .p-catch__jp {
        font-size: 2.4rem;
    }

    .c-page__intro {
        margin: 0 0 100px;
    }
}

@media screen and (max-width:820px) {
    .p-catch {
        height: 300px;
        margin: 90px auto 80px;
        border-radius: 20px;
    }

    .p-catch__en {
        font-size: 5.5rem;
        margin: 0 0 12px;
    }

    .p-catch__jp {
        font-size: 2rem;
    }

    .p-page__titleJp {
        font-size: 1.4rem;
    }

    .p-page__titleEn {
        font-size: 3.8rem;
    }

    .p-page__titleWrap {
        margin: 0 0 50px;
    }

    .p-page__titleEn {
        font-size: 3rem;
        margin: 0 0 8px;
    }

    .p-page__titleJp {
        font-size: 1.2rem;
    }

    .p-page__titleWrap:before {
        width: 100px;
        height: 100px;
    }

    .c-page__intro {
        margin: 0 0 60px;
    }
}

@media screen and (max-width:590px) {
    .p-catch {
        height: 175px;
        border-radius: 14px;
        margin: 70px auto 40px;
    }

    .p-catch__en {
        font-size: 3.8rem;
        margin: 0 0 8px;
    }

    .p-catch__jp {
        font-size: 1.5rem;
        margin: 0 0 10px;
    }

    .p-page__titleWrap:before {
        width: 70px;
        height: 70px;
    }

    .p-page__titleWrap {
        margin: 0 0 40px;
    }

    .p-page__titleEn {
        font-size: 2.5rem;
    }

    .p-page__titleJp {
        font-size: 1.2rem;
    }

    .c-page__intro {
        margin: 0 0 40px;
    }

    .c-section__block {
        margin: 0 0 70px;
    }
}

/*----------------------------------------
	Company
----------------------------------------*/

.p-company {
    margin: 0 0 150px;
    position: relative;
}

.p-company:before {
    content: "";
    width: 1152px;
    height: 1152px;
    background-color: rgba(32, 103, 165, 0.18);
    position: absolute;
    border-radius: 50%;
    right: -13.8%;
    bottom: -455px;
    z-index: -1;
}

.p-company:after {
    content: "";
    width: 591px;
    height: 591px;
    background-color: rgba(102, 194, 196, 0.17);
    position: absolute;
    border-radius: 50%;
    right: -12.7%;
    bottom: 464px;
    z-index: -2;
}

.table01 {
    display: block;
    width: 1000px;
    margin: auto;
    font-size: 1.8rem;
    margin: 0 auto 130px;
}

.table01 tbody {
    display: block;
    width: 100%;
}

.table01 tr {
    display: flex;
    justify-content: space-between;
}

.table01 tr:first-child th {
    border-top: 1px solid rgba(32, 103, 165, 0.45);
}


.table01 tr:first-child td {
    border-top: 1px solid #DDDDDD;
}

.table01 tr:last-child {
    border-bottom: none;
}

.table01 th {
    width: 24.5%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(32, 103, 165, 0.45);
    font-weight: normal;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.12em;
    line-height: 1.4;
    color: #2067A5;
}

.table01 td {
    padding: 15px;
    width: 75.5%;
    vertical-align: middle;
    border-bottom: 1px solid #DDDDDD;
    line-height: 1.75;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.p-company__outline {
    margin: 0 0 160px;
}

.p-company__outline h3 {
    background: transparent linear-gradient(103deg, #006FB9 0%, #8AC0E2 100%) 0% 0% no-repeat padding-box;
    border-radius: 49px;
    width: 585px;
    height: 90px;
    font-size: 3.8rem;
    letter-spacing: 0.08em;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin: auto;
}

.p-company__accessWrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 500px;
    text-align: center;
}

.p-company__accessWrap iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.p-company__accessTime {
    font-size: 2.5rem;
    letter-spacing: 0.08em;
    margin: 0 0 50px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    text-align: center;
}

.p-company__accessInfo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 60px;
}

.p-company__accessInfo .p-page__titleWrap {
    margin: 0 70px 0 0;
}

@media screen and (max-width:1400px) {
    .p-company:before {
        width: 900px;
        height: 900px;
        right: -23.8%;
        bottom: -20%;
    }

    .p-company:after {
        width: 400px;
        height: 400px;
        bottom: 440px;
    }
}

@media screen and (max-width:1000px) {
    .table01 {
        width: 100%;
    }

    .table01 tr:first-child td {
        border-top: none;
    }

    .table01 tr:first-child th {
        border-top: 1px solid #DDDDDD;
    }

    .table01 th,
    .table01 td {
        font-size: 1.6rem;
        width: 100%;
    }

    .table01 th {
        width: 100%;
        font-weight: bold;
        margin: 0 0 8px;
        padding: 8px 2% 0 2%;
        border: none;
    }

    .table01 td {
        width: 100%;
        padding: 0 2% 8px 2%;
        line-height: 1.25;
    }

    .table01 tr {
        display: flex;
        flex-direction: column;
        padding: 0;
    }
}

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

    .table01 {
        margin: 0 auto 70px;
    }

    .p-company {
        margin: 0 0 80px;
    }

    .p-company__outline {
        margin: 0 auto 70px;
    }

    .p-company__accessTime {
        font-size: 1.4rem;
        margin: 0 0 40px;
    }

    .p-company__accessWrap {
        height: 400px;
    }

    .p-company__outline h3 {
        font-size: 3rem;
        width: 500px;
        height: 70px;
    }

    .p-company__access {
        margin: 0 0 70px;
    }

    .table01 th,
    .table01 td {
        font-size: 1.4rem;
        width: 100%;
    }

    .p-company:before {
        width: 600px;
        height: 600px;
    }

    .p-company:after {
        width: 350px;
        height: 350px;
        right: -12.7%;
        bottom: 25%;
    }

    .p-company__accessInfo {
        margin: 0 0 45px;
    }

    .p-company__outline {
        margin: 0 0 90px;
    }

    .p-company {
        margin: 0 0 80px;
    }
}

@media screen and (max-width:590px) {
    .p-company__outline h3 {
        width: 100%;
        height: 60px;
        font-size: 2rem;
    }

    .p-company__accessWrap {
        height: 500px;
    }

    .p-company__accessInfo {
        margin: 0 0 25px;
        flex-direction: column;
    }

    .p-company__accessInfo .p-page__titleWrap {
        margin: 0 0 30px;
    }

    .p-company:before {
        width: 400px;
        height: 400px;
    }

    .p-company:after {
        width: 200px;
        height: 200px;
        right: -12.7%;
        bottom: 32%;
    }
}


/*----------------------------------------
	contact
----------------------------------------*/

.p-contact {
    margin: 0 0 150px;
}

.p-contact__form {
    width: 66.6%;
}

.table_contact {
    background-color: #fff;
    border-radius: 12px;
}

.p-contact__wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.table_contact_wrap {
    border-radius: 12px;
    border: 1px solid rgba(85, 85, 85, 0.5);
    padding: 80px 65px 90px;
}

.table_contact {
    display: block;
    width: 100%;
    margin: auto;
}

.table_contact th {
    color: #333333;
    width: 33.2%;
    padding: 20px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.8rem;
}

.table_contact th .small {
    font-size: 1.2rem;
}

.contact_address_wrap div:first-child {
    margin: 0 0 20px;
}

.table_contact tbody {
    display: block;
}

.table_contact td {
    padding: 20px;
    width: 75.5%;
    vertical-align: middle;
}

.table_contact td input.text {
    width: 100%;
    border: none;
    height: 40px;
    padding: 0 0 0 10px;
    background-color: #fff;
    font-size: 1.6rem;
    border: 1px solid rgba(112, 112, 112, 0.3);
    border-radius: 3px;
}

.table_contact td input.text.zip {
    width: 54%;
}

.table_contact td span {
    margin: 0 20px 0 0;
}

.table_contact td span:last-of-type {
    font-weight: bold;
    margin: 0 0 15px;
}

.table_contact td textarea {
    width: 100%;
    border: none;
    height: 180px;
    padding: 20px 0 0 20px;
    border: 1px solid rgba(112, 112, 112, 0.3);
    background-color: #fff;
    font-size: 1.6rem;
    border-radius: 3px;
}

.table_contact td textarea.text_area_remarks {
    height: 237px;
}

.table_contact tr {
    display: flex;
    border-bottom: 1px solid #DDDDDD;
    width: 100%;
}

.table_contact tr:first-child {
    border-top: 1px solid #DDDDDD;
}

.required {
    display: inline-block;
    background-color: #006FB9;
    color: #fff;
    margin-left: 20px;
    padding: 3px;
    font-weight: normal;
    letter-spacing: 0.06em;
    font-size: 1.1rem;
    border-radius: 2px;
}

.contact_button {
    width: 360px;
    height: 60px;
    margin: 40px auto 0;
    position: relative;
}

.contact_button input {
    background: none;
    border: none !important;
    background-color: #006FB9 !important;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.07em;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 33px;
}

.mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0;
}

.table_radio_wrap {
    display: flex;
}

.mwform-radio-field:last-child {
    margin: 0;
}

.agree_check {
    margin-bottom: 60px;
    color: #2B3A3F;
}

.agree_check a {
    color: #5BA560;
}

.mwform-checkbox-field {
    margin: 0 40px 0 0;
}

.agree_check .mwform-checkbox-field {
    margin: 0;
}

.mw_wp_form_confirm {
    margin: 0 0 120px;
}

.mw_wp_form_confirm .required,
.mw_wp_form_confirm .option,
.mw_wp_form_confirm .agree_check,
.mw_wp_form_confirm .table_contact_privacy {
    display: none;
}

.selectbox {
    height: 40px;
    background-color: #EDEDED;
    border: 1px solid #DDDDDD;
    padding: 0 20px;
}

input {
    font-family: '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ ゴシック', sans-serif;
}

input::placeholder {
    color: #A0A0A0;
}

input[type="text"] {
    border: none;
}

input[type="text"]:focus {
    border: 1px solid #004DA0;
    outline: 0;
}

input::placeholder {
    color: #CECDCD;
}

.table_radio_wrap {
    display: flex;
    flex-direction: column;
}


.table_radio_wrap span:not(:last-child) {
    margin: 0 0 15px;
}

.p-contact__tel {
    background-color: #404040;
    width: 29.8%;
    height: 225px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #E6ECF8;
    position: relative;
    border-radius: 14px;
}

.p-contact__tel h2 {
    font-size: 2.4rem;
    letter-spacing: 0.03em;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.486;
    color: #000000;
    margin: 0 0 30px;
}

.p-contact__telTitle {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 97px 0 0;
}

.p-contact__telTitle p {
    font-size: 2.5rem;
    letter-spacing: 0.06em;
    font-weight: 800;
    font-weight: 800;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #2AAAA4;
}

.p-contact__telNumber {
    font-size: 4rem;
    letter-spacing: 0.06em;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-contact__telNumber span {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
}

.p-contact__telNumber a {
    font-size: 4rem;
    letter-spacing: 0.06em;
    color: #006FB9;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 18px;
}

.p-contact__telNumber a:before {
    content: "";
    display: inline-block;
    background-image: url(images/contact_tel_icon.svg);
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    margin-right: 9px;
}

.table_contact_privacy {
    color: #006FB9;
    display: block;
    text-align: center;
    margin: 45px auto 55px;
    padding: 0 0 8px;
    font-weight: bold;
}

.table_contact_privacy span {
    border-bottom: 1px solid #006FB9;
    padding: 0 0 8px;
}

.table_contact td select {
    width: 230px;
    border: none;
    height: 40px;
    padding: 0 0 0 10px;
    background-color: #fff;
    font-size: 1.6rem;
    border: 1px solid rgba(112, 112, 112, 0.3);
    border-radius: 3px;
}

@media screen and (max-width: 1300px) {
    .p-contact__tel {
        width: 30%;
        height: 210px;
    }
}

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

    .table_contact_wrap {
        width: 100%;
        padding: 50px 40px 80px;
    }

    .page_contact_subtitle {
        width: 100%;
    }

    .table_contact td input.text {
        width: 80%;
    }

    .table_contact th {
        width: 37%;
    }

    .table_contact td {
        width: 63%;
    }

    .table_radio_wrap {
        flex-direction: column;
        line-height: 2;
    }

    .c-table__date_wrap {
        display: flex;
        flex-direction: column;
    }

    .table_contact td span {
        margin: 0 0 5px 0;
    }

    .p-contact__wrap {
        flex-direction: column;
        justify-content: center;
    }

    .p-contact__form {
        width: 100%;
    }

    .p-contact__tel {
        width: 100%;
        margin: 0 0 50px;
    }

    .table_contact_privacy {
        font-size: 1.2rem;
        margin: 25px auto 35px;
    }
}

@media screen and (max-width: 820px) {
    .p-contact {
        margin: 0 0 70px;
    }

    .table_contact tr:nth-of-type(1) td {
        display: flex;
        flex-direction: column;
        line-height: 2;
    }

    .mw_wp_form .bg01 {
        margin: 0 0 40px;
    }

    .table_contact tr {
        flex-direction: column;
        padding: 20px 0;
    }

    .table_contact th {
        width: 100%;
        font-size: 1.6rem;
        justify-content: flex-start;
        margin: 0 0 15px;
        padding: 0;
    }

    .table_contact td {
        width: 100%;
        padding: 0;
    }

    .mw_wp_form .bg01 {
        padding: 40px 0;
    }

    .table_contact td input.text {
        width: 60%;
        height: 35px;
    }

    .table_contact td input.text.addr {
        width: 85%;
    }

    .selectbox {
        height: 35px;
    }

    .contact_time_wrap {
        margin: 0 0 30px;
    }

    .agree_check {
        line-height: 1.75;
        margin-bottom: 30px;
    }

    .contact_time_wrap {
        font-size: 1.4rem;
    }

    .contact_button {
        width: 230px;
        height: 45px;
        margin: 30px auto 0;
    }

    .contact_button::before {
        left: 50px;
    }

    .mw_wp_form_confirm {
        margin: 0 0 80px;
    }

    .table_radio_wrap span:not(:last-child) {
        font-size: 1.4rem;
        margin: 0 0 8px;
    }

    .p-contact__tel {
        width: 100%;
        height: auto;
        border-radius: 5px;
        padding: 30px 10px;
    }

    .p-contact__telNumber a {
        font-size: 3rem;
    }

    .p-contact__telNumber a:before {
        background-size: 100%;
        width: 20px;
        height: 20px;
        margin-right: 5px;
    }

    .p-contact__tel h2 {
        font-size: 1.8rem;
    }

    .p-contact__telNumber span {
        font-size: 1.2rem;
    }

    .p-contact__tel h2 {
        margin: 0 0 20px;
    }

    .contact_button input {
        font-size: 1.4rem;
    }

    .table_contact td select {
        width: 200px;
    }
}

@media screen and (max-width: 590px) {
    .table_contact_wrap {
        padding: 50px 20px 80px;
    }

    .table_contact td input.text {
        width: 100%;
        height: 45px;
        font-size: 1.5rem;
    }

    .table_contact td input.text.addr {
        width: 100%;
    }

    .table_contact td input.text.zip {
        width: 75%;
    }
}

/*----------------------------------------
	strength
----------------------------------------*/

.page-id-4846 .p-catch {
    margin-bottom: 0;
    position: relative;
}

.page-id-4846 .p-catch:before {
    content: "";
    background-color: #F5F5F5;
    width: 100vw;
    margin: calc(50% - 50vw);
    height: 246px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.p-strength__philosophy {
    padding: 152px 0 320px;
    background-color: #F5F5F5;
}

.p-strength__philosophyWrap {
    display: flex;
    justify-content: space-between;
}

.p-strength__philosophyImg {
    width: 37.9%;
}

.p-strength__philosophyText {
    width: 54%;
}

.p-strength__philosophyText .c-text {
    line-height: 3.333;
    margin: 0 0 75px;
    text-align: center;
}

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

.p-strength__feature {
    position: relative;
    background-color: #fff;
    padding: 0 0 160px;
}

.p-strength__feature:before {
    content: "";
    display: block;
    background-image: url(images/page_strength_deco.svg);
    width: 100%;
    height: 225px;
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: -134px;
}

.p-strength__feature .c-top__titleWrap {
    text-align: center;
    position: relative;
    color: #fff;
    margin: 0 0 77px;
}

.p-strength__feature .c-top__titleEn span:before {
    background-color: rgba(255, 255, 255, 0.24);
}

.p-strength__feature .c-top__titleJp,
.p-strength__feature .c-top__titleEn {
    color: #fff;
}

.p-strength__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.p-strength__list:not(:last-child) {
    margin: 0 0 120px;
}

.p-strength__listText {
    width: 40.3%;
    position: relative;
}

.p-strength__listText:before {
    content: "";
    display: inline-block;
    width: 24%;
    height: 1px;
    background-color: #66C2C4;
    position: absolute;
    left: 0;
    top: 29px;
    background-position: left;
}

.p-strength__list:nth-of-type(even) .p-strength__listText:before {
    left: -40.25%;
}

.p-strength__list:nth-of-type(odd) .p-strength__listText {
    padding-left: 13.1%;
}

.p-strength__list:nth-of-type(even) .p-strength__listText {
    padding-right: 13.1%;
}

.p-strength__list:nth-of-type(even) {
    flex-direction: row-reverse;
}

.p-strength__listText h3 {
    font-size: 3.8rem;
    letter-spacing: 0.08em;
    margin: 0 0 70px;
    color: #2067A5;
    line-height: 1.711;
}

.p-strength__listText .c-text {
    font-size: 1.8rem;
    line-height: 1.944;
}

.p-strength__listNumber {
    font-size: 3.7rem;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #66C2C4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 48px;
}

.p-strength__listNumber span {
    font-size: 2rem;
    margin: 0 6px 0 0;
}

.p-strength__list .p-strength__listImg {
    width: 43.75%;
    height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.p-strength__list:nth-of-type(1) .p-strength__listImg {
    background-image: url(images/service01.jpg);
}

.p-strength__list:nth-of-type(2) .p-strength__listImg {
    background-image: url(images/service02.png);
    height: 670px;
}

.p-strength__list:nth-of-type(3) .p-strength__listImg {
    background-image: url(images/service03.png);
}

.p-strength__list:nth-of-type(4) .p-strength__listImg {
    background-image: url(images/service04.png);
}

.p-strength__list:before {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.p-strength__list:nth-of-type(2):before {
    width: 1034px;
    height: 1034px;
    top: -440px;
    right: -22.9%;
    background-color: rgba(32, 103, 165, 0.1);
}

.p-strength__list:nth-of-type(3):before {
    width: 686px;
    height: 686px;
    top: 93px;
    left: -17.8%;
    background-color: rgba(102, 194, 196, 0.1);
}

.p-strength__list:nth-of-type(4):before {
    width: 686px;
    height: 686px;
    top: -626px;
    right: -25.6%;
    background-color: rgba(32, 103, 165, 0.1);
}

.p-strength__list:nth-of-type(1) .p-strength__listImg {
    position: relative;
}

.p-strength__list:nth-of-type(1) .p-strength__listImg:before {
    content: "";
    background-image: url(images/page_strenght01_point.svg);
    background-repeat: no-repeat;
    width: 660px;
    height: 194px;
    background-position: bottom;
    background-size: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -97px;
}

@media screen and (min-width:1921px) {
    .p-strength__feature:before {
        height: 300px;
    }
}

@media screen and (max-width:1700px) {
    .p-strength__list:nth-of-type(1) .p-strength__listImg:before {
        width: 450px;
        bottom: -66px;
    }
}

@media screen and (max-width:1400px) {
    .p-strength__list .p-strength__listImg {
        width: 47.75%;
        height: 400px;
    }

    .p-strength__list:nth-of-type(2) .p-strength__listImg {
        height: 480px;
    }

    .p-strength__list:nth-of-type(even) .p-strength__listText {
        padding-right: 3.1%;
    }

    .p-strength__list:nth-of-type(odd) .p-strength__listText {
        padding-left: 3.1%;
    }

    .p-strength__listText {
        width: 44%;
    }

    .p-strength__listText:before {
        display: none;
    }

    .p-strength__philosophyText .c-text {
        font-size: 1.6rem;
        line-height: 2.2;
        margin: 0 0 50px;
    }

    .page-id-4846 .p-catch:before {
        height: 200px;
    }

    .p-strength__philosophyName {
        width: 47%;
        margin: auto;
    }

    .p-strength__philosophyName img {
        width: 100%;
    }
}

@media screen and (max-width:1300px) {
    .p-strength__feature:before {
        height: 200px;
    }

    .p-strength__philosophy {
        padding: 152px 0 210px;
    }
}

@media screen and (max-width:1000px) {
    .p-strength__feature:before {
        height: 150px;
    }

    .p-strength__philosophy {
        padding: 152px 0 180px;
    }
}

@media screen and (max-width:820px) {
    .p-strength__listText:before {
        display: block;
    }

    .p-strength__list {
        flex-direction: column;
    }

    .p-strength__list:nth-of-type(even) {
        flex-direction: column;
    }

    .p-strength__list:nth-of-type(odd) .p-strength__listText {
        padding-left: 8%;
    }

    .p-strength__list:nth-of-type(even) .p-strength__listText {
        padding-right: 8%;
    }

    .p-strength__listText h3 {
        font-size: 3rem;
        margin: 0 0 30px;
    }

    .p-strength__listText {
        margin: 0 0 50px;
        padding: 0 8%;
        width: 100%;
    }

    .p-strength__list .p-strength__listImg {
        width: 60%;
        height: 310px;
    }

    .p-strength__list:nth-of-type(1) .p-strength__listImg:before {
        width: 300px;
        bottom: -44px;
    }

    .p-strength__listText:before {
        width: 9%;
        top: 27px;
    }

    .p-strength__list:nth-of-type(even) .p-strength__listText:before {
        left: 0;
    }

    .p-strength__listNumber {
        padding: 0 0 0 4%;
    }

    .p-strength__list:nth-of-type(2) .p-strength__listImg {
        height: 380px;
    }

    .p-strength__feature {
        margin: 0 0 30px;
        padding: 0 0 80px;
    }

    .p-strength__list:nth-of-type(2):before {
        width: 600px;
        height: 600px;
        right: -18%;
    }

    .p-strength__list:nth-of-type(3):before {
        width: 400px;
        height: 400px;
        top: 87%;
        left: -8.8%;
    }

    .p-strength__list:nth-of-type(4):before {
        width: 400px;
        height: 400px;
        top: -715px;
        right: -11%;
    }

    .p-strength__philosophyWrap {
        flex-direction: column-reverse;
    }

    .p-strength__philosophyText .c-text {
        margin: 0 0 50px;
    }

    .p-strength__philosophy {
        padding: 100px 0 150px;
    }

    .page-id-4846 .p-catch:before {
        height: 150px;
    }

    .p-strength__philosophyText .c-text {
        font-size: 1.4rem;
    }

    .p-strength__philosophyName {
        width: 38%;
    }

    .p-strength__philosophyText {
        width: 100%;
        margin: 0 0 50px;
    }

    .p-strength__philosophyImg {
        width: 54%;
        margin: auto;
    }

    .p-strength__philosophyText .c-text {
        margin: 0 0 30px;
    }

    .p-strength__list:nth-of-type(1) .p-strength__listImg:before {
        width: 300px;
        bottom: -44px;
    }
}

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

    .p-strength__listText:before {
        top: 22px;
    }

    .p-strength__feature {
        padding: 50px 0 80px;
    }

    .p-strength .c-top__titleWrap {
        margin: 0 0 45px;
    }

    .p-strength__listText {
        margin: 0 0 40px;
        padding: 0 3.5%;
    }

    .p-strength__listText h3 {
        font-size: 2.2rem;
        margin: 0 0 25px;
    }

    .p-strength__listNumber span {
        font-size: 1.4rem;
    }

    .p-strength__listNumber {
        font-size: 3rem;
        margin: 0 0 20px;
        padding: 0 0 0 10%;
    }

    .p-strength__list .p-strength__listImg {
        width: 90%;
        height: 250px;
    }

    .p-strength__list:nth-of-type(2):before {
        width: 450px;
        height: 450px;
        top: -350px;
        right: -50.9%;
    }

    .p-strength__list:not(:last-child) {
        margin: 0 0 80px;
    }

    .p-strength__list:nth-of-type(2) .p-strength__listImg {
        height: 300px;
    }

    .p-strength__list:nth-of-type(3):before {
        width: 300px;
        height: 300px;
        top: 80%;
        left: -17.8%;
    }

    .p-strength__list:nth-of-type(4):before {
        width: 300px;
        height: 300px;
        top: -626px;
        right: -33%;
    }

    .p-strength__list:nth-of-type(1) .p-strength__listImg:before {
        width: 250px;
        bottom: -36px;
    }

    .page-id-4846 .p-catch:before {
        height: 85px;
    }

    .p-strength__philosophy {
        padding: 50px 0 75px;
    }

    .p-strength__feature:before {
        height: 155px;
    }

    .p-strength__list:nth-of-type(1) .p-strength__listImg:before {
        width: 250px;
        bottom: -36px;
    }
}

/*----------------------------------------
	Service
----------------------------------------*/

.p-service {
    margin: 0 0 150px;
    position: relative;
}

.p-service__subTitle {
    font-size: 3.8rem;
    letter-spacing: 0.08em;
    line-height: 1.579;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

.p-service__list:nth-child(n+2) {
    background-color: #F5F5F5;
    width: 29.8%;
}

.p-service__lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.p-service__title {
    display: flex;
    align-items: center;
    margin: 0 0 84px;
}

.p-service__title .c-top__titleWrap {
    margin: 0 131px 0 0;
}

.p-service .c-top__titleEn span:before {
    background-color: rgba(102, 194, 196, 0.24);
    z-index: -2;
}

.p-service__listTitle {
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
}

.p-service__listTitle h3 {
    font-size: 3.5rem;
}

.p-service__listTitle h4 {
    font-size: 4rem;
    letter-spacing: 0.08em;
    color: #2067A5;
}

.p-service__listLeft {
    margin: 0 150px 0 0;
}

.p-service__listLeft h4 {
    font-size: 4rem;
    letter-spacing: 0.08em;
    color: #2067A5;
    margin: 0 0 68px;
}

.p-service__listright h4 {
    font-size: 2.8rem;
    margin: 0 0 44px;
    color: #2067A5;
    margin: 0 0 40px;
}

.p-service__listsProblem {
    margin: 0 0 50px;
}

.p-service__listProblem {
    font-size: 2rem;
}

.p-service__listProblem:before {
    content: "";
    background-image: url(images/top_service_arrow.svg);
    width: 28px;
    height: 28px;
    display: inline-block;
    margin: 0 9px 0 0;
}

.p-service__listProblem:not(:last-child) {
    margin: 0 0 23px;
}

.p-service__listNumber {
    font-size: 3.7rem;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #2067A5;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.p-service__listNumber span {
    font-size: 2rem;
    margin: 0 6px 0 0;
}

.p-service__list01 {
    width: 100%;
    background-color: #E6F0F4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 80px;
    padding: 90px 20px;
    border-radius: 20px 0 20px 20px;
    position: relative;
}

.p-service__list01:before {
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    background-image: url(images/page_service_triangle.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
}

.p-service__list01 .p-service__listNumber {
    margin: 0 30px 0 0;
}

.p-service__list02 {
    width: 29.8%;
    background-color: #F5F5F5;
    border-radius: 15px 0 15px 15px;
    padding: 30px 40px 65px;
    height: 630px;
    position: relative;
}

.p-service__list02:before {
    content: "";
    width: 56px;
    height: 56px;
    background-image: url(images/service_arrow02.svg);
    position: absolute;
    top: 0;
    right: 0;
}

.p-service__list02:nth-child(-n+3) {
    margin: 0 0 80px;
}

.p-service__list02 h3 {
    font-size: 3.2rem;
    margin: 0 0 40px;
    text-align: center;
}

.p-service__list02 .p-service__listIcon {
    margin: 0 0 52px;
    text-align: center;
}

.p-service__list02 .c-text {
    margin: 0 0 40px;
    line-height: 1.778;
}

.p-service__list02 .p-service__listNumber {
    margin: 0 0 30px;
}

.p-service__list02 .c-button {
    margin: auto;
}

.p-service__list:nth-of-type(6) .p-service__listIcon {
    height: 139px;
}

.p-catch__serviceIcon {
    margin: 0 0 20px;
    mix-blend-mode: overlay;
}

.p-service__content {
    margin: 0 0 150px;
}

.p-service__content:nth-of-type(odd) {
    background-color: #E6F0F4;
    position: relative;
}

.p-service__content:nth-of-type(odd):before {
    content: "";
    display: block;
    width: 100%;
    height: 53px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
}

.p-service__content:nth-of-type(odd) .p-service__contentBox:last-child {
    margin: 0 0 120px;
}

.p-service__content:nth-of-type(even) dl {
    background-color: #E6F0F4;
}

.p-service__content h3 {
    color: #2067A5;
    margin: 0 0 60px;
    font-size: 2.8rem;
    letter-spacing: 0.08em;
    position: relative;
    z-index: 1;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-service__content h3:before {
    content: "";
    width: 100px;
    height: 100px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.p-service__scanningImg ul {
    display: flex;
    justify-content: center;
}

.p-service__scanningImg ul li:first-child {
    margin: 0 39px 0 0;
}

.p-service__scanningImg ul li figcaption {
    font-size: 2rem;
    letter-spacing: 0.08em;
    line-height: 1.6;
    text-align: center;
}

.p-service__scanningImg {
    margin: 0 0 182px;
}

.p-service__content:nth-of-type(even) h3:before {
    background-color: #E6F0F4;
}

.p-service__content dl {
    display: flex;
    align-items: center;
    border-radius: 8px;
    background-color: #fff;
    padding: 27px 0 27px 50px;
}

.p-service__content dt {
    font-size: 2.4rem;
    letter-spacing: 0.08em;
    width: 20%;
    color: #2067A5;
}

.p-service__content dt:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 5px;
    background-color: #2067A5;
    vertical-align: super;
    margin: 0 20px 0 0;
}

.p-service__content dd {
    font-size: 2.2rem;
    letter-spacing: 0.08em;
    line-height: 1.75;
}

.p-service__contentsData01 {
    margin: 0 0 40px;
}

.p-service__contentsData02 dt span {
    display: inline-block;
    font-size: 1.7rem;
    letter-spacing: 0.08em;
    color: #66C2C4;
    margin: 11px 0 0;
    padding: 0 0 5px;
    border-bottom: 2px solid #66C2C4;
}

.p-service__contentsData02 dd span:first-child {
	display: inline-block;
    margin: 0 40px 0 0;
}

.service__contentsData01 {
    margin: 0 0 40px;
}

.p-service__contentTitle {
    font-size: 3.5rem;
    letter-spacing: 0.08em;
    background-color: #2067A5;
    height: 100px;
    margin: 0 0 85px;
    padding: 0 0 0 70px;
    display: flex;
    align-items: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    position: relative;
}

.p-service__contentTitle:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(images/service_content_title_triangle.svg);
    width: 35px;
    height: 35px;
}

.p-service__contentBox {
    margin: 0 0 120px;
}

.p-service__contact {
    background-color: #F5F5F5;
    padding: 73px 0;
    position: relative;
}

.p-service__contact h2 {
    font-size: 2.8rem;
    letter-spacing: 0.08em;
    margin: 0 0 42px;
    color: #2067A5;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-service__contact h2 span {
    color: #66C2C4;
}

.p-service__contact .c-button {
    font-size: 2rem;
    width: 450px;
    height: 80px;
}

.p-service__contact .c-button:after {
    width: 450px;
    height: 80px;
}

.p-service__contactAttention {
    color: #F53118;
    letter-spacing: 0.08em;
    text-align: center;
}

.p-service__contactAttention {
    margin: 30px 0 0;
}

.p-service__contact:before {
    content: "";
    width: 382px;
    height: 242px;
    display: block;
    background-image: url(images/service_contact_img.png);
    position: absolute;
    bottom: 0;
    left: 18%;
    background-position: bottom;
    background-repeat: no-repeat;
}

.p-service__recommend {
    margin: 0 0 140px;
}

.p-service__recommend h2 {
    font-size: 3.5rem;
    color: #2067A5;
    letter-spacing: 0.08em;
    text-align: center;
    margin: 0 0 60px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-service__recommend h2:after {
    content: "";
    background-image: url(images/service_recommend_icon.svg);
    background-repeat: no-repeat;
    display: block;
    width: 308px;
    height: 20px;
    margin: 30px auto 0;
    background-position: center;
}

.p-service__recommend ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.p-service__recommend ul li {
    font-size: 2.5rem;
    line-height: 1.54;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    width: 945px;
    background-color: #E6F0F4;
    border-radius: 13px;
}

.p-service__recommend ul li:not(:last-child) {
    margin: 0 0 44px;
}

.p-service__recommend ul li span {
    font-size: 5.8rem;
    letter-spacing: 0.08em;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: normal;
    display: block;
    width: 110px;
    height: 110px;
    background-color: #2067A5;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: relative;
    left: -55px;
}

.p-service__size {
    margin: 0 0 150px;
}

.p-service__size h2 {
    font-size: 3.4rem;
    letter-spacing: 0.08em;
    margin: 0 0 20px;
    color: #2067A5;
    position: relative;
    z-index: 1;
}

.p-service__size h2:before {
    content: "";
    width: 100px;
    height: 100px;
    background-color: #E6F0F4;
    position: absolute;
    top: 50%;
    left: 0;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.p-service__list01Button {
    display: flex;
    align-items: center;
}

.p-service__list01Button .c-button {
    width: 47%;
}

.p-service__list01Button .c-button:after {
    width: 100%;
}

/*------ Other ------*/

.p-service__contentLetter {
    display: flex;
    justify-content: space-between;
}

.p-service__contentLetter li {
    width: 29.8%;
    height: 94px;
    background-color: #E6F0F4;
    font-size: 2.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.p-service__contentEtc {
    font-size: 2.6rem;
    margin: 20px 0 0;
    text-align: right;
    margin: 20px 0 120px;
}

/*------ Business cards ------*/

.p-service__businesscardsImg {
    width: 61.5%;
    margin: 0 auto 120px;
}

/*------ Scannning ------*/

.p-service__contentAttention {
    font-size: 2rem;
    color: #F53118;
    line-height: 2.5;
    margin: 0 0 120px;
}

/*------ bookbinding ------*/

.p-service__bookbinding {
    margin: 0 0 150px;
}

.p-service__bookbindingLists {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.p-service__bookbindingList img {
    width: 100%;
}

.p-service__bookbindingList figcaption {
    background-color: #E6F0F4;
    padding: 65px 41px 90px;
    border-radius: 0 0 20px 20px;
    height: 324px;
}

.p-service__bookbindingList {
    width: 29.8%;
}

.p-service__bookbindingList:nth-child(n+4) {
    margin: 130px 0 0;
}

.p-service__bookbindingList h3 {
    font-size: 3.2rem;
    margin: 0 0 40px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
}

.p-service__bookbindingList .c-text {
    line-height: 1.778;
}

.p-service__bookbinding h2 {
    font-size: 3.5rem;
    letter-spacing: 0.08em;
    color: #2067A5;
    margin: 0 0 100px;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
}

/*------ digitalization ------*/

.page-id-4934 .p-catch:before {
    content: "";
    background-color: #E6F0F4;
    width: 100vw;
    margin: calc(50% - 50vw);
    height: 246px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.page-id-4934 .p-catch {
    margin-bottom: 0;
    position: relative;
}

.p-service__digital01 {
    margin: 0 0 150px;
}

.p-service__digital01Intro {
    text-align: center;
    margin: 0 0 120px;
    padding: 120px 0 140px;
    background-color: #E6F0F4;
}

.p-service__digital01IntroWrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0 120px;
}

.p-service__digital01IntroImg {
    width: 43.75%;
    height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(images/digitalization_intro.jpg);
}

.p-service__digital01IntroText {
    width: 43.2%;
    text-align: left;
    margin: 0 0 0 110px;
}

.p-service__digital01IntroText p {
    font-size: 2.2rem;
    line-height: 2.045;
    margin: 0 0 40px;
    font-weight: bold;
}

.p-service__digital01IntroText ul li {
    font-size: 2.2rem;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-service__digital01IntroText ul li:before {
    content: "";
    background-image: url(images/digitalization_check.svg);
    width: 35px;
    height: 35px;
    display: inline-block;
    margin: 0 9px 0 0;
    background-repeat: no-repeat;
}

.p-service__digital01IntroText ul li:not(:last-child) {
    margin: 0 0 32px;
}

.p-service__digital01Intro h2 {
    margin: 0 0 120px;
}

.p-service__digital01Intro h3 {
    font-size: 4rem;
    letter-spacing: 0.08em;
    background-color: #FFF100;
    border-radius: 10px;
    border: 3px solid #000000;
    padding: 25px 0;
    line-height: 1.3;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-service__digital01Intro__question {
    font-size: 3.5rem;
    letter-spacing: 0.08em;
    background-color: #fff;
    border-radius: 20px;
    margin: 0 0 60px;
    padding: 22px 10px;
    text-align: center;
    position: relative;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.3;
}

.p-service__digital01Intro__question:after {
    content: "";
    display: block;
    text-align: center;
    background-image: url(images/digital01intro__question_arrow.svg);
    background-repeat: no-repeat;
    width: 31px;
    height: 26px;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: -22px;
}

.p-service__digital01Merit {
    border-radius: 30px 30px 0 0;
    padding: 70px 100px 85px;
    background-color: #E6F0F4;
}

.p-service__digital01Merit ul li:not(:last-child) {
    margin: 0 0 13px;
}

.p-service__digital01Merit ul li {
    display: flex;
    align-items: center;
    font-size: 2.2rem;
    letter-spacing: 0.08em;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.818;
}

.p-service__digital01Merit ul li:before {
    content: "";
    background-image: url(images/digitalization_merit_icon.svg);
    background-repeat: no-repeat;
    width: 26px;
    height: 48px;
    display: inline-block;
    margin: 0 16px 0 0;
    background-size: 100%;
}

.p-service__digital01Merit h2 {
    text-align: center;
    margin: 0 0 50px;
    padding: 12px 10px;
    background-color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
}


.p-service__digital01Other {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F5F5F5;
    border-radius: 0 0 30px 30px;
    margin: 0 0 130px;
    padding: 65px 85px;
}

.p-service__digital01Other__text h3 {
    margin: 0 0 40px;
    font-size: 2.8rem;
    letter-spacing: 0.08em;
    line-height: 1.2;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-service__digital01Other__text .c-text {
    line-height: 1.778;
}

.p-service__digital01Other__img {
    margin-right: 65px;
}

.p-service__digital01 .p-service__contact {
    background-color: #E6F0F4;
}

@media screen and (max-width:1700px) {
    .p-service__contact:before {
        left: 6%;
    }
}

@media screen and (max-width:1400px) {
    .p-service {
        margin: 0 0 250px;
    }

    .p-service__title .c-top__titleWrap {
        margin: 0 90px 0 0;
    }

    .p-service__list01 img {
        width: 100%;
    }

    .p-service__listLeft {
        margin: 0 80px 0 0;
    }

    .p-service__listProblem {
        font-size: 1.8rem;
    }

    .p-service__listTitle h3 {
        font-size: 3.2rem;
    }

    .p-service__listTitle {
        flex-direction: column;
        align-items: flex-start;
    }

    .p-service__listLeft h4 {
        font-size: 3.5rem;
    }

    .p-service__list01 .p-service__listNumber {
        margin: 0 0 20px 0;
    }

    .topService__list01 {
        padding: 75px 35px;
    }

    .p-service:before {
        width: 800px;
        height: 800px;
        top: -300px;
    }

    .p-service:after {
        width: 380px;
        height: 380px;
        right: 36.5%;
        top: -12px;
    }
}

@media screen and (max-width:1300px) {
    .p-service__scanningImg ul li:first-child {
        width: 47%;
    }

    .p-service__scanningImg ul li:last-child {
        width: 34%;
    }

    .p-service__scanningImg ul li img {
        width: 100%;
    }

    .p-service__scanningImg ul li figcaption {
        font-size: 1.4rem;
    }

    .p-service__digital01Intro h2 {
        width: 75%;
        margin: 0 auto 80px;
    }

    .p-service__digital01Intro h2 img {
        width: 100%;
    }

    .p-service__digital01IntroImg {
        height: 480px;
    }

    .p-service__digital01Intro__question {
        font-size: 3rem;
        line-height: 1.3;
    }

    .p-service__digital01IntroText ul li:before {
        background-size: 100%;
        width: 28px;
        height: 28px;
        background-size: 100%;
    }

    .p-service__digital01IntroText {
        margin: 0 0 0 50px;
    }

    .p-service__digital01Intro h3 {
        font-size: 3.5rem;
    }

    .p-service__digital01Merit {
        padding: 70px 50px 85px;
    }

    .p-service__digital01Other {
        padding: 65px 50px;
    }
}

@media screen and (max-width:1200px) {
    .p-service__list:nth-child(n+2) {
        width: 48%;
    }

    .p-service__list02 {
        padding: 30px 30px 50px;
    }

    .p-service__list02:nth-child(n+2) {
        margin: 60px 0 0;
    }

    .p-catch__serviceIcon {
        width: 40%;
        margin: 0 auto 10px;
    }

    .p-catch__serviceIcon img {
        width: 100%;
    }

    .p-service__contact:before {
        left: 2%;
    }

    .p-service__bookbindingList h3 {
        font-size: 2.8rem;
        margin: 0 0 30px;
    }

    .p-service__bookbindingList figcaption {
        height: 300px;
        padding: 45px 20px 50px;
    }

    .p-service__bookbindingList figcaption .c-text {
        font-size: 1.6rem;
    }

    .p-service__contentLetter li {
        height: 65px;
        font-size: 2rem;
    }

    .p-service__contentEtc {
        font-size: 2rem;
    }

    .p-service__digital01IntroText {
        width: 50%;
    }

    .p-service__digital01IntroImg {
        width: 38%;
        height: 330px;
    }
}

@media screen and (max-width:1000px) {
    .p-service__list01Button {
        flex-direction: column;
    }

    .p-service__list01Button .c-button {
        width: 100%;
    }

    .p-service__list01Button .c-button:first-of-type {
        margin: 0 0 15px;
    }

    .p-service__recommend ul li {
        font-size: 1.8rem;
        width: 90%;
        height: 70px;
    }

    .p-service__recommend ul li span {
        font-size: 3.4rem;
        left: -30px;
        width: 65px;
        height: 65px;
    }

    .p-service__recommend ul li:not(:last-child) {
        margin: 0 0 30px;
    }

    .p-service__recommend h2 {
        font-size: 3rem;
    }
}

@media screen and (max-width:820px) {
    .p-service {
        margin: 0 0 130px;
    }

    .p-service__listIcon img {
        width: 100%;
    }

    .p-service__list01 {
        flex-direction: column;
        border-radius: 12px 0 12px 12px;
    }

    .p-service__list01:before {
        width: 50px;
        height: 50px;
        background-image: url(images/page_service_triangle.svg);
    }

    .p-service__subTitle {
        font-size: 2.8rem;
    }

    .p-service:after {
        width: 250px;
        height: 250px;
    }

    .p-service:before {
        width: 550px;
        height: 550px;
    }

    .p-service__list:nth-child(n+2) {
        width: 48%;
        margin: 0 0 40px;
    }

    .p-service__list:last-child {
        margin: 0;
    }

    .p-service__listNumber {
        font-size: 3rem;
    }

    .p-service__listNumber span {
        font-size: 1.4rem;
    }

    .p-service__list01 .p-service__listIcon {
        width: 68%;
    }

    .p-service__list02 h3 {
        font-size: 2.6rem;
    }

    .p-service__list02 .p-service__listIcon {
        width: 30%;
        margin: 0 auto 30px;
    }

    .p-service__list:nth-of-type(5).p-service__list02 .p-service__listIcon {
        width: 36%;
    }

    .p-service__list:nth-of-type(6) .p-service__listIcon {
        height: auto;
    }

    .p-service__list:nth-of-type(6).p-service__list02 .p-service__listIcon {
        width: 38%;
        height: auto;
    }

    .p-service__list02 {
        height: 500px;
    }

    .p-service__list02:before {
        width: 40px;
        height: 40px;
    }

    .p-service__list02 {
        padding: 30px 20px 30px;
    }

    .p-service__list02 .c-text {
        margin: 0 0 25px;
    }

    .p-service__listLeft h4 {
        font-size: 3rem;
        text-align: center;
        margin: 0 0 40px;
    }

    .p-service__list01 .p-service__listIcon {
        width: 60%;
        margin: 0 auto 40px;
    }

    .p-service__listLeft {
        margin: 0;
    }

    .p-service__listright h4 {
        text-align: center;
        font-size: 2.5rem;
        margin: 0 0 20px;
    }

    .p-service__listProblem {
        font-size: 1.8rem;
    }

    .p-service__listTitle {
        margin: 0 0 25px 0;
    }

    .p-catch__serviceIcon {
        width: 28%;
    }

    .p-service__recommend {
        margin: 0 0 80px;
    }

    .p-service__contentTitle {
        font-size: 2.5rem;
        height: 70px;
        margin: 0 0 70px;
    }

    .p-service__content:nth-of-type(odd):before {
        height: 30px;
    }

    .p-service__content h3 {
        font-size: 2.2rem;
        margin: 0 0 50px;
    }

    .p-service__content h3:before {
        width: 80px;
        height: 80px;
    }

    .p-service__content dl {
        flex-direction: column;
        padding: 18px 0 18px 20px;
    }

    .p-service__content dd {
        font-size: 1.6rem;
        margin: 0 auto 0 0;
    }

    .p-service__content dt {
        font-size: 1.8rem;
        margin: 0 auto 10px 0;
        width: auto;
    }

    .p-service__content dt:before {
        width: 22px;
        height: 4px;
        margin: 0 10px 0 0;
    }

    .p-service__contentsData01 {
        margin: 0 0 20px;
    }

    .p-service__contentsData02 dt span {
        font-size: 1.3rem;
        padding: 0 0 3px;
    }

    .p-service__content:nth-of-type(odd) .p-service__contentBox:last-child {
        margin: 0 0 70px;
    }

    .p-service__contact:before {
        width: 230px;
        height: 144px;
        left: 2%;
        background-size: 100%;
    }

    .p-service__contact .c-button {
        width: 400px;
        height: 70px;
    }

    .p-service__contact .c-button:after {
        width: 400px;
        height: 70px;
    }

    .p-service__contact h2 {
        font-size: 2.2rem;
    }

    .p-service__contactAttention {
        font-size: 1.4rem;
    }

    .p-service__contact {
        padding: 60px 0;
    }

    .p-service__contact .c-button {
        font-size: 1.7rem;
    }

    .p-service__recommend h2 {
        font-size: 2.6rem;
        margin: 0 0 30px;
    }

    .p-service__contentBox {
        margin: 0 0 60px;
    }

    .p-service__content {
        margin: 0 0 70px;
    }

    .p-service__recommend h2:after {
        background-size: 100%;
        width: 208px;
        height: 17px;
        margin: 22px auto 0;
    }

    .p-service__recommend ul li:not(:last-child) {
        margin: 0 0 20px;
    }

    .p-service__size {
        margin: 0 0 60px;
    }

    .p-service__scanningImg {
        margin: 0 0 80px;
    }

    .p-service__bookbindingList figcaption .c-text {
        font-size: 1.4rem;
    }

    .p-service__bookbinding h2 {
        font-size: 2.8rem;
        margin: 0 0 60px;
    }

    .p-service__bookbindingList h3 {
        font-size: 2.5rem;
    }

    .p-service__bookbindingList {
        width: 47%;
    }

    .p-service__bookbindingList:nth-child(n+3) {
        margin: 60px 0 0;
    }

    .p-service__bookbindingList figcaption {
        height: 260px;
    }

    .p-service__bookbinding {
        margin: 0 0 80px;
    }

    .p-service__businesscardsImg {
        width: 50%;
    }

    .p-service__businesscardsImg {
        margin: 0 auto 60px;
    }

    .p-service__contentLetter li {
        height: 50px;
        font-size: 1.6rem;
    }

    .p-service__contentEtc {
        font-size: 1.6rem;
    }

    .p-service__contentLetter li {
        width: 32%;
    }

    .p-service__contentEtc {
        margin: 20px 0 50px;
    }

    .p-service__contentBox .c-text.m_b80 {
        margin: 0 0 30px !important;
    }

    .p-service__digital01Intro {
        margin: 0 0 70px;
        padding: 60px 0 70px;
    }

    .page-id-4934 .p-catch:before {
        height: 150px;
    }

    .p-service__digital01IntroWrap {
        flex-direction: column;
    }

    .p-service__digital01IntroText {
        width: 100%;
        margin: 0;
        padding: 0 3.5%;
    }

    .p-service__digital01IntroText p {
        font-size: 1.6rem;
        text-align: center;
    }

    .p-service__digital01IntroImg {
        width: 60%;
        height: 312px;
        margin: 0 0 30px;
    }

    .p-service__digital01Intro h2 {
        margin: 0 auto 40px;
    }

    .p-service__digital01Intro__question {
        width: 90%;
        margin: 0 auto 30px;
    }

    .p-service__digital01Intro__question {
        font-size: 2.5rem;
        margin: 0 auto 50px;
    }

    .p-service__digital01IntroText ul li {
        font-size: 1.6rem;
    }

    .p-service__digital01IntroText ul li:not(:last-child) {
        margin: 0 0 20px;
    }

    .p-service__digital01Intro h3 {
        font-size: 2.5rem;
    }

    .p-service__digital01IntroWrap {
        margin: 0 0 40px;
    }

    .p-service__digital01Intro h3 {
        font-size: 2.5rem;
    }

    .p-service__digital01Merit ul li {
        font-size: 1.8rem;
    }

    .p-service__digital01Merit {
        padding: 40px 30px 55px;
    }

    .p-service__digital01Merit h2 {
        margin: 0 0 30px;
    }

    .p-service__digital01Other {
        margin: 0 0 80px;
    }

    .p-service__digital01 {
        margin: 0 0 70px;
    }

    .p-service__digital01Intro__question {
        width: 100%;
    }

    .p-service__digital01Other__img {
        margin-right: 30px;
    }

    .p-service__digital01Other__text h3 {
        font-size: 2.2rem;
        margin: 0 0 20px;
    }
}

@media screen and (max-width:590px) {
    .p-service {
        margin: 0 0 80px;
    }

    .p-service__title {
        flex-direction: column;
        align-items: flex-start;
    }

    .p-service__list01 .p-service__listIcon {
        width: 68%;
    }

    .p-service__subTitle {
        font-size: 2.2rem;
    }

    .p-service:before {
        width: 450px;
        height: 450px;
        right: -73.8%;
        top: -524px;
    }

    .p-service:after {
        width: 200px;
        height: 200px;
        right: -25.5%;
        top: -5%;
    }

    .p-service__title .c-top__titleWrap {
        margin: 0 auto 30px 0;
    }

    .p-service__title {
        margin: 0 0 40px;
    }

    .p-service__list:nth-child(n+2) {
        width: 100%;
    }

    .p-service__list01 {
        padding: 50px 15px;
        margin: 0 0 40px;
    }

    .p-service__list02 {
        padding: 30px 20px 50px;
        border-radius: 12px 0 12px 12px;
    }

    .p-service__listProblem {
        font-size: 1.5rem;
    }

    .p-service__listProblem:before {
        width: 20px;
        height: 20px;
        background-size: 100%;
    }

    .p-service__list02 {
        height: auto;
    }

    .p-service__list02:before {
        background-size: 100%;
        width: 40px;
        height: 40px;
    }

    .p-service__listNumber {
        font-size: 3rem;
    }

    .p-service__listNumber span {
        font-size: 1.4rem;
    }

    .p-service__list02 h3 {
        font-size: 2.5rem;
    }

    .p-service__listright h4 {
        font-size: 2rem;
        text-align: center;
        line-height: 1.25;
        margin: 0 0 25px;
    }

    .p-service__listIcon {
        margin: 0 auto 30px;
    }

    .p-service__listLeft h4 {
        font-size: 2.4rem;
        margin: 0 0 40px;
    }

    .p-service__listTitle {
        flex-direction: column;
    }

    .p-service__listTitle h3 {
        font-size: 2.5rem;
    }

    .p-service__list01 .p-service__listNumber {
        margin: 0 0 12px;
    }

    .p-service__listProblem:not(:last-child) {
        margin: 0 0 14px;
    }

    .p-service__listsProblem {
        margin: 0 0 40px;
    }

    .p-service__list01:before {
        width: 40px;
        height: 40px;
    }

    .p-service__list02:not(:last-child) {
        margin: 0 0 40px;
    }

    .p-service__list02 .c-text {
        margin: 0 0 20px;
    }

    .p-service__recommend h2 {
        font-size: 1.8rem;
    }

    .p-service__recommend h2:after {
        background-size: 100%;
        width: 160px;
        height: 15px;
        margin: 15px auto 0;
    }

    .p-service__recommend ul li span {
        position: absolute;
        width: 35px;
        height: 35px;
        left: 5px;
        font-size: 2.2rem;
    }

    .p-service__recommend ul li {
        width: 100%;
        height: auto;
        padding: 15px 0 15px 40px;
        font-size: 1.2rem;
    }

    .p-service__recommend ul li:not(:last-child) {
        margin: 0 0 15px;
    }

    .p-service__recommend {
        margin: 0 0 60px;
    }

    .p-service__contentTitle {
        height: auto;
        margin: 0 0 50px;
        padding: 15px 15px 15px 40px;
        font-size: 2rem;
        line-height: 1.2;
    }

    .p-service__contentTitle:before {
        background-size: 100%;
        width: 25px;
        height: 25px;
    }

    .p-service__content h3 {
        font-size: 1.8rem;
        margin: 0 0 35px;
        line-height: 1.4;
        margin: 0 0 20px;
    }

    .p-service__content h3:before {
        width: 60px;
        height: 60px;
    }

    .p-service__content dd {
        font-size: 1.3rem;
        line-height: 1.5;
    }

    .p-service__content dt:before {
        width: 16px;
        height: 3px;
    }

    .p-service__content dl {
        padding: 18px 15px 18px 15px;
    }

    .p-service__contentsData02 dt span {
        font-size: 1rem;
    }

    .p-service__contact {
        padding: 35px 0 52px;
    }

    .p-service__contact h2 {
        font-size: 1.8rem;
        line-height: 1.4;
        margin: 0 0 20px;
    }

    .p-service__contact .c-button {
        width: 100%;
        height: 50px;
        font-size: 1.5rem;
    }

    .p-service__contact .c-button:after {
        width: 100%;
        height: 50px;
    }

    .p-service__contact:before {
        width: 140px;
    }

    .p-service__contactAttention {
        font-size: 1.2rem;
    }

    .p-service__content:nth-of-type(odd) .p-service__contentBox:last-child {
        margin: 0 0 60px;
    }

    .p-service__size h2 {
        font-size: 2rem;
    }

    .p-service__size h2:before {
        width: 60px;
        height: 60px;
    }

    .p-service__scanningImg ul {
        flex-direction: column;
    }

    .p-service__scanningImg ul li:first-child {
        width: 95%;
        margin: 0 auto 30px;
    }

    .p-service__scanningImg ul li:last-child {
        width: 70%;
        margin: auto;
    }

    .p-service__bookbinding h2 {
        font-size: 2.2rem;
        margin: 0 0 60px;
    }

    .p-service__bookbindingList figcaption .c-text {
        font-size: 1.3rem;
    }

    .p-service__bookbinding h2 {
        font-size: 2.2rem;
        margin: 0 0 30px;
    }

    .p-service__bookbindingList h3 {
        font-size: 1.8rem;
    }

    .p-service__bookbindingList {
        width: 100%;
    }

    .p-service__bookbindingList:nth-child(n+2) {
        margin: 40px 0 0;
    }

    .p-service__bookbindingList figcaption {
        height: auto;
        padding: 30px 15px;
        border-radius: 0 0 12px 12px;
    }

    .p-service__businesscardsImg {
        width: 80%;
    }

    .p-service__digital01Merit {
        padding: 40px 15px 55px;
        border-radius: 15px 15px 0 0;
    }

    .p-service__digital01Merit ul li {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .p-service__digital01Merit ul li span {
        display: block;
        width: 90%;
    }

    .p-service__digital01IntroImg {
        width: 100%;
        height: 200px;
    }

    .p-service__digital01IntroText ul li span {
        font-size: 1.4rem;
        width: 90%;
        display: block;
    }

    .p-service__digital01Intro__question {
        font-size: 2rem;
        width: 100%;
        border-radius: 10px;
    }

    .p-service__digital01IntroImg {
        width: 100%;
        height: 180px;
    }

    .p-service__digital01Intro h2 {
        width: 90%;
    }

    .p-service__digital01Intro h3 {
        font-size: 1.8rem;
        padding: 15px;
    }

    .p-service__digital01Other {
        flex-direction: column;
    }

    .p-service__digital01Other__img {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .p-service__digital01Other {
        padding: 40px 15px;
    }

    .p-service__digital01Other__text h3 {
        font-size: 2rem;
    }

    .p-service__digital01IntroText ul li {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .p-service__digital01IntroText ul li:before {
        width: 18px;
        height: 18px;
    }

    .p-service__digital01Merit ul li:before {
        width: 15px;
        height: 37px;
    }

    .p-service__digital01Other {
        border-radius: 0 0 15px 15px;
    }

    .p-service__digital01Intro__question:after {
        width: 20px;
        height: 15px;
        background-size: 100%;
        bottom: -10px;
    }

    .p-service__digital01Intro__question {
        font-size: 1.8rem;
        margin: 0 auto 30px;
        padding: 12px 10px;
    }

    .p-service__digital01Intro h2 {
        width: 100%;
        margin: 0 auto 20px;
    }

    .p-service__digital01IntroText ul li:not(:last-child) {
        margin: 0 0 15px;
    }

    .p-service__digital01Merit h2 {
        font-size: 2rem;
    }

    .p-service__digital01IntroText p {
        font-size: 1.4rem;
    }

    .page-id-4934 .p-catch:before {
        height: 85px;
    }
	
	.p-service__contentsData02 dd span:first-child {
		margin: 0;
	}
}

/*----------------------------------------
	Works
----------------------------------------*/

.p-works {
    position: relative;
    margin: 0 0 275px;
    padding: 140px 0 0;
}

.p-works:before {
    content: "";
    width: 100%;
    height: 613px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #2067A5;
    z-index: -1;
}

.p-works .c-top__titleJp {
    color: #fff;
}

.p-works .c-top__titleEn {
    color: #fff;
}

.p-works .c-top__titleEn span:before {
    background-color: rgba(255, 255, 255, 0.24);
}

.p-works .c-top__titleWrap {
    text-align: center;
}

.p-works__subTitle {
    font-size: 3.8rem;
    color: #fff;
    letter-spacing: 0.08em;
    margin: 0 0 90px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.579;
    text-align: center;
}

.p-works .c-top__titleWrap {
    margin: 0 0 55px;
}

.p-works__lists {
    display: flex;
    flex-wrap: wrap;
}

.p-works__archiveLists {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 130px;
}

.p-works__archiveLists li {
    width: 23.6%;
    height: 55px;
}

.p-works__archiveLists li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: #2067A5;
}

.p-works__archiveLists li:not(:nth-child(4n+4)) {
    margin-right: 1.4%;
}

.p-works__archiveLists li:nth-child(n+5) {
    margin-top: 30px;
}

.p-works__img img {
    width: 100%;
    border-radius: 20px 20px 0 0;
}

.p-works__text {
    width: 100%;
    height: 240px;
    background-color: #E6F0F4;
    border-radius: 0 0 20px 20px;
    padding: 45px 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-works__title {
    font-size: 2.5rem;
    margin: 0 0 30px;
}

.p-works__archive_name {
    color: #9B9B9B;
    font-size: 1.6rem;
    margin: 0 0 77px;
}

.p-works__attention {
    font-size: 1.8rem;
    color: #2067A5;
}

.p-works .c-button {
    margin: 50px auto 0;
}

.p-works__archiveLists {
    display: flex;
    flex-wrap: wrap;
}

.p-works__list {
    width: 31.9%;
}

.p-works__list:not(:nth-child(3n+3)) {
    margin-right: 2%;
}

.p-works__list:nth-child(n+4) {
    margin-top: 70px;
}

.p-works__archiveWrap {
    margin: 0 0 80px;
}

.p-works__archive {
    margin: 0 0 150px;
}

.pagenavi {
    text-align: center;
    margin: 35px 0 100px;
}

.wp-pagenavi span.current {
    font-weight: bold;
    background-color: #2067A5;
    color: #fff;
    border: none;
}

.wp-pagenavi a,
.wp-pagenavi span {
    padding: 7px 10px;
}

.p-works__archive .c-page__intro {
    margin: 0 0 100px;
}

.works_img_thumb img {
    width: 100%;
}

.works_slider .works_img img {
    width: 100%;
    height: 605px;
    object-fit: contain;
}

.works_slider {
    margin: 0 0 20px;
}

.works_img {
    padding: 0 13px;
}

.works_img_thumb {
    padding: 0 13px;
}

.works_img_thumb img {
    height: 142px;
    object-fit: cover;
}

.p-works__inner {
    padding: 0 1.3%;
}

.p-works__single {
    margin: 0 0 150px;
}

.p-works__single .p-topWorks__text {
    width: 545px;
    height: auto;
    border-radius: 0 20px 20px 0;
    border-left: 6px solid #2067A5;
    background-color: #fff;
    padding: 52px 0;
}

.p-single__worksLists__wrap {
    background-color: #F5F5F5;
    padding: 85px 0 130px;
}

.p-single__worksSubtitle {
    font-size: 4rem;
    letter-spacing: 0.08em;
    text-align: center;
    margin: 0 0 70px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-single__worksLists__wrap .p-topWorks__lists {
    margin: 0 0 70px;
}

.p-works__archiveLists__wrap {
    background-color: #E6F0F4;
    border-radius: 20px;
    margin: 0 0 100px;
    padding: 56px 118px 80px;
}

.p-works__archiveLists__wrap .p-works__archiveLists {
    margin: 0;
}

.p-works__singleInfo {
    padding: 36px 0 36px 50px;
    border-radius: 10px;
    background-color: #E6F0F4;
    font-size: 2.2rem;
    letter-spacing: 0.08em;
    margin: 0 0 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-works__singleInfo02 {
    margin: 0 0 55px;
}

.p-works__singleTitle {
    font-size: 3.5rem;
    letter-spacing: 0.08em;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 60px;
}

.p-works__singleExplanation p {
    line-height: 1.4;
}

.p-works__singleName {
    margin: 0 0 25px;
}

.p-works__singleExplanation {
    margin: 0 0 70px;
}

.p-works__singleContact {
    margin: 100px 0 130px;
}

.p-works__singleContact .c-button {
    font-size: 2rem;
    width: 450px;
    height: 80px;
}

.p-works__singleContact .c-button:after {
    width: 450px;
    height: 80px;
}

.p-works__singleContact .c-button span:before {
    content: "";
    display: inline-block;
    background-image: url(images/bottom_contact_icon.svg);
    width: 23px;
    height: 15px;
    margin: 0 12px 0 0;
}

.p-works__singleContact .c-text {
    margin: 0 0 80px;
}

.c-no__text {
    width: 100vw;
}

.p-works__archiveCategory {
    font-size: 3.5rem;
    letter-spacing: 0.08em;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 80px;
}

@media screen and (max-width:1200px) {
    .p-works__archiveLists__wrap {
        padding: 56px 30px 80px;
    }
}

@media screen and (max-width:1000px) {
    .p-works__archiveLists li a {
        font-size: 1.4rem;
    }

    .p-works__archiveLists li {
        height: 45px;
    }

    .p-works__title {
        font-size: 2rem;
        margin: 0 0 15px;
    }

    .p-works__text {
        height: 210px;
    }

    .p-works__attention {
        font-size: 1.5rem;
    }

    .p-works__archive_name {
        font-size: 1.6rem;
        margin: 0 0 60px;
    }

    .p-single__worksSubtitle {
        font-size: 3.2rem;
        margin: 0 0 50px;
    }
}

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

    .p-works__lists {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .p-works__list:not(:nth-child(3n+3)) {
        margin-right: 0;
    }

    .p-works__list:not(:nth-child(2n+2)) {
        margin-right: 2%;
    }

    .p-works__list {
        width: 48%;
    }

    .p-works__archiveLists {
        justify-content: flex-start;
        margin: 0 0 70px;
    }

    .p-works__archiveLists li {
        width: 31%;
    }

    .p-works__archiveLists li:not(:nth-child(3n+3)) {
        margin-right: 1.5%;
    }

    .p-works__archiveLists li:nth-child(n+4) {
        margin-top: 10px;
    }

    .p-works__singleTitle {
        font-size: 3rem;
    }

    .p-works__singleExplanation {
        margin: 0 0 30px;
    }

    .p-works__singleInfo {
        padding: 20px 0 20px 30px;
    }

    .p-works__singleInfo {
        font-size: 1.8rem;
    }

    .works_img_thumb {
        padding: 0 3px;
    }

    .works_img {
        padding: 0 3px;
    }
    
    .works_slider .works_img img {
        height: 400px;
    }
    
    .works_img_thumb img {
        height: 100px;
    }

    .works_slider {
        margin: 0 0 6px;
    }

    .p-works__singleContact {
        margin: 50px 0 70px;
    }

    .p-works__singleContact .c-text {
        margin: 0 0 40px;
    }

    .p-works__singleContact .c-button {
        width: 100%;
        height: 65px;
    }

    .p-works__singleContact .c-button:after {
        width: 100%;
        height: 65px;
    }

    .p-works__singleContact .c-button {
        font-size: 1.6rem;
    }

    .p-works__archiveLists__wrap {
        padding: 36px 30px 40px;
    }

    .p-single__worksSubtitle {
        font-size: 3rem;
        margin: 0 0 40px;
    }

    .p-single__worksLists__wrap {
        padding: 40px 0 70px;
    }

    .p-works__single {
        margin: 0 0 70px;
    }

    .p-works__single .p-topWorks__text {
        width: 500px;
    }

    .p-works__single .p-topWorks__text {
        padding: 40px 0;
    }

    .p-works__single .p-topWorks__title {
        font-size: 2.5rem;
        margin: 0 0 30px;
    }

    .p-works__single .p-topWorks__archive_name {
        color: #9B9B9B;
        font-size: 1.6rem;
        margin: 0 0 77px;
    }

    .p-works__single .p-topWorks__attention {
        font-size: 1.8rem;
        color: #2067A5;
    }

    .p-single__worksLists__wrap .p-topWorks__lists {
        margin: 0 0 35px;
    }

    .p-works__archiveLists__wrap {
        margin: 0 0 50px;
    }
}

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

    .p-works__archiveLists li {
        width: 48%;
    }

    .p-works__archiveLists li a {
        font-size: 1.4rem;
    }

    .p-works__list {
        width: 100%;
    }

    .p-works__list:nth-child(n+2) {
        margin-top: 50px;
    }

    .p-works__archiveLists {
        margin: 0 0 50px;
    }

    .p-works__archiveLists li:not(:nth-child(2n+2)) {
        margin-right: 2%;
    }

    .p-works__archiveLists li:nth-child(n+3) {
        margin-top: 5px;
    }

    .p-works__archive .c-page__intro {
        margin: 0 0 50px;
    }

    .p-works__title {
        font-size: 1.8rem;
    }

    .p-works__archive_name {
        font-size: 1.2rem;
    }

    .p-works__img img {
        border-radius: 12px 12px 0 0;
    }

    .p-works__text {
        padding: 30px 10px 20px;
        border-radius: 0 0 12px 12px;
        height: auto;
    }

    .p-works__archive .c-page__intro {
        margin: 0 0 40px;
    }

    .p-works__archive {
        margin: 0 0 60px;
    }

    .p-works__singleTitle {
        font-size: 2.2rem;
        margin: 0 0 40px;
    }

    .p-works__singleName {
        margin: 0 0 10px;
    }

    .p-works__singleExplanation {
        font-size: 1.4rem;
    }

    .p-works__singleInfo {
        margin: 0 0 10px;
        padding: 20px 15px;
        font-size: 1.6rem;
    }

    .p-works__singleInfo02 {
        margin: 0 0 40px;
    }

    .p-works__singleContact .c-button {
        height: 50px;
    }

    .p-works__singleContact .c-button:after {
        height: 50px;
    }

    .p-single__worksSubtitle {
        font-size: 2.2rem;
    }

    .p-works__archiveLists__wrap {
        padding: 36px 15px 40px;
    }

    .p-works__archiveLists li a {
        font-size: 1.2rem;
    }

    .p-works__archiveLists__wrap {
        border-radius: 12px;
    }

    .p-works__single .p-topWorks__title {
        font-size: 1.8rem;
        margin: 0 0 20px;
    }

    .p-works__single .p-topWorks__archive_name {
        font-size: 1.4rem;
        margin: 0 0 45px;
    }

    .p-works__single .p-topWorks__attention {
        font-size: 1.3rem;
    }

    .p-works__single .p-topWorks__text {
        height: 165px;
        padding: 30px 15px 20px;
        width: 280px;
    }
    
    .works_slider .works_img img {
        height: 240px;
    }
    
    .works_img_thumb img {
        height: 65px;
    }
}

/*----------------------------------------
	News
----------------------------------------*/

.p-news__archiveWrap {
    width: 55.5%;
}

.p-news__archiveArticle a {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(198, 198, 198, 0.4);
    position: relative;
    transition: 0.3s;
}

.p-news__archiveArticle a:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 18px 18px;
    border-color: transparent transparent #006FB9 transparent;
    position: absolute;
    bottom: 0;
    right: 0;
}

.p-news__archiveArticle a:hover {
    opacity: 0.7;
}

.p-news__archiveArticle:last-child a {
    border-bottom: 1px solid rgba(198, 198, 198, 0.4);
}

.p-news__archiveInfo {
    display: flex;
    align-items: center;
    margin: 0 30px 0 0;
}

.p-news__archiveTime {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.53);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin: 0 10px 0 0;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    margin: 0 12px 0 0;
}

.p-news__archiveTitle {
    font-size: 1.7rem;
    letter-spacing: 0.06em;
    font-weight: bold;
    color: #404040;
}

.p-news__archiveCategory {
    background-color: #006FB9;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    height: 21px;
    border-radius: 11px;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
}

.post-type-archive-news .p-news__archiveWrap,
.tax-news_category .p-news__archiveWrap {
    width: 100%;
}

.single-info {
    display: flex;
    align-items: center;
    margin: 0 0 28px;
}

.single-info__wrap {
    display: flex;
    align-items: center;
    margin: 0 0 6px;
}

.single_info__category a {
    background-color: #006FB9;
    color: #fff;
    display: inline-block;
    padding: 3px 14px 2px;
    height: 21px;
    border-radius: 11px;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
}

.single-info__time {
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    color: rgba(0, 0, 0, 0.53);
    margin: 0 12px 0 0;
}

.single-news__title {
    font-size: 3.5rem;
    line-height: 1.486;
    letter-spacing: 0.08em;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    margin: 6px 0 50px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(112, 112, 112, 0.3);
}

.single-news__text {
    margin: 0 0 120px;
}

.single-all__button {
    width: 400px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #006FB9;
    border-radius: 40px;
}

.single-all__button a {
    display: block;
    color: #fff;
}

.single-news__box {
    width: 63.3%;
}

.single-news__wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.single-news .p-sidebar__archive {
    width: 30%;
}

@media screen and (max-width:1000px) {
    .single-news__wrap {
        padding: 0;
    }
}

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

    .p-news__archiveArticle a {
        flex-direction: column;
        align-items: flex-start;
    }

    .p-news__archiveInfo {
        margin: 0 0 10px;
    }

    .p-news__archiveTitle {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .p-news__archiveTime {
        font-size: 1.2rem;
    }

    .p-news__archiveCategory {
        font-size: 1.2rem;
    }

    .single-news__text {
        margin: 0 0 70px;
    }

    .single-news__wrap {
        flex-direction: column;
    }

    .single-news__box {
        width: 100%;
    }

    .single-news__title {
        font-size: 3rem;
        line-height: 1.2;
        margin: 6px 0 30px;
        padding-bottom: 15px;
    }

    .single-info {
        margin: 0 0 18px;
    }

    .p-top__news {
        background-color: transparent;
        padding: 70px 0;
    }

    .p-top__newsWrap {
        padding: 50px 40px;
        flex-direction: column;
        border-radius: 10px;
    }

    .p-news__archiveWrap {
        width: 100%;
    }

    .p-news__archiveWrap {
        margin: 0 0 30px;
    }

    .p-top__news:before {
        display: none;
    }

    .single-news .p-sidebar__archive {
        width: 100%;
    }

    .single-all__button {
        width: 300px;
        height: 45px;
        font-size: 1.6rem;
        margin: 0 auto 60px;
    }
}

@media screen and (max-width:590px) {
    .single-news .p-sidebar__archive {
        width: 100%;
    }

    .single-news__title {
        font-size: 2.2rem;
    }

    .p-top__newsWrap {
        padding: 50px 25px;
    }

    .p-news__archiveTitle {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .single-news__text {
        font-size: 1.5rem;
        margin: 0 0 50px;
    }

    .single-news .single-info__time {
        margin: 0 10px 0 0;
    }
}

@media screen and (max-width:450px) {
    .single-all__button {
        width: 100%;
    }
}

/*----------------------------------------
	sidebar
----------------------------------------*/

.p-sidebar__archive {
    background-color: #fff;
    border: 1px solid rgba(112, 112, 112, 0.3);
    border-radius: 5px;
    padding: 40px 26px;
}

.p-sidebar__archiveTitle {
    position: relative;
    color: #006FB9;
    line-height: 1.5;
    margin: 0 0 30px;
    padding: 0 0 7px;
    font-size: 2.4rem;
    letter-spacing: 0.08em;
    border-bottom: 2px solid #006FB9;
}

.p-sidebar__archiveLists li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(112, 112, 112, 0.3);
    font-size: 2rem;
    letter-spacing: 0.08em;
    font-weight: bold;
    text-align: center;
}

.p-sidebar__archiveLists li:first-child {
    border-top: 1px solid rgba(112, 112, 112, 0.3);
}

.p-sidebar__archiveLists li a {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

@media screen and (max-width:820px) {
    .p-sidebar__archiveTitle {
        font-size: 1.8rem;
        margin: 0 0 20px;
    }

    .p-sidebar__archiveLists li {
        font-size: 1.8rem;
        padding: 15px 0;
    }

    .p-sidebar__archive {
        padding: 30px 12px;
    }

    .p-sidebar__archive {
        width: 100%;
    }
}

@media screen and (max-width:590px) {
    .p-sidebar__archiveLists li {
        font-size: 1.5rem;
        padding: 12px 0;
    }
}

/*----------------------------------------
	Outsourcing
----------------------------------------*/

.p-outsourcing {
    margin: 0 0 130px;
}

.p-outsourcingImg {
    display: flex;
    justify-content: space-between;
    margin: 0 0 100px;
}

.p-outsourcingImg figure {
    width: 46%;
}

.p-outsourcingImg figure img {
    width: 100%;
}

.p-outsourcingImg figure figcaption {
    margin: 20px 0 0;
    font-weight: bold;
    line-height: 1.75;
	text-align: center;
}

.p-outsourcing h3 {
    background-color: #2067A5;
    border-radius: 10px;
    width: 100%;
    padding: 30px 10px;
    text-align: center;
    color: #fff;
    line-height: 1.8;
    font-size: 2.5rem;
}

@media screen and (max-width: 1000px) {
    .p-outsourcing h3 {
        font-size: 2rem;
        padding: 30px 20px;
    }
}

@media screen and (max-width: 768px) {
    .p-outsourcing {
        margin: 0 0 70px;
    }
}

@media screen and (max-width: 590px) {
    .p-outsourcing h3 {
        font-size: 1.7rem;
        padding: 30px 20px;
        line-height: 1.5;
    }

    .p-outsourcingImg {
        flex-direction: column;
        margin: 0 0 50px;
    }

    .p-outsourcingImg {
        flex-direction: column;
    }

    .p-outsourcingImg figure {
        width: 100%;
    }

    .p-outsourcingImg figure:first-child {
        margin: 0 0 50px;
    }
}