@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: #333;
  --white: #fff;
  --blue: #54b0e4;
  --blue_dark: #1088cc;    
}

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: var(--text);
    font-weight: 500;
    overflow-x: hidden;
}

/* 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.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;
    }    
}

.zoomIn {
	animation-name: zoomInAnime;
	animation-duration: 2s;
	animation-fill-mode: forwards;
}
@keyframes zoomInAnime{
    from {
        transform: scale(.2);
    }
    to {
        transform: scale(1);
    }
}

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

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

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

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

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

.header {
	position: fixed;
    z-index: 9999;
	top: 0;
	left: 0;
	width: 100%;
    height: 135px;
	background: var(--white);
}
.header .wrap_wide {
	display: flex;
	justify-content: space-between;
}
.header .logo {
    display: flex;
    align-items: center;
    /*height: 135px;*/
  height: 110px;
}
.header .logo img {
    /*width: 112px;*/
  width: 300px;
    margin-left: 4vw;
}
.p1754380178048 {
    color: #333;
    margin-left: 4vw;
      margin-top: 1vw;
}
.header .menu {
    display: flex;
    justify-content: flex-end;
}
.header .menu .ul {
    display: flex;
    margin: 66px 30px 0 0;
}
.header .menu .ul .li {
    position: relative;
}
.header .menu .ul .li a,
.header .menu .ul .li.parent > p {
    display: block;
    padding: 10px 30px;
    color: var(--text);
    font-size: 16px;
    transition: .5s;
}
.p1754380178048 {
    color: #333;
}
.header .menu .ul .li a:hover,
.header .menu .ul .li.parent > p:hover {
    color: #999;
}
.header .menu .ul .li.parent > p {
    position: relative;
    padding-right: 50px;
    cursor: pointer;
}
.header .menu .ul .li.parent > p::after {
    display: block;
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    right: 25px;
    width: 8px;
    height: 8px;
    border-top: solid 2px var(--blue);
    border-right: solid 2px var(--blue);
    transform: rotate(135deg);
}
.header .menu .ul .li.parent.open > p::after {
    top: calc(50% - 1px);
    transform: rotate(-45deg);
}
.header .menu .ul .li.parent .child {
    display: none;
    position: absolute;
    top: 40px;
    left: -38px;
    width: 240px;
}
.header .menu .ul .li.parent .child a {
    padding: 10px;
    border: 1px solid var(--blue);
    background: var(--white);
    border-radius: 20px;
    text-align: center;
}
.header .menu .ul .li.parent .child a:hover {
    background: var(--blue);
    color: var(--white);    
}
.h_btn {
    width: 158px;
}
.h_btn a:hover {
    opacity: .7;
}

