@charset "utf-8";

/*-----------------------
    common.css
------------------------*/

/*----- font -----*/

@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

/*----- reset -----*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%;
	vertical-align: baseline; background: transparent;
}
body {
	line-height: 1; color: #555;
	font-family: "メイリオ","Meiryo","ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック","MS P Gothic","Osaka","Hiragino Kaku Gothic Pro", Verdana,Arial, Helvetica, sans-serif; 
	-webkit-text-size-adjust: none;
}
ol, ul { list-style: none; }

:focus { outline: 0; }
img { max-width: 100%; }

/* tables still need 'cellspacing="0"' in the markup */
table { border-collapse: collapse; border-spacing: 0; }

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

:root {
  --text: #121212;
  --text_hover: #666;
  --white: #fff;
  --blue: #085e97;
  --blue_light: #f2f7fa;
}

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: var(--text);
    overflow-x: hidden;
    font-weight: 500;
    /*
    display: none;
    */
}
/*
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    pointer-events: none;    
    opacity: 0;
    -webkit-transition: opacity .8s ease;
    transition: opacity .8s ease;
}
body.fadeout::after {
    opacity: 1;
}
body.fixed {
    position: fixed;
    width: 100%;
}
*/

/* for CMS */
body:has(#wrapper){display:block;}
body:has(#wrapper)::after {position:relative;z-index:auto;pointer-events:all;opacity:1;background:none;}

a {
	transition: .5s;
}
a:hover {
    text-decoration: none;
}

.ojf img {
    width: 100%;
    object-fit: cover;
}

/* PC時Tel発信無効化 */
@media screen and (min-width: 769px){
    
    a[href^="tel"] {
        pointer-events: none;
    }
    
}

/*--- fadein ---*/

/* for CMS */
#wrapper .fadein{opacity:1;}

.fadein {
    opacity: 0;
    transform: translate(0, 60px);
    transition: all 1s;
}
.fadein.left {
    transform: translate(-60px, 0);
}
.fadein.scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}
.fadein_first {
    animation-name: fadeIn1s;
    animation-delay: 1s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(60px);
    opacity: 0;
}
@keyframes fadeIn1s {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }    
}

.fadeUp {
    opacity: 0;
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes fadeUpAnime{
  from {
    transform: translateY(60px);
    opacity: 0;
  }
  to {
	transform: translateY(0);
    opacity: 1;
  }
}

/*----- wrap -----*/

.wrap {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px;
}
.wrap_wide {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 30px;
}
.wrap_narrow {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 30px;
}

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

    .wrap,
    .wrap_wide,
    .wrap_narrow {
        padding: 0 6vw;
    }
    
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 85px;
    background: var(--white);
}
.header .catch {
    position: absolute;
    top: 7px;
    left: calc(6vw + 210px + 20px);
    font-size: 13px;
    transition: .5s;
}
.header .inner {
    display: flex;
    justify-content: space-between;
}
.header .inner .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 210px;
    height: 120px;
    margin-left: 6vw;
    background: var(--white);
    transition: 1s;
}
.header .inner .logo img {
    width: 160px;
}

.header .menu {
    display: flex;
    justify-content: flex-end;
}
.header .menu .ul {
    display: flex;
    margin: 30px 35px 0 0;
}
.header .menu .ul .li a {
    display: block;
    padding: 20px 35px;
    color: var(--text);
    font-weight: 700;
}
.header .menu .ul .li a:hover {
    color: var(--text_hover);
}
.header .menu .tel {
    margin-right: 15px;
    font-size: 13px;
    font-weight: 700;
}
.header .menu .tel .text {
    margin-top: 8px;
}
.header .menu .tel .tel img {
    width: 220px;
    margin: 9px 0;
}
.header .menu .mail a {
    display: block;
    width: 140px;
    height: 85px;
        background: #1c60a9;
    color: var(--white);
    text-align: center;
}
.header .menu .mail a:hover {
    background: #388ec7;
}
.header .menu .mail .icon img {
    margin: 20px 0 10px;
    width: 27px;
}
.header .menu .mail p {
    font-size: 15px;
}

.header:has(+.top).on .catch {
    left: 6vw;
}
.header:has(+.top).on .inner .logo {
    opacity: 0;
}

