@charset "utf-8";

.kurukuru {
	opacity: 0;
}
.kurukuru.animated {
  animation: kurukuru 1.4s ease-out;
  opacity: 1;
}
@keyframes kurukuru {
  0%{
    transform: rotateY(0) translateY(40px);
    opacity: 0;
  }
  100%{
    transform: rotateY(360deg) translateY(0);
    opacity: 1;
  }
}

/*------------------------------------------------------

   common

-------------------------------------------------------*/
:root {
	--base-color:  #222222;
    --blue-color:  #1f549d;/*blue*/
    --purple-color: #a36c9b;
}


body {
    padding-top: 80px;
    color: var(--base-color);
	position: relative;
    font-size: 16px;
    font-weight: 400;
	font-family: "Zen Kaku Gothic New", serif;
	/* font-family: "M PLUS 1p", sans-serif; */
    /* font-family: 'Noto Sans JP', sans-serif; */
}
input,
select,
textarea,
radio,
checkbox,
button {
	font-family: "Zen Kaku Gothic New", serif;
	/* font-family: "M PLUS 1p", sans-serif; */
    /* font-family: 'Noto Sans JP', sans-serif; */
}

.sp {
    display: none !important;
}


.inner {
    max-width: 1140px;
    padding: 0 20px;
    margin: auto;
    position: relative;
}
.inner-in {
    padding: 0 100px;
}

/*
.font-follow {
    transform: rotate(0.05deg) !important;
}
*/

.link {
    color: var(--blue-color);
    text-decoration: underline;
}

/* off */
.link-off a {
    cursor: default !important;
    color: #ccc !important;
}

/* error */
.err-msg {
    color: #cc0000;
    margin-bottom: 30px;
}
.err-msg2 {
    color: #cc0000;
    font-size: 13px;
}
.error {
    border-color: red !important;
}

/* editMsg */
.editMsg {
    text-align: center;
    color: #fff;
    width: 100%;
    line-height: 1;
    padding: 20px;
    position: fixed;
    top: 49%;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
}



/* ----------------------------
   header
-------------------------------*/

#gb-header {
    width: 100%;
    height: 80px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10001;
}
.site-title {
    width: 182px;
    line-height: 1;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.site-title a {
    display: flex;
    align-items: center;
    line-height: 1;
}

.main-nav {
    font-weight: 500;
	padding-right: 270px;
    position: absolute;
    right: 0;
    top: 0;
}
.main-nav__list {
    display: flex;
    align-items: center;
    height: 80px;
}
.main-nav__list >li {
    margin-left: 40px;
}
.main-nav__list >li a {
    display: inline-block;
    color: var(--base-color);
    transform: rotate(0.05deg); 
    position: relative;
}
.main-nav__list >li a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: var(--blue-color);
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}
.main-nav__list >li a:hover:after {
    transform: scale(1, 1);
}
.header-entry-btn{
    width: 160px;
    position: absolute;
	right:0;
    top: 0;
} 
.header-entry-btn a {
    display: flex;
    width: 100%;
    height: 80px;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: var(--purple-color);
}

.header-insta-btn {
	width: 80px;
	position: absolute;
	right: 170px;
	top: 0;
}
.header-insta-btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
}
.header-insta-btn a img {
    width: 32px;
}

/* ----------------------------
   contets
-------------------------------*/
#contents {
    overflow: hidden;
}

.conBox {
    padding: 80px 0;
	position:relative;
}

/* cmn-title */
.cmn-title {
    text-align: center;
    margin-bottom: 70px;
}
.cmn-title h2 {
	color: var(--blue-color);
    font-size: 30px;
    font-weight: 500;
}
.cmn-desc {
    font-size: 18px;
    line-height: 2;
    text-align: center;
}


