﻿/** font **/

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@500&family=M+PLUS+1:wght@600&display=swap');

:root{
    --font-jp: 'M PLUS 1', 'Noto Sans JP', "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif!important;
    --font-en: 'Josefin Sans', 'Noto Sans JP', "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif!important;
}
.font_en, .top_cms_box .cms_title, .more, #info_title_box, #page_title, a[href^="tel:"], a[href^="mailto:"], header #header #header_menu ul, #bottom_menu, #info .info_txt h3, .drawer-menu, #page10, #intro .intro_no, #con_h .con_no{
    font-family: var(--font-en)!important;
}

.font_bold{
    font-weight: normal;
}

/** color **/

:root{
    --color1: #0cc6c6;
    --color2: #f7f7f2;
    --color3: #ed5926;
    --color4: #e5e5e5;
    --color5: #f9f9f9;
    --black: #222
}

/** other **/

.normal_img img, .square_img, .rectangle_img{
    border: solid 1px var(--black);
}

#wrap, #top_cms{
    background-color: transparent;
}

#main_img .main_img_wrap{
    background-image: url('./Dup/img/bg_img4.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 800px;
}
#main_img .main_img_wrap:before{
    display: none;
}
#main_img .main_img_wrap::after{
    position: absolute;
    content: "";
    opacity: 0;
    width: 200px;
    height: 200px;
    background-image: url('./Dup/img/bg_img3.png');
    background-size: contain;
    background-repeat: no-repeat;
    left: 10%;
    bottom: -15px;
    transition: 0.3s cubic-bezier(.13,.81,.73,1.23);
    transition-property: opacity, bottom;
}
#main_img .main_img_wrap.active::after{
    opacity: 1;
    bottom: -5px;
}
#main_img .main_img_wrap .catch{
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}
#main_img .human_wrap div{
    opacity: 0;
    width: 200px;
    transform: scale(0.9) translate(-50%, -50%);
    transition: 0.3s cubic-bezier(.13,.81,.73,1.23);
    transition-property: opacity, transform;
}
#main_img .human_wrap div.active{
    opacity: 1;
    transform: translate(-50%, -50%);
}
#main_img .human_wrap .hu1{
    top: 20%;
    left: 26%;
}
#main_img .human_wrap .hu2{
    top: 45%;
    left: 15%;
}
#main_img .human_wrap .hu3{
    top: 70%;
    left: 30%;
}
#main_img .human_wrap .hu4{
    top: 25%;
    left: 74%
}
#main_img .human_wrap .hu5{
    top: 55%;
    left: 85%;
}
#main_img .human_wrap .hu6{
    top: 80%;
    left: 70%;
}
#main_img .human_wrap div img{
    display: block;
    animation: anime2 2s cubic-bezier(.55,0,.36,1) infinite alternate;
}
@keyframes anime2 {
    0% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(-5px);
    }
}
#main_img .human_wrap .hu1 img, #main_img .human_wrap .hu5 img{
    animation-delay: 0s;
}
#main_img .human_wrap .hu2 img, #main_img .human_wrap .hu6 img{
    animation-delay: -0.5s;
}
#main_img .human_wrap .hu3 img, #main_img .human_wrap .hu4 img{
    animation-delay: -1s;
}

#intro .top_cms_box{
    background-color: var(--color5);
    border-top: solid 1px var(--black);
    border-bottom: solid 1px var(--black);
    position: relative;
}
#intro .top_cms_box::before{
    position: absolute;
    content: "";
    width: 200px;
    height: 200px;
    background-image: url('./Dup/img/bg_img2.png');
    background-size: contain;
    background-repeat: no-repeat;
    right: 16%;
    top: -161px;
    z-index: 1;
}

#logo .logo {
    width: 120px;
}

header #header #header_menu ul li{
    font-family: var(--font-jp);
}