@media screen and (min-width: 768px){
    .sp_menu {
        display: block!important;
    }
    .spbtn {
        display: none!important;
    }
}
@media screen and (min-width: 768px) and (max-width: 1700px){
    
    .header .catch {
        left: calc(30px + 210px + 10px);
    }
    .header .inner .logo {
        margin-left: 30px;
    }
    .header .menu .ul .li a {
        padding: 20px 20px;
    }

    .header:has(+.top).on .catch {
        left: 15px;
    }
    
}
@media screen and (min-width: 768px) and (max-width: 1260px){
    
    .header {
        height: 7.5vw;
    }
    .header .catch {
        top: .7vw;
        left: 19vw;
        font-size: 1vw;
    }
    .header .inner .logo {
        width: 18vw;
        height: 10vw;
        margin-left: 0;
    }
    .header .inner .logo img {
        width: 13.33vw;
    }

    .header .menu .ul {
        margin: 2.5vw 2vw 0 0;
    }
    .header .menu .ul .li .p {
        font-size: 1.4vw;
    }
    .header .menu .ul .li a {
        padding: 2vw 1.2vw;
    }
    .header .menu .tel {
        margin-right: 1vw;
        font-size: 1vw;
    }
    .header .menu .tel .text {
        margin-top: .8vw;
    }
    .header .menu .tel .tel img {
        width: 20vw;
        margin: .9vw 0;
    }
    .header .menu .mail a {
        width: 12vw;
        height: 7.5vw;
    }
    .header .menu .mail .icon img {
        margin: 1.5vw 0 1vw;
        width: 2.4vw;
    }
    .header .menu .mail p {
        font-size: 1.5vw;
    }    
    
}
@media screen and (max-width: 767px){
    
    .header {
        height: 60px;
    }
    .header .catch {
        display: none;
    }
    .header .inner {
        display: block;
    }
    .header .inner .logo {
        width: 80px;
        height: 60px;
        margin-left: 6vw;
    }
    .header .inner .logo img {
        width: 80px;
    }

    .header .sp_menu {
        background: var(--white);
        padding-bottom: 20px;
    }
    .header .menu {
        display: block;
    }
    .header .menu .ul {
        display: block;
        margin: 0;
    }
    .header .menu .ul .li a {
        padding: 15px;
        text-align: center;
    }
    .header .menu .tel {
        margin-right: 0;
        font-size: 11px;
        text-align: center;
    }
    .header .menu .tel .text {
        margin-top: 20px;
    }
    .header .menu .tel .tel img {
        margin: 12px 0 9px;
    }
    .header .menu .mail a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 250px;
        height: 45px;
        margin: 20px auto 0;
    }
    .header .menu .mail .icon img {
        margin: 0 10px 0 0;
        width: 22px;
    }
    .header .menu .mail p {
        font-size: 15px;
    }     
    
    .header:has(+.top).on .inner .logo {
        opacity: 1;
    }
    
}

/*----- nav -----*/

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

    .spbtn {
        position: absolute;
        top: 10px;
        right: 4vw;
        display: block;
        width: 40px;
        height: 40px;
        cursor: pointer;
    }
    .spbtn > div {
        position: absolute;
        top: 50%;
        left: 0;
        display: block;
        width: 100%;
        height: 2px;
        background: var(--text);
        transition: .2s;
    }
    .spbtn > div:nth-of-type(1) {
        top: 8px;
    }
    .spbtn > div:nth-of-type(3) {
        top: 32px;
    }
    .spbtn.active > div {
        top: 50%;
        transform: rotate(37.5deg);
    }
    .spbtn.active > div:nth-of-type(2) {
        display: none;
    }
    .spbtn.active > div:nth-of-type(3) {
        top: 50%;
        transform: rotate(-37.5deg);
    }
    
}

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

.footer_contact {
    padding: 60px 0;
    background: url("/system_panel/uploads/images/bg_contact.jpg") center no-repeat;
    background-size: cover;
    color: var(--white);
}
.footer_contact .frame {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.footer_contact .frame .box {
    width: 47%;
    padding: 25px 0;
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    text-align: center;
}
.footer_contact .frame .box .ttl {
    margin-bottom: 25px;
    font-size: 30px;
    font-weight: 900;
}
.footer_contact .frame .box .tel img {
    width: 303px;
    filter: brightness(0) invert(1);
}
.footer_contact .frame .box .time {
    margin-top: 15px;
    font-size: 13px;
}
.footer_contact .frame .box .mail {
    width: 260px;
    margin: auto;
}
.footer_contact .frame .box .mail a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    background: #1c60a9;
    color: var(--white);
    font-size: 16px;
}
.footer_contact .frame .box .mail a:hover {
    background: #38a0c7;
    text-decoration: none;
}
.footer_contact .frame .box .mail a .icon {
    margin-right: 10px;
    width: 22px;
}

