@charset "utf-8";
/* CSS Document */
/*-----------------------------------------------------------------------------------*/
/*	MainStyleSheet
/*-----------------------------------------------------------------------------------*/


@media (prefers-color-scheme: dark) {
  body {
    color: #000000;
  }
textarea.message2 {
    background-color: #FFFFFF;
}
input[type="text"] {
    background-color: #FFFFFF;
}

}



@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

@media (max-width: 799px) {
	.globalmenu{
		display: none;
	}
.navigation__list-item a:link{
		color:#FFFFFF;
	}	
.navigation__list-item a:visited{
		color:#FFFFFF;
	}	
.navigation__list-item a:hover{
		color:#FFFFFF;
	}	
	
.header {
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 1000;
}
.logo {
  font-weight: 700;
  padding-left: 14px;
}
.hamburger-menu {
    width: 50px;
    height: 50px;
    position: relative;
    border: none;
    background: transparent;
    appearance: none;
    padding: 0;
    cursor: pointer;
}
.hamburger-menu__bar {
    display: inline-block;
    width: 60%;
    height: 3px;
    background: #242424;
    position: absolute;
    left: 28%;
    transform: translateX(-50%);
    transition: .5s;
}
.hamburger-menu__bar:first-child {
  top: 20px;
}
.hamburger-menu__bar:nth-child(2) {
  top: 30px;
}
.hamburger-menu__bar:last-child {
  top: 40px;
}
.hamburger-menu--open .hamburger-menu__bar {
  top: 50%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}
.navigation {
  display: none;
  background: #242424;
  position: absolute;
  top: 50px;
  width: 100%;
  z-index: 9999;
	    opacity: 0.9;
}
.navigation__list {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.navigation__list-item {
  border-bottom: solid 1px #474747;
}
.navigation__list-item:first-child {
  border-top: solid 1px #474747;
}
.navigation__link {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  display: block;
  padding: 3vw 0;
  transition: .5s;
}
@media (hover: hover) and (pointer: fine) {
  .navigation__link:hover {
    background: #333;
  }
}	
	
html {
    scroll-behavior: smooth;
}
body{
	font-family: 'Noto Sans JP', sans-serif;
    background-color: #efefef;
    font-size: 3.2vw;
    font-weight: 500;
	    margin: 0;
    padding: 0;
}
.preloader_hide {
    opacity: 0;
	    width: 100%;
}
#preloader {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 32px;
    height: 32px;
    margin: -16px 0 0 -16px;
    display: block;
}
a:link {
    text-decoration: none;
    color: #000000;
}
a:visited{
    text-decoration: none;
    color: #000000;	
}
a:hover{
    text-decoration: none;
    color: #000000;
	opacity: 0.8;
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}
/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}
/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

.siteheader {
    width: 100%;
    background: url(../images/main_sp.jpg);
    background-size: cover;
    height: 112vw;
	padding: 0.1vw 0 0 0;
}
.globalmenu ul li {
    display: none;
    margin: 30px 10px;
}
.globalmenu ul {
    overflow: hidden;
    font-size: 20px;
    text-align: center;
}
.logoblock {
    width: 100%;
        margin: 48vw auto 0;
}
.logoblock h1 {
    font-size: 2.8vw;
    font-weight: 500;
	width: 88%;
    margin: 0 auto;
}
.logoblock h1 span {
    color: #444444;
}
.logoblock h2 {
font-size: 7vw;
    font-weight: 500;
    margin-bottom: 0vw;
	width: 88%;
    margin: 0 auto;
}
.logoblock h2::before{
	display: none;
}
.logoblock h3 span {
    background: url(../images/splogoback.png);
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 2.4vw;
    font-weight: 400;
    color: #F0F0E0;
    padding-bottom: 1vw;
    padding-left: 9vw;
    padding-right: 2vw;
    padding-top: 0.3vw;
}
	.logoblock h3{
		width: 88%;
    margin: 0 auto;
	}
.siteheader .snsblcok {
    width: 88%;
    margin: 2vw auto 0;
}
.snsblcok img {
    width: 88%;
}
.snsblcok a {
    display: inline-block;
    margin-right: 0;
}

h2::before {
	content: ' ';
    width: 10vw;
    height: 10vw;
    background: url(../images/midashi_side2.png);
    background-size: 100%;
    background-repeat: no-repeat;
    display: inline-block;
    font-size: 0px;
    color: #000000;
    margin-right: 2vw;
    line-height: 7vw;
}
h2 {
    font-size: 5vw;
    font-weight: 500;
}
.cmblock{
	width: 88%;
        margin: 10vw auto 0;
	padding: 2.8vw 0;
}
.topicsdl dd {
    width: 78%;
    border-bottom: dotted 1px #666666;
    padding: 2vw 0 2vw 4%;
}
.topicsdl dt {
    width: 22%;
    border-bottom: dotted 1px #666666;
    padding: 2vw 0;
}
.topicsdl {
    flex-wrap: wrap;
    display: flex;
}
.worksblock h3 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 16px;
}
.worksdl {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 4vw;
}
.worksdl dd span {
    font-size: 3.2vw;
    display: block;
	margin-top: 2vw;
}
.worksdl dd {
font-size: 4vw;
    width: 58%;
    margin-bottom: 4vw;
    padding-left: 3%;
}
.worksdl dt {
width: 40%;
    margin-right: 2%;
    margin-bottom: 4vw;
}
.worksdl dd span.caution {
    color: #3c0707;
    font-size: 2.7vw;
}

