@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
    font-size: 100%;
}
body{
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    line-height: 1.7;
    color: #432;
}

a:hover {
    color: #094;
    text-decoration: none;
}
a {
    color: #432;
}

img {
    max-width: 100%;
}
.wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4%;
}

/* 大きな背景画像 */
.big-bg {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}




/* HEADER
------------------------------- */
.page-header {
    display: flex;
    justify-content: space-between;
}
.logo {
    width: 320px;
    margin-top: 0.5em;
}

@media screen and (max-width: 750px) {
.logo {
    width: 250px;
    margin-top: 0.5em;
}
}


.c-header {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem; /* カスタマイズしてください */
  width: 100%;
}

.c-header__logo {
  color: #000; /* カスタマイズしてください */
  min-width: 80px; /* カスタマイズしてください */
  text-decoration: none;
}

.c-header__list {
  box-sizing: border-box;
  display: flex;
  margin: 0;
  padding: 0;
}

.c-header__list-item {
  list-style: none;
  text-decoration: none;
}


.c-header__list-link {
  color: #000; /* カスタマイズしてください */
  display: block;
  margin-right: 20px; /* カスタマイズしてください */
  text-decoration: none;
  padding: 10px 0px; /* カスタマイズしてください */
}

.c-header__list-link:hover {
  filter: opacity(0.6); /* カスタマイズしてください */
}

.c-hamburger-menu {
  position: relative;
}

@media screen and (max-width: 750px) {
.c-header__list-link {
  color: #fff; 
}

  .c-hamburger-menu__list {
    background-color: #28a838; /* カスタマイズしてください */
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem; /* カスタマイズしてください */
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s; /* カスタマイズしてください */
    top: 100%;
    width: 100%;
  }

  #hamburger:checked ~ .c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
  }
  .c-header {
  padding: 1rem ;
}
  .c-header__list li {
   display: block;
    height: 100%;
	        line-height: 40px;
    width: 100%;
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

  .c-header__list li a{
        padding-left: 20px;
}

  .c-header__list li::after {
        content: "";
        position: absolute;
        width: 8px;
        height: 8px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        -webkit-transform: rotate(45deg) translateY(-50%);
        transform: rotate(45deg) translateY(-50%);
        right: 25px;
        top: 50%;
        transition: 0.2s;

}

}

.c-hamburger-menu__input {
  display: none;
}

.c-hamburger-menu__bg {
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
}

.c-hamburger-menu__button {
  display: none;
}

@media screen and (max-width: 750px) {
  .c-hamburger-menu__button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px; 
    height: 32px; 
    justify-content: center;
    width: 32px; 
  }
}

.c-hamburger-menu__button-mark {
  background-color: #000; 
  display: block;
  height: 3px; 
  transition: 0.3s; 
  width: 30px; 
}

@media screen and (max-width: 750px) {
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(2px, -2px) rotate(45deg); 
    transform-origin: 0%; 
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg); 
    transform-origin: 0%; 
  }
}

 /*-------------------------------------------
  Mainvisual
  -------------------------------------------*/
  #mainvisual {
    margin-bottom: 50px;
	text-align:center;
  }
  #mainvisual img {
    width: 75%;
    max-width: 1920px;
    /*height: 600px;*/
    object-fit: cover;
  }

  @media screen and (max-width: 600px) {
    /*-------------------------------------------
    Mainvisual
    -------------------------------------------*/
	  #mainvisual {
    margin-bottom: 0;
  }
  
    #mainvisual img {
      /*height: calc(100vh - 395px);*/
	  height: auto;
	  width: 100%;
    }
  }

/* main
------------------------------- */

h3 {
  position: relative;
  padding: 0.5rem;
  border-bottom: 3px solid #ccc;
  margin-bottom:1em;
}

h3:before {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 30%;
  height: 3px;
  content: '';
  background: #094;
}

.home-infomation {
    overflow: hidden;
border: 1px solid #e7e7e7;
    background-color: #c1e5a0;
	margin-bottom:3.5em;
}

.home-infomation>.-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

  @media screen and (max-width: 600px) {
  .home-infomation>.-wrap {
  display:block;
  }
    }
  
.skewin.is-show {
    -webkit-transition: opacity .5s ease-in, -webkit-transform 1s;
    transition: opacity .5s ease-in, -webkit-transform 1s;
    transition: transform 1s, opacity .5s ease-in;
    transition: transform 1s, opacity .5s ease-in, -webkit-transform 1s;
    -webkit-transform: none !important;
    transform: none !important;
    opacity: 1 !important;
    z-index: 3;
	padding: 2em 0;
}
.skewin {
    opacity: 0;
    -webkit-transform: translateX(20px) skewX(-10deg);
    transform: translateX(20px) skewX(-10deg);
}
.home-infomation .-head {
    font-size: 1em;
	font-weight: bold;
    letter-spacing: 0.15em;
    padding: 0 93px 0 1em;
    position: relative;
}
  @media screen and (max-width: 600px) {
  .home-infomation .-head {
      padding: 0;
  }
  }
  
  
  
.home-infomation .-head::after {
    position: absolute;
    top: -22px;
    right: 45px;
    bottom: auto;
    left: auto;
    background-color: #432;
    content: '';
    height: 63px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 1px;
}

  @media screen and (max-width: 600px) {
.home-infomation .-head::after {
  display:none;
  }  }

.home-infomation .-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
;
}
.home-infomation .-date {
    margin-right: 20px;
}
.home-infomation .-date, .home-infomation .-title {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #432;
    letter-spacing: 0.1em;
}

