@charset "UTF-8";
/*共通*/
html{
    font-size: 100%;
}

body{
    line-height: 1.7;
    color: #333333;
    font-family: "Noto Sans JP", sans-serif;
    background-color: #FDFDFD;
}

img{
    max-width:100%;
}

a{
    text-decoration: none;
    color: inherit;
}

.fv{
    max-width: 1360px;
    margin: auto;
    padding-top: 80px;
}

.fv-h1{
    margin: 10px auto;
    color: #22A869;
    max-width: 1200px;
    padding: 0 25px;
    font-size: 28px;
    text-shadow: 1px 1px 2px pink;
}

.container{
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 0 10px;
}

em{
    font-weight: 800;
    display: inline-block;
    font-size: 28px;
    background: linear-gradient(90deg, #22A869 0%, #1F999C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
}

h2 {
    font-size: 16px;
    font-weight: 400;
    color: #F97D9C;
    margin-bottom: 60px;
}

h3{
    font-size: 20px;
}

p{
    font-size: 18px;
    color: #333333;
}

a:hover{
  opacity: 0.5;
}

/*hannba-guhedd-*/
/* ヘッダー */
.header__nav{
  width: 100%;
  background-color: #FDFDFDf2;
  padding: 20px 0px;
  max-width: 1360px;
  margin: auto;
}

  .header__title {
    width:100%;
    text-align: center;
  }

.nav-items{
  display: flex;
  gap: 2%;
  justify-content: center;
  font-weight: 500;
}

.nav-items__item{
  position: relative;
  padding: 0px 5px;
  line-height: 1;
}

.nav-items__item :hover{
  border-bottom: solid 2px #01A47833;
  color: #01A478;
  opacity: 1;
}
/*
.nav-items__item:not(:first-child)::after{
    content: "";
    position: absolute;
    top: 10%;
    left: 0%;
    width: 2px;
    height: 80%;
    background-color: #989898;
}*/

/* ハンバーガーメニュー */
.hamburger {
    display: none;
  }

.header__hamburger {
  width: 48px;
  height: 100%;
}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #000;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
} 

.sec-img_wrap{
  margin: auto;
}


/*ヘッダー*/

header{
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 9999;
  padding-top: 20px;
}

.header-contain{
    display: grid;
    grid-template-columns: 30% 65%;
    gap: 0px;
    align-items: center;
    background-color: #FDFDFDf2;
    width: 100%;
    z-index: 9999;
    max-width: 1360px;
    margin: auto;
}

.header-right{
  padding-right: 6%;
}

.header-contact{
    display: flex;
    justify-content:end;
    align-items: center;
    text-align: center;
    gap: 25px;
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 10px;
}

.header-tel{
    color: #F97D9C;
    font-weight: 600;
    font-size: 20px;
}

.header-mail{
    font-weight: 600;
    font-size: 20px;
    color: #FDFDFD;
    background-color: #01A478;
    border-radius: 5px;
    padding: 12px 28px;
}

/*お知らせ*/
.news-title__feft{
    align-items: center;
    display: flex;
}

.news-title__feft::before {
  background-color: #F97D9C; 
  content: "";
  height: 1px; 
  width: 40px; 
}
.news-title__feft::before {
  margin-right: 20px; 
}

.nwes-items{
    margin-left: 150px;
}

.nwes-items_wrap{
  font-size: 20px;
  line-height: 3;
}

.nwes-item_li{
  border-bottom: #D9D9D9 solid 1px;
  font-weight: 400;
  margin-bottom: 30px;
  position: relative;
}

.nwes-item_day{
  margin-right: 50px;
  font-weight: 400;
  color: #5b5b5b;
}

.maru-yajirusi2{
  background-color: #F97D9C;
  border-radius: 50%;
  color: #fff;
  font-weight: 400;
  padding: 0 4px;
  position: absolute;
  right: 28px;
  height: 30px;
  line-height: 1.5;
  top: 15px;
}

/*事業の特徴*/
.business-bg{
    background-image: url(../img/index-feature_bg01.png),url(../img/index-feature_bg02.png);
    background-repeat: no-repeat, no-repeat;
    background-position:right top,left 30%;
    background-size: 20%,17%;
    margin-top: 150px;
    max-width: 1400px;
    margin: auto;
}

.business-title{
    text-align: center;
}

