@charset "utf-8";
/*=============
common
===============*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Zen Maru Gothic', serif;
    background-color: #fff;
    color: #222;
    letter-spacing: 0.1em;
}

.container {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
}


/* end of loading */
.loaded {
    display: none;
}

.body-loading{
    overflow: hidden;
}

/* fade in container */
/* .container {
    display: none;
} */

.container.open {
    display: block;
}


/*========= ローディング画面のためのCSS ===============*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 9999999;
	text-align:center;
	color:#4682B4;
    font-size: 1.6rem;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg{
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg{
    display: block;
    content: "";
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
	left: 0;
    transform: scaleY(0);
    background-color: #333;/*伸びる背景色の設定*/
	animation-name:PageAnime;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;

}

@keyframes PageAnime{
	0% {
		transform-origin:bottom;
		transform:scaleY(0);
	}
	50% {
		transform-origin:bottom;
		transform:scaleY(1);
	}
	50.001% {
		transform-origin:top;
	}
	100% {
		transform-origin:top;
		transform:scaleY(0);
	}
}

/*画面遷移の後現れるコンテンツ設定*/

#container{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

/*=============
Header
===============*/

.siteHeader {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 12px 36px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

.siteHeader .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 
.globalNav_list {
    display: flex;
    gap: 80px;
}

.globalNav_item a {
    font-size: 2.2rem;
    font-weight: bold;
    text-decoration: none;
    color: #222;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.globalNav_item a span {
    font-size: 10px;
}

.globalNav_item a:hover {
    text-decoration: underline;
}

/*=============
Modal Window
===============*/

@media screen and (max-width: 768px) {
    .globalNav {
        display: none;
    }

    .globalNav.active {
        display: block;
        position: fixed;
        width: 100%;
        height: 100svh;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        background-color: #fff;
        z-index: 0;
    }

    .globalNav_list {
        display: block;
        width: 80%;
        margin: 50% auto;
        text-align: center;
        /* background-color: red; */
    }

    .globalNav_item {
        margin: 48px 0;
    }

    .globalNav_list a {
        color: #222;
        font-size: 2rem;
    }

   .logo img {
    width: 70%;
   }
} /* 768px */

/*=============
hamburger menu
===============*/

.hamburger {
    display: none;
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
        width: 26px;
        height: 26px;
        position: relative;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #222;
        position: absolute;
        left: 0;
        transition: 0.4s;
    }

    .hamburger span:first-of-type {
        top: 5%;
    }

    .hamburger span:nth-of-type(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger span:last-of-type {
        bottom: 5%;
    }

    .hamburger.active span:first-of-type {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .hamburger.active span:nth-of-type(2) {
        opacity: 0;
    }

    .hamburger.active span:last-of-type {
        bottom: 40%;
        transform: translateY(-50%) rotate(-45deg);
    }

}


/*=============
main // interview
===============*/

section h2 {
    display: inline-block;
    padding: .9rem 1.1rem;
    font-size: 2.4rem;
    line-height: 3.6rem;
    text-align: left;
    border: solid 1px #222;
    border-radius: .5rem;
}

section .inner {
    max-width: 1024px;
    margin: 20rem auto 10rem;
    /* background-color: beige; */
}

.inner_container {
    display: flex;
    gap: 60px;
    padding: 8rem 0;
}

.imageDescription {
    flex: 1;
}

.imageBox {
    flex: 1;
}

.imageBox img {
    border-radius: .4rem;
}

.inner h3 {
    font-family: YuGothic;
    font-size: 2.2rem;
    color: #4682B4;
    padding-bottom: 2rem;
}

.inner_schedule {
    padding: 8rem 0;
}

.inner_schedule h3 {
    padding-bottom: 6rem;
}

.inner_schedule img {
    max-width: 860px;
    display: flex;
    margin: 0 auto;
}

.inner p {
    font-family: YuGothic;
    font-size: 1.6rem;
    line-height: 3.2rem;
}

@media screen and (max-width:768px) {
    section {
        margin: 44px 4% 73px;
    }

    section h2 {
        padding: 1rem;
        font-size: 1.8rem;
        line-height: normal;
    }

    .inner_container {
        flex-direction: column-reverse;
        padding: 4rem 0;
        gap: 30px;
    }

    section .inner {
        margin-top: 10rem;
    }

    .inner_schedule {
        padding: 0;
    }

    .inner h3 {
        font-size: 1.6rem;
    }

    .inner p {
        font-size: 1.2rem;
        line-height: normal;
    }
}

/*=============
contact &
footer
===============*/

.contact {
    max-width: 1080px;
    margin: 0 auto;
}

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

.contact_child ul {
    display: flex;
    justify-content: space-evenly;
}

.contact_child li {
    padding-right: 24px;
}

.contact_child li img {
    width: 30px;
}

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

    .contact_parent {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        justify-content: center;
    }

    .contact_child {
        margin: 0 auto;
    }

    .contact_child li {
        padding-right: 0;
    }

    .contact_child li img {
        width: 30px;
    }

    .contact_child ul {
        display: flex;
        justify-content: center;
        margin: 3rem auto;
        gap: 10px;
    }
}

/*=============
footer
===============*/
.siteFooter {
    color: #222;
    padding: 16px 0;
    text-align: center;
}

.pagetop {
    display: block;
    background-color: #222;
    color: white;
    font-size: 16px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    line-height: 60px;
    text-align: center;
    text-decoration: none;
    user-select: none;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);

    position: fixed;
    bottom: 30px;
    right: 30px;

}

@media screen and (max-width: 768px) {
    .pagetop {
        display: none;
    }
}