.profileblockwrap {
background: url(../images/profile_sp.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 20vw;
    padding-bottom: 20vw;
	margin-top: 10vw;
}
.profiletext p {
    margin-bottom: 4vw;
}
.profiletext {
    color: #FFFFFF;
    margin-top: 40px;
}
.profileblock h2 {
    margin-bottom: 20px;
}
.profileblock h3 span {
font-size: 3vw;
    display: inline-block;
    margin-left: 2vw;
    vertical-align: bottom;
}
.profileblock h3 {
font-size: 7vw;
    font-weight: 500;
    margin-bottom: 3vw;
}
.contentsbox {

}

.sitefooter {
    background-color: #222222;
    text-align: center;
    padding-top: 10vw;
    margin-top: 20vw;
    color: #e0e0d2;
    padding-bottom: 5vw;
}
.sitefooter h1 {
    font-size: 2.8vw;
    color: #666666;
    margin-top: 2vw;
    margin-bottom: 2vw;
}
.sitefooter h2 {
    font-size: 7vw;
	margin-bottom: 3vw;
}
.sitefooter h2::before {
    display: none;
}
.sitefooter h3 span {
    background: url(../images/splogoback.png);
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 2.4vw;
    font-weight: 400;
    color: #F0F0E0;
    padding-bottom: 1vw;
    padding-left: 9vw;
    padding-right: 2vw;
    padding-top: 0.3vw;
}
.copyright {
    margin-top: 10vw;
    font-size: 2.5vw;
    font-weight: normal;
}
.contact dd {
	margin-bottom: 3vw;
}
.contact dt {
	margin-bottom: 3vw;
}
.contact {
    margin-top: 10vw;
}
input[type="text"] {
    width: 100% !important;
    height: 40px !important;
    border-radius: 5px;
    border: solid 1px #CCCCCC;
	padding:10px;
}
input.contact_btn {
    background-color: #000000;
    color: #FFFFFF;
    padding: 2vw 3vw 2vw;
    margin: 2vw;
    border: none;
    border-radius: 3px;
    font-size: 3vw;
    cursor: pointer;
}
textarea.message2 {
    width: 100% !important;
    border: solid 1px #CCCCCC;
    border-radius: 5px;
    padding: 10px;
}
.contact dt span {
    color: #9f4242;
    font-size: 12px;
    margin-left: 10px;
}
.pagetop {
    display: none;
    position: fixed;
    bottom: 65vw;
    right: 1vw;
    z-index: 500;
    width: 15vw;
    height: 15vw;
}
.pagetop a {
    display: block;
    text-align: center;
    color: #222;
    font-size: 12px;
    text-decoration: none;
    padding: 5px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.9;
    opacity: 0.9;
}
.pagetop a:hover {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    padding:5px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.6;
    opacity: 0.6;
}
}

@media (min-width: 800px) {
.header {
  display: none;
}
html {
    scroll-behavior: smooth;
}
body{
	font-family: 'Noto Sans JP', sans-serif;
    background-color: #efefef;
    font-size: 17px;
    font-weight: 500;
	    margin: 0;
    padding: 0;
}
.preloader_hide {
    opacity: 0;
	    width: 100%;
}
#preloader {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 32px;
    height: 32px;
    margin: -16px 0 0 -16px;
    display: block;
}
a:link {
    text-decoration: none;
    color: #000000;
}
a:visited{
    text-decoration: none;
    color: #000000;	
}
a:hover{
    text-decoration: none;
    color: #000000;
	opacity: 0.8;
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}
/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}
/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

.siteheader {
    width: 100%;
    background: url(../images/main_pc.jpg);
    background-size: cover;
    height: 63vw;
}
.globalmenu ul li {
    display: inline-block;
    margin: 30px 10px;
}
.globalmenu ul {
    overflow: hidden;
    font-size: 20px;
    text-align: center;
}
.logoblock {
    max-width: 800px;
    margin: 22vw auto 0;
}
.logoblock h1 {
    font-size: 20px;
    font-weight: 500;
}
.logoblock h1 span {
    color: #444444;
}
.logoblock h2 {
    font-size: 45px;
    font-weight: 500;
	margin-bottom: 10px;
}
.logoblock h2::before{
	display: none;
}
.logoblock h3 span {
    font-size: 14px;
    font-weight: 400;
    color: #F0F0E0;
    padding-bottom: 2px;
    background-color: #555555;
    padding-left: 10px;
    padding-right: 10px;
}
.logoblock h3::before {
	content: ' ';
    width: 50px;
    height: 50px;
    background: url(../images/midashi_side.png);
    background-repeat: no-repeat;
    font-size: 14px;
    color: #000000;
    padding-left: 0px;
    padding-bottom: 5px;
}
.siteheader .snsblcok {
    width: 800px;
    margin: 18px auto 0;
}
.snsblcok a {
    display: inline-block;
    margin-right: 10px;
}