.footer_info {
    position: relative;
    /*background: var(--blue);*/
  background: #1c60a9;
    color: var(--white);
    padding: 90px 0 40px; 
}
.footer_info .pagetop {
    position: absolute;
    z-index: 9;
    top: 100px;
    right: 6vw;
    width: 53px;
    cursor: pointer;
}
.footer_info .wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer_info .conts {
    width: 45%;
}
.footer_info .conts a {
    color: var(--white);
}
.footer_info .conts .logo {
    width: 160px;
    margin-bottom: 30px;
}
.footer_info .conts .logo img {
    filter: brightness(0) invert(1);
}
.footer_info .image {
    width: 53.1666%;
}
.copyright {
    width: 100%;
    margin-top: -10px;
    color: #b4bcc8;
    text-align: right;
}

@media screen and (min-width: 768px) and (max-width: 1700px){
    
    .footer_info .pagetop {
        top: 19px;
        right: 30px;
    }
    
}
@media screen and (min-width: 768px) and (max-width: 1260px){
    
    .footer_contact {
        padding: 5vw 0;
    }
    .footer_contact .frame {
        margin-top: 4vw;
    }
    .footer_contact .frame .box {
        width: 48%;
        padding: 2vw 0;
    }
    .footer_contact .frame .box .ttl {
        margin-bottom: 2vw;
        font-size: 2.5vw;
    }
    .footer_contact .frame .box .tel img {
        width: 27vw;
    }
    .footer_contact .frame .box .time {
        margin-top: 1vw;
        font-size: 1.3vw;
    }
    .footer_contact .frame .box .mail {
        width: 25vw;
    }
    .footer_contact .frame .box .mail a {
        padding: 1.5vw;
        font-size: 1.6vw;
    }
    .footer_contact .frame .box .mail a .icon {
        margin-right: 1vw;
        width: 2vw;
    }
    
    .footer_info {
        padding: 7.5vw 0 6vw; 
    }
    .footer_info .pagetop {
        top: 1.9vw;
        right: 30px;
        width: 4vw;
    }
    .footer_info .conts .logo {
        width: 14vw;
        margin-bottom: 3vw;
    }
    .copyright {
        margin-top: -1vw;
    }    
    
}
@media screen and (max-width: 767px){
    
    .footer_contact {
        padding: 50px 0;
    }
    .footer_contact .frame {
        display: block;
        margin-top: 30px;
    }
    .footer_contact .frame .box {
        margin: auto;
        width: min(400px,100%);
    }
    .footer_contact .frame .box:nth-of-type(1) {
        border-bottom: none;
    }
    .footer_contact .frame .box .ttl {
        margin-bottom: 20px;
        font-size: min(7vw,25px);
    }
    .footer_contact .frame .box .tel img {
        width: 240px;
    }
    .footer_contact .frame .box .time {
        margin-top: 10px;
        font-size: 12px;
    }

    .footer_info {
        padding: 50px 0 40px; 
    }
    .footer_info .pagetop {
        top: 50px;
        right: 6vw;
        width: 40px;
    }
    .footer_info .wrap {
        display: block;
    }
    .footer_info .conts {
        width: 100%;
    }
    .footer_info .conts .logo {
        width: 160px;
        margin-bottom: 30px;
    }
    .footer_info .conts .pm.address {
        font-size: min(4vw,14px);
    }
    .footer_info .image {
        margin: 30px auto 0;
        width: min(400px,100%);
    }
    .copyright {
        margin-top: 30px;
    }    
        
}

/*----- main -----*/

.main {
    margin-top: 85px;
}

.bg_blue {
    background: var(--blue_light);
}

.p,
.pm {
    font-size: 15px;
}
.pm {
    line-height: 2.7333;
}
.b {
    font-weight: 900;
}

.title_mv {
    position: relative;
}
.title_mv,
.title_mv .pic img {
    height: 270px;
}
.title_mv .ttl {
    position: absolute;
    bottom: 0;
    left: 6vw;
    display: inline-block;
    padding: 10px 40px;
    background: var(--white);
    font-size: 45px;
    font-weight: 900;
}

.m_title {
    margin-bottom: 30px;
}
.m_title .ttl {
    margin-bottom: 10px;
    font-size: 50px;
    font-weight: 900;
}
.m_title .sub {
    font-size: 13px;
}

.mt {
    margin-top: 45px;    
}
.mb {
    margin-bottom: 45px;    
}
.m_blue {
        color: #1c60a9;
}

.m_center {
    text-align: center;
}