.business-sub-title {
  align-items: center; /* 横線を上下中央 */
  display: flex; /* 文字と横線を横並び */
  justify-content: center; /* 文字を中央寄せ */
}
.business-sub-title::before,
.business-sub-title::after {
  background-color: #F97D9C; /* 横線の色 */
  content: "";
  height: 1px; /* 横線の高さ */
  width: 40px; /* 横線の長さ */
}
.business-sub-title::before {
  margin-right: 20px; /* 文字との余白 */
}
.business-sub-title::after {
  margin-left: 20px; /* 文字との余白 */
}

.business-text{
    max-width: 700px;
    margin: auto;
    line-height: 3;
}

.buisness-point{
    display: flex;
    gap:2%;
    max-width: 1000px;
    margin: 80px auto;
}

.buisness-point_item{
    border:1px #61C1BE solid;
    text-align: center;
    padding: 24px 28px 28px;
    width: 32%;
    background-color: #FDFDFD;
}

.buisness-point_text{
    text-align: left;
    font-size: 15px;
}

.buisness-point_img{
    margin: 20px auto;
}

/*マニュフェスト*/
.manifesto{
    background: linear-gradient(to right, #22A869, #1F999C);
    padding: 88px 100px 100px;
}

.manifesto-title_white{
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    display: inline-block;
    font-size: 28px;
}

.small{
    font-size: 28px;
}

.manifesto-sub-title {
  align-items: center; /* 横線を上下中央 */
  display: flex; /* 文字と横線を横並び */
  justify-content: left; /* 文字を中央寄せ */
  color: #fff;
}
.manifesto-sub-title::before{
  background-color: #fff; /* 横線の色 */
  content: "";
  height: 1px; /* 横線の高さ */
  width: 40px; /* 横線の長さ */
}
.manifesto-sub-title::before {
  margin-right: 20px; /* 文字との余白 */
}

.manifesto-merit_wrap{
  margin: 68px auto ;
  background-color: #fff;
  border-radius: 8px;
  padding: 48px 40px 58px;
}

.manifesto-merit_title{
  font-size: 28px;
  font-weight: 600;
  color: #01A478;
  text-align: center;
}

.manifesto-merit{
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.manifesto-merit2{
  margin-top: 12px;
  display: flex;
  justify-content:center;
  gap: 12px;
}

.manifesto-merit_item{
  border: solid #61C1BE 0.8px;
  text-align: center;
  padding: 24px 28px 28px;
  width: 30%;
}

.p-manifesto-item_text {
    background-color: #fff;
    padding: 25px 50px;
    border: #61C1BE 1px solid;
    margin: 30px auto;
}

.merit_text{
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

.merit-point_text{
    text-align: left;
    font-size: 15px;
}

.befor-light::before{
  content: url(../img/index-manifest_light.png);
  padding-right: 10px;
}

.btn{
  margin: auto;
  width:320px;
  padding: 20px 30px;
  background-color: #F97D9C;
  border-radius: 5px;
  color: #fff;
  box-shadow: #AD576D 2px 4px;
  text-align: center;
  display: block;
}

.btn:hover{
  box-shadow: unset;
  transform: translateY(4px);
  opacity: 1.0;
}

.maru-yajirusi{
  background-color: #fff;
  border-radius: 50%;
  color: #F97D9C;
  font-weight: 500;
  padding: 0 4px;
}

/*会社概要*/
.about-title{
  text-align: center;
}

.about-sub-title {
  align-items: center;
  display: flex; 
  justify-content: center; 
}
.about-sub-title::before,
.about-sub-title::after {
  background-color: #F97D9C; 
  content: "";
  height: 1px; 
  width: 40px; 
}
.about-sub-title::before {
  margin-right: 20px; 
}
.about-sub-title::after {
  margin-left: 20px; 
}

.about-text{
    max-width: 720px;
    margin: auto;
    line-height: 3;
    margin-bottom: 88px;
}

.about-add{
  display: grid;
  gap: 3%;
  grid-template-columns: 1fr 1fr;
  margin: 80px auto;
  align-items: center;
}

.about-add_text{
  padding-left: 40px;
}

.about-add_tr{
  border-bottom: #61C1BE solid 0.8px;
  line-height: 3.3;
}

.about-add_th{
  color: #01A478;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  margin-right: 10px;
}

.about-add_td{
  padding-left: 35px;
}

.about-add_map{
  width: 100%;
  padding-top: 56.25%; /* 16:9のアスペクト比 */
  position: relative;
}

.map-iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn_margin{
  margin-bottom: 20px;
}

/*footer*/
footer{
  background-color: #F5F7F7;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  padding: 20px 0;
  max-width: 1400px;
  margin: auto;
}

.footer-img{
  margin: auto;
  display: block;
}

.pc-none{
  display: none;
}

@media screen and (max-width: 768px) /*and (min-width:450px)*/{

.container {
        max-width: 560px;
        margin: 20px auto 40px;
        padding: 0 10px;
}

.fv-h1 {
    margin: 0px auto;
    padding: 0 15px;
    font-size: 20px;
}

p{
  font-size: 16px;
}

h2 {
    font-size: 14px;
    margin-bottom: 30px;
}

em {
    font-size: 26px;
}

.pc-none{
  display: block;
}

/*header*/
.header-contain {
  grid-template-columns: 25% auto 13%;
  gap: 0%;

}

.header-contact {
    gap: 3%;
    font-size: 12px;
}

.header-right{
    padding-right: 5px;
}

.header-mail {
    font-size: 16px;
    padding: 10px 12px;
}

.header-tel {
    font-size: 16px;
}

.hamburger {
    display: block;
    margin: auto;
}

.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #01A478;
  transition: ease .4s;
  background-image: url(../img/index-about-img.png);
  background-repeat: no-repeat;
  background-position: 50% 96%;
  background-size: 105%;
}

.nav-items {
    display: block;
    gap: 5%;
    justify-content: end;
    font-weight: 500;
    text-align: left;
    padding: 10%;
    line-height: 4;
    font-size: 19px;
    color: #fff;
}

.nav-items__item {
  line-height: 2.5;
}

.nav-items__item:not(:first-child)::after {
    content: none;
}
/*ニュース*/
.nwes-items {
    margin-left: 25px; 
}

.maru-yajirusi2 {
  right: 0px;
}
/*事業の特徴*/
.business-bg {
    background-position: right 6%, left 23%;
    background-size: 25%, 23%;
    background-color: rgba(255, 255, 255, 0.3);
    background-blend-mode: lighten;
}

.business-text {
    line-height: 2;
}

.buisness-point {
    display: block;
    /* max-width: 1000px; */
    margin: 40px auto;
}

.buisness-point_item {
    padding: 24px 28px 28px;
    width: 75%;
    margin: 15px auto;
    }

/*マニュフェスト*/
.manifesto {
    padding: 50px 20px 50px;
}

.manifesto-title_white {
    font-size: 26px;
}

.manifesto-merit_wrap {
    padding: 40px 20px 40px;
}

.manifesto-merit {
    gap: 5px;
}

.manifesto-merit_item {
    padding: 15px 10px 10px;
}

/*会社概要*/
.about-text{
    line-height: 2;
    margin-bottom: 40px;
}

.about-add {
  display: block;
  margin: 50px auto;
}

.about-add_text {
    padding-left: 0px;
}

table{
  margin: auto;
}

.about-add_map {
    margin-top: 20px;
}
}

@media screen and (max-width: 450px) {
.btn {
    width: 70%;
}

.header-contain {
  padding: 10px 0px 10px;
}

.header-right {
  padding-right: 5px;
}

.header-contact {
  gap: 1%;
  font-size: 10px;
}

.header-right {
  padding-right: 0px;
}

.header-mail {
  padding: 10px 5px;
}

h2 {
  font-size: 14px;
  line-height: 1.2;
}

em {
  font-size: 19px;
}

.header-mail {
  font-size: 12px;
}

.header-tel {
  font-size: 14px;
}

/*ニュース*/
.nwes-items_wrap {
    font-size: 16px;
    line-height: 2;
}

.maru-yajirusi2 {
    padding: 0 2px;
    height: 20px;
    line-height: 1.2;
    top: 7px;
}

.nwes-item_day {
    margin-right: 115px;
}
/*マニュフェスト*/
.manifesto-title_white {
 font-size: 19px;
}

.manifesto-merit_title {
  font-size: 18px;
}

.manifesto-merit , .manifesto-merit2{
  display: block;
}

.manifesto-merit_item {
  width: 80%;
  margin: 10px auto;
}

.p-manifesto-item_text {
    padding: 20px 15px;
    margin: 15px auto;
}

/*会社概要*/

}