#news {
    background-image: url(../images/news-bg.jpg);
    /*height: 150px;*/
    margin-bottom: 0;
}
#news .page-title {
    text-align: center;
}
.news-contents {
    margin-bottom: 50px;
}

article {
    width: 100%;
}
.post-info {
    position: relative;
    padding-top: 4px;
    margin-bottom: 40px;
}
.post-date {
    background: #4cb559;
    border-radius: 50%;
    color: #fff;
    width: 100px;
    height: 100px;
    font-size: 1.625rem;
    text-align: center;
    position: absolute;
    top: 0;
    padding-top: 10px;
}
.post-date span {
    font-size: 1rem;
    border-top: 1px rgba(255,255,255,.5) solid;
    padding-top: 6px;
    display: block;
    width: 60%;
    margin: 0 auto;
}
.post-title {
    font-family: "Yu Mincho", "YuMincho", serif;
    font-size: 2rem;
    font-weight: normal;
}
.post-title {
    margin-left: 120px;
}
article img {
    margin-bottom: 20px;
}
article p {
    margin: 1rem;
}

ul{
padding: 0.5rem 0 2rem 3rem;
}

ul li {
padding: 0;
}

h5 {
    font-size:1rem;
}


/*会社概要*/
#companyprofile {
}
#companyprofile table{
  border-collapse: collapse;
  width: 90%;
  margin:0 auto;
}
#companyprofile table th,
#companyprofile table td{
  padding: 1em;
  border: solid 1px #ccc;
  box-sizing:border-box;
}
#companyprofile table th {
  background: #094;
  color: #fff;
  width:25%;
}
@media screen and (max-width: 640px) {
#companyprofile table {
    width: 100%;
  }
#companyprofile table th,
#companyprofile table td {
    display: block;
    width: 100%;
    border-bottom:none;
  }
#companyprofile table tr:last-child{
    border-bottom: solid 1px #ccc;
  }
}

/* Google Mapを囲う要素 */
.map {
  position: relative;
  width: 90%;
  height: 0;
  padding-top: 60%; 
  margin: 0 auto;
}
 
/* Google Mapのiframe */
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  padding:1em 0;
  margin:0 auto;
}



/*決算公告*/
#ghg {
}
#ghg ul {
    margin: 0 auto;
    padding: 0;
    border-top: 1px dotted #CCCCCC;
	width:90%;
}
#ghg ul li {
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px dotted #CCCCCC;
}
#ghg ul li a {
    display: block;
    margin: 0;
    padding: 1.2em 1em 1.2em 3em;
    background: url(../images/icon-pdf-large.png) no-repeat left center;
}
.foot_cv {
    background: url(../images/news-bg.jpg) no-repeat 0 0 / cover;
    padding: 40px 0;
}
.foot_cv .inner_foot_cv {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2em;
    background:rgba(255,255,255,0.5);
    text-align: center;
}
.inner_foot_cv .tit_en {
    font-size: 1rem;
    font-weight: bold;
    line-height: 2.5;
	color:#469921;
}


.inner_foot_cv .tit {
    font-size: 2.1rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 1rem;
}
.inner_foot_cv .foot_cv_tel {
    margin-top: 1rem;
}

.inner_foot_cv .attention {
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0.5rem 0 1.5rem 0;
}


.foot_cv_tel .office {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
}
.foot_cv_tel .office > p {
    text-align: left;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 10px 0 0;
    margin-right: 10px;
}
.tel {
    margin: 0;
    color: #333333;
    overflow: hidden;
}
.tel a {
    background: url(../images/ico_tel.png) left center no-repeat;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: bold;
    padding: 0 0 0 22px;
    cursor: default;
    text-decoration: none;
    pointer-events: none;
    line-height: 1;
}



.mail  {
    background: url(../images/ico_mail.png) left center no-repeat;
    font-size: 1.5em;
    font-weight: bold;
    padding: 0 0 0 22px;
    cursor: default;
    text-decoration: none;
    pointer-events: none;
    line-height: 1;
}

@media (max-width: 600px) {
.mail  {
    font-size: 1em;
}
}



.topbtn.is-show {
    bottom: 20px;
}

.topbtn {
    position: fixed;
    z-index: 99;
    bottom: -100px;
    right: 20px;
    cursor: pointer;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    background: rgb(191 190 190 / 70%);
    padding: 7px;
    -webkit-transition: 0.3s ease-in-out bottom;
    transition: 0.3s ease-in-out bottom;
}

/* フッター
------------------------------- */
footer {
    background: #469921;
    text-align: center;
    padding: 26px 0;
}
footer p {
    color: #fff;
    font-size: 0.875rem;
}

/* モバイル版
------------------------------- */
@media (max-width: 600px) {
 

    /* HEADER */
    .main-nav {
        font-size: 1rem;
        margin-top: 10px;
    }
    .main-nav li {
        margin: 0 20px;
    }

    .news-contents {
        flex-direction: column;
    }
    #news .page-title {
        margin-top: 30px;
    }
    article,
    aside {
        width: 100%;
    }
    aside {
        margin-top: 60px;
    }
    .post-info {
        margin-bottom: 30px;
    }
    .post-date {
        width: 70px;
        height: 70px;
        font-size: 1rem;
    }
    .post-date span {
        font-size: 0.875rem;
        padding-top: 2px;
    }
    .post-title {
        font-size: 1.375rem;
		       margin-left: 7rem;
 
    }
 
}
