﻿@charset "utf-8";
@import "base.css";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700;900&display=swap");

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  全般設定
　━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
body {
	font-family: 'Noto Serif JP', serif;
	font-family: 'Noto Sans JP', 'Yu Gothic Medium', '游ゴシック Medium', YuGothic, '游ゴシック体', 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'メイリオ', sans-serif;
	font-size: 16px;
	color: #000000;
	line-height: 1.4;
	-webkit-text-size-adjust: 100%;
}
#wrapper {
	width: 100%;
	height: 100vh;
	margin: 0 auto;
	padding: 0;
}
* { box-sizing: border-box; }

.flex {
	display: flex;
	flex-wrap: wrap;
}
.reverse {
	flex-flow: row-reverse;
}
.jc_c {
	justify-content: center;
}
.ai_c {
	align-items: center;
}

@media (min-width: 769px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

/* site top
------------------------------------------------------------*/
#site_top_wrapper a:hover {
    text-decoration: none;
    filter: alpha(opacity=100);
    -moz-opacity:1;
    opacity:1;
}

.site_top main {
    width: 100vw;
    height: calc(100vh - 40px);
}

#site_top_wrapper {
    position: relative;
    width: 100vw;
    height: 100%;
    overflow: hidden;
}

.site_left,
.site_right {
    width: 100vw;
    height: calc(100vh - 40px);
    position: fixed;
    top: 0;
    left: 0;
}

.site_left {
    z-index: 10;
}
.site_right {
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    z-index: 20;
	/* transition: 0.5s; */
}

.full_screen_img {
	width: 100%;
	height: 100%;
    object-fit: cover;
    transform: scale(1);
    transform-origin: center;
}

@media screen and (min-width: 769px) {
	
	.site_left.is-expanded {
		z-index: 32;
        clip-path: var(--calculated-clip-path, polygon(0 0, 100% 0, 100% 100%));
        -webkit-clip-path: var(--calculated-clip-path, polygon(0 0, 100% 0, 100% 100%));
	}
	.site_right.is-expanded {
		z-index: 32;
        clip-path: var(--calculated-clip-path, polygon(0 0, 100% 100%, 0 100%));
        -webkit-clip-path: var(--calculated-clip-path, polygon(0 0, 100% 100%, 0 100%));
	}
}


.trigger { 
    position: fixed;
    font-size: 24px;
    font-weight: bold;
    color: white;
    padding: 10px;
    z-index: 100;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    pointer-events: none;
}

.top_left_ttl {
	max-width: 30.2%;
    top: 100px;
    right: 90px;
	pointer-events: none;
}
.bottom_right_ttl {
	max-width: 20.15%;
    bottom: 140px;
    left: 90px;
	pointer-events: none;
}

.site_top_logo {
	position: absolute;
    left:  0;
	top: 19px;
	z-index: 999;
    width: 100%;
    pointer-events: none;
}
.site_top_logo ._in{
    width: 98%;
    max-width: 1875px;
    margin: auto;
}
.site_top_txt {
/*	max-width: 54%;*/
	position: relative;
	z-index: 999;
	pointer-events: none;
    font-size: 5.8vw;
    line-height: 1.3;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(0,0,0,0.25);
    padding-left: 1em;
}

.site_top #copyright {
    border-top: solid 3px #e10000;
	width: 100%;
	min-height: 40px;
    background-color: #f2f2f2;
	padding: 0 20px;
    text-align: center;
	position: relative;
	z-index: 30;
	justify-content: center;
	align-items: center;
}
.site_top #copyright .copyright {
    color: #000;
    font-size: 13px;
}
.site_top #copyright .copyright span{
    display: inline-block;
}

@media screen and (max-width: 1200px) {
	.top_left_ttl {
		max-width: 100%;
		top: 100px;
        right: 20px;
	}
	.bottom_right_ttl {
		max-width: 100%;
		bottom: 100px;
		left: 20px;
	}
	.top_left_ttl img,
	.bottom_right_ttl img {
		width: auto;
		height: 60px;
	}

	.site_top_logo {
		max-width: 100%;
		left: 15px;
		top: 15px;
	}
	.site_top_logo img {
		width: auto;
		height: 45px;
	}
}
@media screen and (max-width: 910px) {
	.site_top_txt {
        font-size: 8.5vw;
        line-height: 1.4;
        text-shadow: 0 0 10px rgba(0,0,0,0.4);
        padding-left: 0;

    }
    
}

@media screen and (max-width: 640px) {
    .site_top #copyright .copyright {
        font-size: 11px;
    }

}