.m_btn {
    position: relative;
    width: 250px;
}
.m_btn.m_center {
    margin-left: auto;
    margin-right: auto;
}
.m_box {
    position: relative;
    display: block;
    border: 1px solid var(--text);
}
.m_btn:after,
.m_btn:before,
.m_box:after,
.m_box:before {
    position: absolute;
    display: block;
    content: "";
    bottom: -4px;
    left: 3px;
    width: 250px;
    height: 1px;
    background: var(--text);
}
.m_box:after,
.m_box:before {
    width: 100%;
}
.m_btn:after,
.m_box:after {
    left: auto;
    right: -4px;
    width: 1px;
    height: 50px;
}
.m_box:after {
    height: 100%;
}
.m_btn a {
    position: relative;
    display: block;
    padding: 16px;
    border: 1px solid var(--text);
    color: var(--text);
    font-size: 16px;
    text-align: center;
}
.m_btn a::after,
.m_btn a::before {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--text);
    transition: .5s;
}
.m_btn a::after {
    top: calc(50% - 3px);
    left: 20px;
    width: 10px;
    height: 1px;
    transform: rotate(30deg);
}
.m_btn a:hover {
    background: #1c60a9;
    color: var(--white);
}
.m_btn a:hover::after,
.m_btn a:hover::before {
    background: var(--white);
}
.m_btn.m_white:after,
.m_btn.m_white:before {
    background: var(--white);
}
.m_btn.m_white a {
    border-color: var(--white);
    color: var(--white);
}
.m_btn.m_white a::after,
.m_btn.m_white a::before {
    background: var(--white);
}

.m_nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    gap: 35px 45px;
}
.work_nav .m_nav {
margin-top: 4rem;
}
.sdw {
    position: relative;
}
.sdw::after {
    position: absolute;
    z-index: -1;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    right: -15px;
    bottom: -15px;
    background: var(--blue_light);
}

.navi_top {
    padding: 90px 0 0;
}

@media screen and (min-width: 768px) and (max-width: 1700px){
    
    .title_mv .ttl {
        left: 30px;
    }
    
}
@media screen and (min-width: 768px) and (max-width: 1260px){

    .main {
        margin-top: 7.5vw;
    }
    
    .p,
    .pm {
        font-size: 1.5vw;
    }
    .pm {
        line-height: 2.5;
    }

    .title_mv,
    .title_mv .pic img {
        height: 20vw;
    }
    .title_mv .ttl {
        padding: 1vw 3vw;
        font-size: 4vw;
    }
    
    .m_title {
        margin-bottom: 3vw;
    }
    .m_title .ttl {
        margin-bottom: 1vw;
        font-size: 4.4vw;
    }
    .m_title .sub {
        font-size: 1.3vw;
    }
    
    .mt {
        margin-top: 4vw;    
    }
    .mb {
        margin-bottom: 4vw;    
    }
    
    .m_btn {
        width: 24vw;
    }
    .m_btn:after,
    .m_btn:before,
    .m_box:after,
    .m_box:before {
        bottom: -.4vw;
        left: .3vw;
        width: 24vw;
        height: 1px;
    }
    .m_box:after,
    .m_box:before {
        width: 100%;
    }
    .m_btn:after,
    .m_box:after {
        left: auto;
        right: -.4vw;
        width: 1px;
        height: 5vw;
    }
    .m_box:after {
        height: 100%;
    }
    .m_btn a {
        padding: 1.6vw;
        font-size: 1.6vw;
    }
    .m_btn a::after,
    .m_btn a::before {
        width: 3vw;
    }
    .m_btn a::after {
        top: calc(50% - .3vw);
        left: 2vw;
        width: 1vw;
        height: 1px;
    }    
    
    .m_nav {
        display: flex;
        gap: 3vw 4vw;
    }    

    .sdw::after {
        right: -1.5vw;
        bottom: -1.5vw;
    }

    .navi_top {
        padding: 7vw 0 0;
    }
    
}
@media screen and (max-width: 767px){

    .main {
        margin-top: 60px;
    }

    .p,
    .pm {
        font-size: 14px;
    }
    .pm {
        line-height: 2.2222;
    }

    .title_mv,
    .title_mv .pic img {
        height: 160px;
    }
    .title_mv .ttl {
        left: 6vw;
        padding: 8px 20px;
        font-size: min(7.5vw,30px);
    }

    .m_title .ttl {
        font-size: 30px;
    }
    .m_title .sub {
        font-size: 12px;
    }
    .sp_left {
        text-align: left;
    }
    .sp_left br {
        display: none;
    }
    
    .mt {
        margin-top: 30px;    
    }
    .mb {
        margin-bottom: 30px;    
    }
    
    .m_btn {
        margin-left: auto;
        margin-right: auto;
    }
    
    .m_nav {
        gap: 20px 20px;
    }

    .navi_top {
        padding: 50px 0 0;
    }
    
    
}