#intro_bg{
    background-color: var(--color1);
    background-image: url('./Dup/img/bg_img.png');
    background-size: 100px;
    animation: anime1 5s linear infinite;
}
@keyframes anime1 {
    0% {
        background-position: top 0 right 0;
    }
    100% {
        background-position: top -100px right -100px;
    }
}
#intro_bg .intro_wrap{
    border-left: solid 1px var(--black);
    border-right: solid 1px var(--black);
}
#intro h2{
    font-family: var(--font-jp);
    color: var(--black);
}
#intro .intro_img{
    transform: none;
}
#intro .intro_img span.bgitem{
    transform: none;
    left: 10px;
    bottom: -10px;
}

.top_cms_box .cms_title h2{
    font-family: var(--font-jp);
}

.svg_box{
    display: none;
}

#contents{
    background-color: var(--color5);
    border-top: solid 1px var(--black);
    border-bottom: solid 1px var(--black);
}
#contents .con_box{
    border: solid 1px var(--black);
    box-shadow: 3px 3px 0 var(--black);
}
#contents .con_no{
    font-family: var(--font-en);
}
#contents h3{
    font-family: var(--font-jp);
}

#top_cms .top_cms_box{
    border-bottom: none;
    padding-bottom: 0;
}
#top_cms .top_cms_box .cms_title h2{
    color: var(--black);
    font-family: var(--font-jp);
}
.more a{
    border: solid 1px var(--black);
    box-shadow: 3px 3px 0 var(--black);
}
.more a:hover{
    box-shadow: none;
    border: solid 1px var(--black);
}

#info_title_box{
    border-top: solid 1px var(--black);
    border-bottom: solid 1px var(--black);
}
#info_title_box .info_title{
    font-family: var(--font-jp);
}
#info_title_box .info_title span{
    color: var(--black);
}

#page_title{
    border-bottom: solid 1px var(--black);
}
#page_title h2{
    font-family: var(--font-jp);
}
#page_title #filter_white{
    background-color: rgba(247,247,242,0.6)!important;
}

.cate_title{
    font-family: var(--font-jp);
	background-color: transparent;
	padding: 0;
	margin: 0;
	display: block;
	border: none;
	width: 100%!important;
	font-size: 24px;
	text-align: left;
	padding-bottom: 10px!important;
	margin-bottom: 50px;
	border-bottom: solid 2px;
	color: var(--black);
	font-weight: normal
}

.box_title, .box_title1, .box_title2{
    font-family: var(--font-jp);
}

.cms_5-c .box_txt1::before, #cms_5-c .box_txt1::before{
    font-family: var(--font-jp);
}

.date, .pager{
    font-family: var(--font-en);
}

footer > div{
    border-top: solid 1px var(--black);
}

#foot_banner a{
    font-family: var(--font-jp);
    border: solid 1px var(--black);
    color: #fff;
}

#page-top a{
    border: solid 1px var(--black);
}

.footer_banner_wrap{
    z-index: 99;
    right: 90px;
    bottom: 10px;
}
#copyright {
    padding-bottom: 100px;
}


/** tablet 780 **/
@media screen and (max-width: 768px){
#main_img .main_img_wrap{
    background-image: url('./Dup/img/bg_img4_sp.png');
    height: 120vw;
    background-size: cover;
}
#main_img .main_img_wrap::after{
    left: 0;
}
#main_img .human_wrap .hu3 {
    top: 70%;
    left: 25%;
}
#main_img .human_wrap .hu4 {
    top: 25%;
    left: 80%;
}
#main_img .human_wrap .hu6 {
    top: 80%;
    left: 82%;
}
}

/** mobile 750 **/
@media screen and (max-width: 667px){
#logo .logo {
    width: 110px;
    margin-left: 10px;
}
#main_img .main_img_wrap::after {
    width: 100px;
    height: 100px;
}
#main_img .human_wrap div {
    width: 100px;
}
#main_img .human_wrap .hu1 {
    top: 16%;
    left: 23%;
}
#main_img .human_wrap .hu3 {
    top: 70%;
    left: 18%;
}
#main_img .human_wrap .hu4 {
    top: 22%;
    left: 80%;
}
#main_img .human_wrap .hu5 {
    top: 52%;
    left: 85%;
}
#main_img .human_wrap .hu6 {
    top: 80%;
    left: 84%;
}
#intro .top_cms_box::before{
    width: 100px;
    height: 100px;
    top: -81px;
}
.footer_banner_wrap {
    right: 77px;
}
}