.more {
    margin-top: 80px;
    text-align: center;
}
.more.left {
    text-align: left;
}
.more a {
    font-size: 20px;
    font-weight: 500;
    color: var(--blue-color);
    display: inline-block;
    text-align: center;
    padding: 10px 40px;
    border: solid 2px;
    border-radius: 1000px;
    background: #fff;
   -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.more a i {
    display: inline-block;
    width: 26px;
    height: 26px;
    background: var(--blue-color);
    border-radius: 10000px;
    position:relative;
    margin-left: 10px;
    vertical-align: -5px;
}
.more a i:after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 9px;
    left: 7px;
}
.more a:hover {
    color: #fff;
    background: var(--blue-color);
}

.large-image {
    height: 500px;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}
.large-image01 {
    background-image: url("../img/large_image01.jpg");
}



/* ----------------------------
   footer
-------------------------------*/
#gb-footer {
    color: #fff;
    text-align: center;
    background: var(--blue-color);
    padding: 10px;
}

/* ----------------------------
   sp
-------------------------------*/
@media (max-width: 1200px) {

    .inner-in {
        padding: 0;
    }
    
    .main-nav__list {
        display: none;
    }
}

@media (max-width: 815px) {

	body {
        font-size: 13px;
		min-width: 375px;
        padding-top: 60px;
	}
	body.menu-fix {
		overflow: hidden;
	}
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
    #gb-header {
        height: 60px;
    }
    .site-title {
        width: 120px;
    }
    .header-entry-btn {
        width: 100px;
        right: 60px;
    }
    .header-entry-btn a {
        height: 60px;
    }

    #menu-btn {
        width: 60px;
        height: 60px;
        cursor: pointer;
        border-bottom: solid 1px #ccc;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 9999999;
    }
    #menu-btn span {
        width: 40px;
        height: 1px;
        background: var(--blue-color);
        position: absolute;
        left: 10px;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    #menu-btn span.t {
        top: 18px;    
    }
    #menu-btn span.m {
        top: 29px;    
    }
    #menu-btn span.b {
        bottom: 16px;
    }
    #menu-btn.active {
        border-bottom:solid 1px var(--blue-color);
    }
    #menu-btn.active span {
        background: #fff;
    }
    #menu-btn.active span.t {
        transform: rotate(30deg);
        top: 29px;
    }
    #menu-btn.active span.m {
        width: 0;
    }
    #menu-btn.active span.b {
        transform: rotate(-30deg);
        bottom: 29px;
    }

.header-insta-btn {
    width: 60px;
    position: absolute;
    right: 160px;
    top: 0;
}
.header-insta-btn a {
    width: 60px;
    height: 60px;
}

    #sp-nav {
        width: 100%;
        height: 100%;
        background: var(--blue-color);
        padding: 100px 0;
        overflow: auto;
        opacity: 0;
        visibility: hidden;
        position: fixed;
        left:0;
        top:0;
        z-index: -9999;
       -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    #sp-nav.active {
        opacity: 1;
        visibility: visible;
        z-index: 999999;
    }
    .sp-nav__list {
        padding: 0 20px;
        margin-bottom: 30px;
    }
    .sp-nav__list > li {
        font-size: 16px;
        border-bottom: dotted 1px #fff;
    }
    .sp-nav__list > li a,
    .sp-nav__list > li span {
        display: block;
        color: #fff;
        padding: 10px;
    }



    .conBox {
        padding: 50px 0;
    }
    .cmn-title {
        margin-bottom: 40px;
    }
    .cmn-title h2 {
        font-size: 24px;
    }
    .cmn-desc {
        font-size: 14px;
    }

    .large-image {
        height: 250px;
    }
	
	.more a {
		font-size: 18px;
		padding: 10px 20px;
	}

	.footer-insta-btn {
		position: fixed;
		left: 5%;
		bottom: 10px;
		z-index: 10;
	}
	.footer-insta-btn a {
		color: var(--base-color);
		display: flex;
		align-items: center;
		width: 90%;
		justify-content: center;
		text-align: center;
		background: #fff;
		padding: 10px 20px;
		border-radius: 1000px;
		border: solid 3px var(--blue-color);
	}
	.footer-insta-btn a img {
		width:30px;
		margin-right: 10px;
	}

	
}
    