h2::before {
    content: ' ';
    width: 50px;
    height: 50px;
    background: url(../images/midashi_side2.png);
    background-size: 100%;
    background-repeat: no-repeat;
    display: inline-block;
    font-size: 0px;
    color: #000000;
    margin-right: 15px;
    line-height: 45px;
}
h2 {
    font-size: 48px;
    font-weight: 500;
	margin-bottom: 30px;
}
.cmblock{
	width: 800px;
    margin: 70px auto 0;
}
.topicsdl dd {
    width: 80%;
    border-bottom: dotted 1px #666666;
    padding: 10px 0;
}
.topicsdl dt {
    width: 20%;
    border-bottom: dotted 1px #666666;
    padding: 10px 0;
}
.topicsdl {
    flex-wrap: wrap;
    display: flex;
}
.worksblock h3 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 16px;
}
.worksdl {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.worksdl dd span {
    font-size: 17px;
    display: block;
	margin-top: 10px;
}
.worksdl dd {
    font-size: 22px;
        width: 68%;
	margin-bottom: 30px;
}
.worksdl dt {
    width: 200px;
    margin-right: 30px;
	margin-bottom: 30px;
}

.worksdl dd span.caution {
    font-size: 14px;
    color: #3c0707;
}

.profileblockwrap {
background: url(../images/profile_pc.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 20vw;
    padding-bottom: 20vw;
	margin-top: 100px;
}
.profiletext p {
    margin-bottom: 20px;
}
.profiletext {
    color: #FFFFFF;
    margin-top: 40px;
}
.profileblock h2 {
    margin-bottom: 20px;
}
.profileblock h3 span {
    font-size: 20px;
    display: inline-block;
    margin-left: 15px;
    vertical-align: bottom;
}
.profileblock h3 {
    font-size: 40px;
    font-weight: 500;
	    margin-bottom: 18px;
}
.contentsbox {
    margin-left: 70px;
}

.sitefooter {
    background-color: #222222;
    text-align: center;
    padding-top: 80px;
    margin-top: 100px;
    color: #e0e0d2;
    padding-bottom: 20px;
}
.sitefooter h1 {
    font-size: 15px;
    color: #666666;
    margin-top: 20px;
    margin-bottom: 7px;
}
.sitefooter h2 {
    font-size: 40px;
	margin-bottom: 8px;
}
.sitefooter h2::before {
    display: none;
}
.sitefooter h3 span {
    font-size: 14px;
    font-weight: 400;
    color: #F0F0E0;
    padding-bottom: 2px;
    background-color: #555555;
    padding-left: 10px;
    padding-right: 10px;
}
.sitefooter h3::before {
	content: ' ';
    width: 50px;
    height: 50px;
    background: url(../images/midashi_side.png);
    background-repeat: no-repeat;
    font-size: 14px;
    color: #000000;
    padding-left: 16px;
    padding-bottom: 5px;
}
.copyright {
    margin-top: 90px;
    font-size: 14px;
    font-weight: normal;
}
.contact dd {
    width: 72%;
	margin-bottom: 40px;
}
.contact dt {
    width: 28%;
	margin-bottom: 40px;
}
.contact {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
}
input[type="text"] {
    width: 330px !important;
    height: 40px !important;
    border-radius: 5px;
    border: solid 1px #CCCCCC;
	padding:10px;
}
input.contact_btn {
    background-color: #000000;
    color: #FFFFFF;
    padding: 12px 45px 17px 45px;
    border: none;
    border-radius: 3px;
    font-size: 17px;
    margin-left: 25px;
	cursor: pointer;
}
textarea.message2 {
    width: 400px !important;
    border: solid 1px #CCCCCC;
    border-radius: 5px;
    padding: 10px;
}
.contact dt span {
    color: #9f4242;
    font-size: 12px;
    margin-left: 10px;
}
.pagetop {
    display: none;
    position: fixed;
    bottom: 400px;
    right: 15px;
    z-index: 500;
}
.pagetop a {
    display: block;
    text-align: center;
    color: #222;
    font-size: 12px;
    text-decoration: none;
    padding: 5px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.9;
    opacity: 0.9;
}
.pagetop a:hover {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    padding:5px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.6;
    opacity: 0.6;
}
}