@media screen and (min-width: 768px){
    .sp_menu {
        display: block!important;
    }
    .spbtn {
        display: none!important;
    }
}
@media screen and (min-width: 768px) and (max-width: 1500px){
 
    .header .logo img {
        margin-left: 0;
    }
    
}
@media screen and (min-width: 768px) and (max-width: 1260px){
.p1754380178048 {
    padding: 5px 5px 0 5px;
      font-size:10px;
}
    .header,
    .header .logo {
                height: 11vw;/*height: 12vw;*/
    }
    .header .logo img {
        /*width: 10vw;*/
              width: 20vw;
    }
  .p1754380178048 {
            margin-left: 0;
        color: #333;
        margin-top: 2vw;
        margin-bottom: 2vw;
}
  .header .logo {
    display: flex;
    align-items: flex-start;
  }
    .header .menu .ul {
        margin: 5vw 2.5vw 0 0;
    }
    .header .menu .ul .li a,
    .header .menu .ul .li.parent > p {
        /*padding: 1vw 3vw;*/
              padding: 1vw 2vw;
        font-size: 1.5vw;
    }
    .header .menu .ul .li.parent > p {
        padding-right: 4vw;
    }
    .header .menu .ul .li.parent > p::after {
        top: calc(50% - .5vw);
        right: 2vw;
        width: .8vw;
        height: .8vw;
    }
    .header .menu .ul .li.parent.open > p::after {
        top: calc(50% - .1vw);
    }
    .header .menu .ul .li.parent .child {
        top: 4vw;
        left: -3.5vw;
        width: 22vw;
    }
    .header .menu .ul .li.parent .child a {
        padding: 1vw;
        border-radius: 2vw;
    }
    .h_btn {
        width: 14vw;
    }

}
@media screen and (max-width: 767px){
    .p1754380178048 {
      font-size:12px;
              margin-top: 0;
}
 .header .title {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
}
    .header,
    .header .logo {
        height: 60px;
    }
    .header .logo img {
        /*width: 60px;*/
              width: 150px;
        margin-left: 6vw;
    }
    .header .wrap_wide {
        display: block;
        padding: 0;
    }
    .header .menu {
        display: block;
        background: var(--white);
        padding: 5px 0 10px;
    }
    .header .menu .ul {
        display: block;
        margin: 0;
    }
    .header .menu .ul .li a,
    .header .menu .ul .li.parent > p {
        padding: 10px;
        text-align: center;
    }
    .header .menu .ul .li.parent > p {
        padding-right: 10px;
    }
    .header .menu .ul .li.parent > p::after {
        right: calc(50% - 75px);
    }
    .header .menu .ul .li.parent .child {
        position: relative;
        top: auto;
        left: auto;
        margin: 10px auto;
    }
    .h_btn {
        width: auto;
        display: flex;
        justify-content: center;
        margin: 10px 0;
    }
    .h_btn img {
        border-radius: 10px;
    }
    
}
@media screen and (max-width: 400px){
  .header .logo img {
        /*width: 60px;*/
              width: 120px;
        margin-left: 6vw;
    }
}

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

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

    .spbtn {
        position: absolute;
        top: 10px;
        right: 6vw;
        display: block;
        width: 40px;
        height: 40px;
        cursor: pointer;
    }
    .spbtn > div {
        position: absolute;
        top: 50%;
        left: 0;
        display: block;
        width: 100%;
        height: 2px;
        background: #000;
        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 -----*/

.f_contact {
    padding: 120px 0;
    background: url("/system_panel/uploads/images/bg_contact_1.jpg") center no-repeat;
    background-size: cover;
}
.f_contact .inner {
    padding: 25px 100px 50px;
    background: url("/system_panel/uploads/images/bg_contact_2.png");
    border-radius: 10px;
}
.f_contact .inner .ttl {
    text-align: right;
}
.f_contact .inner .ttl img {
    width: 660px;
}
.f_contact .inner .ul {
    padding: 50px 50px;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
}
.f_contact .inner .ul .li:nth-of-type(1) {
    width: min(298px,100%);
}
.f_contact .inner .ul .li:nth-of-type(2),
.f_contact .inner .ul .li:nth-of-type(3) {
    width: min(280px,100%);
}
.f_contact .inner .ul .li a:hover {
    opacity: .5;
}

.footer {
    position: relative;
    background: #eff9fe;
    padding: 50px 0;
}
.pagetop {
    position: absolute;
    top: 100px;
    right: 6vw;
    width: 53px;
    cursor: pointer;
    transition: .5s;
}
.pagetop:hover {
    opacity: .8;
}
.footer .frame {
    display: flex;
    align-items: center;
}
.footer .frame .conts {
    width: 50%;
}
.footer .frame .conts .logo {
    /*width: 147px;*/
    width: 300px;
}
.footer .frame .conts .pm {
    margin: 20px 0 30px;
}
.footer .frame .nav {
    width: 50%;
    display: flex;
    justify-content: space-between;
}
.footer .frame .nav .ul {
    width: 47.5%;
}
.footer .frame .nav .ul .li {
    margin: 25px 0;
} 
.footer .frame .nav .ul .li a {
    display: block;
    position: relative;
    padding: 5px 0 5px 45px;
    color: var(--text);
}
.footer .frame .nav .ul .li a::before,
.footer .frame .nav .ul .li a::after {
    display: block;
    content: "";
    position: absolute;
    transition: .5s;
}
.footer .frame .nav .ul .li a::before {
    top: 3px;
    left: 0;
    width: 22px;
    height: 22px;
    background: var(--blue);
    border-radius: 50%;
}
.footer .frame .nav .ul .li a::after {
    top: 10px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-top: solid 2px var(--white);
    border-right: solid 2px var(--white);
    transform: rotate(45deg);
}
.footer .frame .nav .ul .li a:hover::before {
    left: 5px;
}
.footer .frame .nav .ul .li a:hover::after {
    left: 11px;
}

.copyright {
    background: #a2d9f4;
    padding: 15px;
    color: #1088cc;
    text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 1700px){
    .pagetop {
        right: 30px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1260px){
    
    .f_contact {
        padding: 8vw 0;
    }
    .f_contact .inner {
        padding: 2vw 5vw 4vw;
    }
    .f_contact .inner .ttl {
        text-align: right;
    }
    .f_contact .inner .ttl img {
        width: 55vw;
    }
    .f_contact .inner .ul {
        padding: 4vw 3vw;
    }
    .f_contact .inner .ul .li:nth-of-type(1) {
        width: 32%;
    }
    .f_contact .inner .ul .li:nth-of-type(2),
    .f_contact .inner .ul .li:nth-of-type(3) {
        width: 31%;
    }

    .footer {
        padding: 4vw 0;
    }
    .pagetop {
        top: 8vw;
        right: 30px;
        width: 4.5vw;
    }
    .footer .frame .conts .logo {
        /*width: 13.33vw;*/
      width: 20vw;
    }
    .footer .frame .conts .pm {
        margin: 2vw 0 3vw;
    }
    .footer .frame .nav .ul .li {
        margin: 2vw 0;
    } 
    .footer .frame .nav .ul .li a {
        padding: .5vw 0 .5vw 4vw;
    }
    .footer .frame .nav .ul .li a::before {
        top: .3vw;
        left: 0;
        width: 2vw;
        height: 2vw;
    }
    .footer .frame .nav .ul .li a::after {
        top: 1vw;
        left: .55vw;
        width: .66vw;
        height: .66vw;
    }
    .footer .frame .nav .ul .li a:hover::before {
        left: .5vw;
    }
    .footer .frame .nav .ul .li a:hover::after {
        left: 1.1vw;
    }

    .copyright {
        padding: 1.5vw;
    }
    
}
@media screen and (max-width: 767px){
    
    .f_contact {
        padding: 50px 0;
    }
    .f_contact .inner {
        padding: 20px 4vw 30px;
    }
    .f_contact .inner .ttl {
        text-align: center;
    }
    .f_contact .inner .ul {
        padding: 30px 4vw 10px;
        display: block;
    }
    .f_contact .inner .ul .li {
        margin: 0 auto 20px;
    }
    .f_contact .inner .ul .li a:hover {
        opacity: 1;
    }

    .pagetop {
        top: 50px;
        right: 6vw;
        width: 40px;
    }
    .footer .frame {
        display: block;
    }
    .footer .frame .conts {
        width: 100%;
    }
    .footer .frame .conts .logo {
                width: 150px;/*120*/
        margin: 0 auto;
    }
    .footer .frame .conts .pm {
        margin: 30px 0 0;
        text-align: center;
    }
    .footer .frame .nav {
        display: none;
    }

    
}

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

.main {
	margin-top: 135px;
}

.p {
    font-size: 17px; 
}
.pm {
    font-size: 17px;
    line-height: 2;
}

.m_fv .wrap_wide {
    position: relative;
}
.m_fv .pic img {
    border-radius: 10px;
}
.m_fv .ttl {
    position: absolute;
    top: calc(50% - 30px);
    left: 8vw;
    z-index: 2;
}
.m_fv .ttl img {
    height: 60px;
}

.m_btn {
    width: 272px;
}
.m_btn.m_center {
    margin-left: auto;
    margin-right: auto;
}
.m_btn a {
    position: relative;
    display: block;
    padding: 20px 40px;
    background: var(--white);
    border: 1px solid var(--blue);
    border-radius: 50px;
    color: var(--blue);
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}
.m_btn a:hover {
    background: var(--blue);
    color: var(--white);
}
.m_btn a::before,
.m_btn a::after {
    display: block;
    content: "";
    position: absolute;
    transition: .5s;
}
.m_btn a::before {
    top: calc(50% - 11px);
    right: 15px;
    width: 22px;
    height: 22px;
    background: var(--blue);
    border-radius: 50%;
}
.m_btn a::after {
    top: calc(50% - 4px);
    right: 24px;
    width: 8px;
    height: 8px;
    border-top: solid 2px var(--white);
    border-right: solid 2px var(--white);
    transform: rotate(45deg);
}
.m_btn.m_back a::before {
    right: auto;
    left: 15px;
}
.m_btn.m_back a::after {
    right: auto;
    left: 24px;
    transform: rotate(-135deg);
}
.m_btn a:hover::before {
    background: var(--white);
}
.m_btn a:hover::after {
    border-color: var(--blue);
}

.m_center {
    text-align: center;
}
.m_sp {
    display: none;
}

.m_title_h3,
.m_title_h4 {
    text-align: center;
}
.m_title_h3 img {
    height: 84px;
}
.m_title_h3 .subttl img {
    margin-top: 15px;
    height: 58px;
}
.m_title_h4 img {
    height: 80px;
}



.mb15 {
    margin-bottom: 15px!important;
}
.mb30 {
    margin-bottom: 30px!important;
}
.mb45 {
    margin-bottom: 45px!important;
}
.mb60 {
    margin-bottom: 60px!important;
}
.mb90 {
    margin-bottom: 90px!important;
}

@media screen and (min-width: 768px) and (max-width: 1700px){
    
    .m_fv .ttl {
        top: calc(50% - 2vw);
        left: 6vw;
    }
    .m_fv .ttl img {
        height: 4vw;
    }
    
}
@media screen and (min-width: 768px) and (max-width: 1260px){

	.main {
		margin-top: 12vw;
	}
    .m_fv .ttl {
        top: calc(50% - 2vw);
        left: 6vw;
    }
    .m_fv .ttl img {
        height: 4vw;
    }
	
  	.p,
    .pm {
        font-size: 1.6vw;
    }

    .m_btn a {
        padding: 2vw 40px;
        font-size: 1.6vw;
    }
    .m_title_h3 img {
        height: 7vw;
    }
    .m_title_h3 .subttl img {
        margin-top: 1.5vw;
        height: 4.75vw;
    }
    .m_title_h4 img {
        height: 6.66vw;
    }

    
    .mb15 {
        margin-bottom: 1.5vw!important;
    }
    .mb30 {
        margin-bottom: 3vw!important;
    }
    .mb45 {
        margin-bottom: 4vw!important;
    }
    .mb60 {
        margin-bottom: 5vw!important;
    }
    .mb90 {
        margin-bottom: 7.2vw!important;
    }

}
@media screen and (max-width: 767px){
    
	.main {
		margin-top: 60px;
	}
    .m_fv .wrap_wide {
        padding: 0;
    }
    .m_fv .pic img {
        height: 180px;
        border-radius: 0;
    }
    .m_fv .ttl {
        top: calc(50% - 15px);
        left: 0;
        text-align: center;
        width: 100%;
    }
    .m_fv .ttl img {
        height: 30px;
    }
	
    .p,
    .pm {
        font-size: 16px;
    }
    
    .sp_left {
        text-align: left;
    }
    .m_pc {
        display: none;
    }
    .m_sp {
        display: block;
    }
    
    .m_btn {
        margin-left: auto;
        margin-right: auto;
    }
    .m_title_h3 img {
        height: auto;
        max-height: 50px;
    }
    .m_title_h3 .subttl img {
        height: auto;
        max-height: 40px;
    }
    .m_title_h4 img {
        height: auto;
        max-height: 45px;
    }
    
    
    .mb15 {
        margin-bottom: 10px!important;
    }
    .mb30 {
        margin-bottom: 24px!important;
    }
    .mb45 {
        margin-bottom: 32px!important;
    }
    .mb60 {
        margin-bottom: 40px!important;
    }
    .mb90 {
        margin-bottom: 50px!important;
    }
    
}
@media screen and (min-width: 768px){
.spnone{
  display:none;
  }
}