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

html {
    font-size: 62.5%;
    font-size: 10px;
    scroll-behavior: smooth;
}

html.is-fixed {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: 0;
    color: var(--text-color);
    font-size: 0;
    background-color: #FFF;
}

/* align */
.flexbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

table {
  width: 100%;
  margin: 1.618em 0;
  border-spacing: 0;
  border: 1px solid #c0c6c9;
  border-width: 1px 0 0 1px; 
}
  table th,
  table td {
    padding: 0.5em 0 .5rem 2rem;
    border: solid #c0c6c9;
    text-align: left;
    vertical-align: top;
    word-wrap: break-word;
    box-sizing: border-box;
    }
  table th {
    background-color: #dcdddd;
    color: #2b2b2b; 
}

/**************************************************
 common
**************************************************/


:root {
    --main-color: #2e926e;
    --sub-color: #a7c964;
    --text-color: #222222;
    --base-color: #e9f2ef;
    --btn-color: #e37c21;
    --max: 120rem;
    --font-bold: 700;
}

.br-sp {
    display: none;
}

@media screen and (max-width: 1080px) {
    .br-pc {
        display: none;
    }

    .br-sp {
        display: inline-block;
    }
}

.form-btn {
    display: flex;
    align-items: center;
    border-radius: 28px;
    background-color: #e37c21;
    var(--text-color);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.8rem;
    height: 56px;
    margin-inline: 0rem;
    justify-content: center;
    position: absolute;
    width: 400px;
    bottom: 15px;
    left: 15px;
    box-shadow: 0 4px #c26218;
    transition: transform 0.1s ease, box-shadow 0.1s ease, opacity 0.1s ease;
}

.form-btn:hover {
    transform: translateY(2px);
    /* ボタンが少し沈む */
    box-shadow: 0 2px #c26218;
    /* 影も小さく */
    opacity: 0.9;
    /* 元のホバー効果も残す */
    color: #ffffff;
}


.form-btn span {
    display: block;
    text-align: center;
    line-height: 56px;
}


.form-btn::before {
    content: '';
    width: 18px;
    height: 14px;
    background: url(../images/icon-mail.svg) no-repeat center center;
    position: absolute;
    top: 50%;
    left: 24%;
    transform: translateY(-50%);
}


.form-btn::after {
    content: '';
    width: 8px;
    height: 14px;
    background: url(../images/icon-arrow.svg) no-repeat center center;
    position: absolute;
    top: 50%;
    right: 6%;
    transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
    .form-btn {
        display: flex;
        align-items: center;
        border-radius: 24px;
        background-color: #e37c21;
        color: #ffffff;
        font-weight: 600;
        font-size: 1.6rem;
        height: 48px;
        margin-inline: 0rem;
        justify-content: center;
        position: absolute;
        width: 90%;
        bottom: 0;
        margin-block-end: -6rem;
    }

    .form-btn::before {
        content: '';
        width: 18px;
        height: 14px;
        background: url(../images/icon-mail.svg) no-repeat center center;
        position: absolute;
        top: 50%;
        left: 20%;
        transform: translateY(-50%);
    }


    .form-btn::after {
        content: '';
        width: 8px;
        height: 14px;
        background: url(../images/icon-arrow.svg) no-repeat center center;
        position: absolute;
        top: 50%;
        right: 6%;
        transform: translateY(-50%);
    }
}

/**************************************************
 header
**************************************************/

.cases .header {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 8rem;
    align-items: center;
    padding-inline: 3rem;
    z-index: 1000;
    background-color: #fff;
    box-sizing: border-box;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.cases .header h1 {
    width: 45rem;
    font-size: 2.6rem;
    align-items: end;
    font-weight: bold;
    color: var(--main-color);
}

.cases .header h1 a,
.cases .header h1 a:hover {
    color: var(--main-color);
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .cases .header h1 {
        width: 16rem;
        font-size: 1.8rem;
        align-items: end;
        font-weight: bold;
        line-height: 1.2;
        margin-inline-start: 1rem;
    }
}

#subNavi {
    width: calc(100% - 5rem);
}

#subNavi ul {
    display: flex;
    justify-content: flex-end;
}

#subNavi ul li {
    margin-inline-end: 2.4rem;
}

#subNavi ul li:last-of-type {
    margin-inline-end: 0;
}

#subNavi ul li a {
    font-size: 1.6rem;
    padding-block: 2.2rem;
    display: block;
    color: var(--nav-color);
    font-weight: 700;
}

#subNavi ul li.cur a {
    position: relative;
    pointer-events: none;
    color: var(--main-color);
}

#subNavi ul li.cur a::before {
    content: '';
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background-color: var(--main-color);
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: -1.1rem;

}

#subNavi ul li a:first-of-type svg {
    margin-inline-start: 0.8rem;
}

#subNavi ul li a:hover {
    color: var(--main-color);
}

#subNavi ul li a:hover svg path {
    fill: #2e926e;
}

#globalNavi {
    display: block;
    position: fixed;
    top: 0;
    height: 100%;
    width: 80%;
    max-width: 400px;
    right: 0;
    background-color: #FFF;
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: .4s ease-in-out;
    overflow-y: auto;
}

#globalNavi.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


.g_naviInner {
    width: 100%;
    height: 100%;
}


/******header************/
@media screen and (max-width: 1080px) {
    .cases .header {
        height: 6rem;
        padding-inline: 1rem;
        padding-block-start: 0rem;
        box-sizing: border-box;
    }

    .g_naviInner {
        height: auto;
    }

    #subNavi,
    .h_left {
        display: none;
    }


    #globalNavi.active {
        opacity: 1;
        visibility: visible;
    }

    .g_navi {
        width: 100%;
        padding-inline: 1.6rem;
        margin-block-start: 10rem;
    }

    .g_navi ul {
        width: 100%;
        padding: 0;
    }

    .g_navi ul li {
        margin-block-start: 2.4rem;
        width: 100%
    }

    .g_navi ul li a {
        font-size: 1.8rem;
        font-weight: var(--font-bold);
        display: block;
        text-align: center;
        line-height: 3;
    }

    .g_navi ul li a:hover {
        color: var(--text-color);
    }
}

/**************************************************
 menu
**************************************************/
#menu {
    display: none;
}

@media screen and (max-width: 1080px) {
    #menu {
        display: flex;
        position: absolute;
        top: 0;
        right: 0;
        width: 6rem;
        height: 6rem;
        text-align: center;
        z-index: 9998;
        background-color: var(--main-color);
        transition: .3s;
        opacity: 1;
        visibility: visible;
        cursor: pointer;
        pointer-events: auto;
        flex-direction: column;
        align-items: center;
    }

    .menu-label {
        color: #fff;
        font-size: 1rem;
        font-weight: bold;
        text-align: center;
        margin-top: 3rem;
    }

    #menu:hover,
    #menu.active {
        background-color: var(--main-color);
    }

    #menu.close {
        opacity: 0;
        visibility: hidden;
        transition: .4s ease-in-out;
        pointer-events: none;
    }

    .menu-btn,
    .menu-btn span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
    }

    /* ハンバーガーボタン変形 */
    .menu-btn {
        position: relative;
        width: 3rem;
        height: 0.9rem;
        cursor: pointer;
        margin-inline: auto;
    }

    .menu-btn span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #fff;
        border-radius: 4px;
        transition: all .4s;
    }

    .menu-btn span:nth-of-type(1) {
        top: 1.6rem;
    }

    .menu-btn span:nth-of-type(2) {
        top: 2.4rem;
    }

    .menu-btn span:nth-of-type(3) {
        top: 3.2rem;
    }

    #menu.active .menu-btn span:nth-of-type(1) {
        transform: translateY(0.4rem) rotate(-45deg);
    }

    #menu.active .menu-btn span:nth-of-type(2) {
        transform: translateY(-0.4rem) rotate(45deg);
    }

    #menu.active .menu-btn span:nth-of-type(3) {
        display: none;
    }
}

/**************************************************
.footer
**************************************************/
.footer {
    background-color: #f5f5f5;
    padding: 5rem 1rem;
    color: var(--text-color);
    text-align: center;
}

.footer__inner {
    max-width: 1080px;
    margin: 0 auto;
    line-height: 1.7;
    display: flex;
    gap: 3rem;
    justify-content: space-around;
    align-items: center;

}

.footer__logo {
    display: block;
    color: var(--main-color);
    font-weight: bold;
    text-decoration: none;
    font-size: 2.6rem;
}

.footer__office {
    width: 100%;
    font-size: 1.5rem;
    font-weight: normal;
}

.footer__address {
    width: 100%;
    font-size: 1.5rem;
    font-weight: normal;
}

.footer__tel,
.footer__mail {
    width: 100%;
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: normal;
    text-decoration: none;
}

.footer__tel a:hover,
.footer__mail a:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer {}

    .footer__inner {
        max-width: 90%;
        margin: 0 auto;
        line-height: 1.7;
        display: flex;
        gap: 2rem;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
    }

    .footer__logo {
        display: block;
        color: var(--main-color);
        font-weight: bold;
        text-decoration: none;
        font-size: 2.1rem;
        letter-spacing: .1rem;
    }

    .footer__office,
    .footer__address,
    .footer__tel,
    .footer__mail {
        width: 100%;
        font-size: 1.4rem;
        color: var(--text-color);
        font-weight: normal;
        text-decoration: none;
        text-align: center;
    }

    .footer__time {
        font-size: 1.2rem;
    }
}

.headline-wrap{
width: 100%;
    border-radius: 4px;
    padding: 4rem;
    margin-bottom: 40px;
    box-sizing: border-box;
    background: #e5e5e5;
}

@media screen and (max-width:768px){
.headline-wrap{
    width: 100%;
    border-radius: 4px;
    padding: 3rem;
    margin-bottom: 30px;
    box-sizing: border-box;
    background: #e5e5e5;
}
}

.headline-title {
    font-size: 18px;
    font-weight: bold;
    color: #555;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
  }
  
  #headline {
  }
  
  #headline > ul {
   padding: 0px 8px;
    margin: 0;
  }
  
  #headline > ul > li {
    list-style: none;
  }
  
  #headline > ul > li > a {
    width: 100%;
    text-decoration: none;
    display: inline-block;
    color: #555;
    font-size: 15px;
    border-bottom: 1px solid #ddd;
    line-height: 1.5;
    padding-block: .8rem;
}

@media screen and (max-width:768px){
  #headline > ul > li > a {
    font-size: 14px;
  }
}

  #headline > ul > li > ul {
    padding: 0;
    border: none;
    margin-left: 24px;
    list-style: auto;
  }

#headline > ul > li > ul > li{
list-style: none;
}

  #headline > ul > li > ul> li > a {
    text-decoration: none;
    display: inline-block;
    color: #555;
    font-size: 15px;
    padding-block: 1rem;
  }

#content-inner{
width: 1080px;
 margin: auto;
}

.entry-asset{
margin-bottom: 0px;
}


.entry-thumb{
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
}


@media screen and (max-width:768px){
.entry-thumb{
position: relative;
    margin-bottom: 10px;
    height: 100px;
    overflow: hidden;
}
}

.entry-thumb > a {
    width: 100%;
    height: 100%;
    margin: auto;
    font-size: 0;
    display: inline-block;
} 

.entry-thumb　>　a > img{
width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 3 / 2;
    margin-top: 0px !important;
} 

.entry-title{
font-size: 3.2rem;
    font-weight: bold;
    line-height: 1.3;
    margin: 0px 0px 15px;
    text-align: justify;
}

@media screen and (max-width:768px){
.entry-title{
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 1.3;
    margin: 0px 0px 15px;
    text-align: justify;
}
}

.entry h2 {
    position: relative;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.5;
    background-color: #e9f2ef;
    padding: 1rem 1rem 1rem 2rem;
    margin-block: 5rem 2rem;
    border-left: 10px solid #2e926e;
}

@media screen and (max-width:768px){
.entry h2{
    font-size: 2.1rem;
    font-weight: bold;
    line-height: 1.5;
    padding: .8rem 1rem .8rem 2rem;
}
}

.entry h3 {
    position: relative;
    font-size: 2.1rem;
    font-weight: bold;
    line-height: 1.5;
    text-align: left;
    overflow: hidden;
    color: #2e926e;
    margin-inline: 0;
    margin-block-start: 2rem;
    margin-block-end: 1rem;
}

@media screen and (max-width:768px){
.entry h3{
  font-size: 2rem;
  font-weight: bold;
}
}

.entry h4{
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 8px;
  margin-top: 8px;
  text-align: left;
}

@media screen and (max-width:768px){
.entry h4{
  font-size: 18px;
  font-weight: bold;
    line-height: 1.5;
    margin-bottom: 8px;
    margin-top: 8px;
}
}
.archive_entry-ttl{
font-size: 19px;
    line-height: 1.3;
    font-weight: bold;
}

@media screen and (max-width:768px){
.archive_entry-ttl{
font-size: 16px;
    line-height: 1.3;
}
}

.entry-meta{
    margin-top: 0px;
    display: flex;
    align-items: baseline;
}

.entry-date{
    font-size: 14px;
    margin-inline-end: 1rem;
    font-weight: 400;
    color: #565656;
}

.entry-cat a{
    color: #fff;
    font-size: 1.2rem;
    border-radius: 2px;
    padding: .4rem 1rem;
    margin-inline-end: .8rem;
    background: var(--sub-color);
    display: inline-block;
}

.entry p {
font-size: 16px;
line-height: 1.86;
text-align: justify;
}

@media screen and (max-width:768px){
.entry p {
font-size: 15px;
line-height: 1.86;
text-align: justify;
}
}

.entry img {
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 20px 0 !important;
    display: block;
}

#wrap{
    width: 100%;
    margin: auto;
    margin-block-start: 8rem;
}

@media screen and (max-width:1024px){
#wrap{
    width: 100%;
    display: block;
    margin: auto;
    margin-block-start: 6rem;
}
}

#content{
    width: 1080px;
    display: flex;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 80px;
}

@media screen and (max-width:1080px){
#content{
    width: 94%;
    display: block;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 80px;
}
}

@media screen and (max-width:768px){
#content{
    width: 92%;
    display: block;
    margin: auto;
    padding-top: 60px;
    padding-bottom: 60px;
}
}

.asset-header{    
width: 100%;
margin-bottom: 30px;
}

.widget-header{
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    border-radius: 4px;
    background: #208E73;
    line-height: 40px;
    display: block;
    padding-left: 18px;
    margin-bottom: 8px;
}

@media screen and (max-width:768px){
.widget-header{
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    margin-top: 0;
    padding-left: 15px;
    border-radius: 4px;
    background: #86bc42;
    line-height: 35px;
    display: block;
}
}

.widget-header > a{
    color: #fff;
    font-size: 16px;
    font-weight: normal;
}

.entry-content > img{
    width: 100%;
    margin:  10px 0;
}

.widget-content{
margin-bottom: 20px;
}

.widget-dropdown{
    padding: 15px 10px;
    }

.widget-link{
    width: 100%;
}

.widget-link_item{
    width: 100%;
    overflow: hidden;
    display: block;
}

.widget-link_item > img{
    width: 100%;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media screen and (max-width:768px){
    .pc { display: none !important; }
    .sp { display: block !important; }
}

/*サイドバーの最新記事一覧
------------------------------------------------------ */
.blog-list {
    list-style-type: none;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
    font-size: 0;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  
  .blog-list__item {
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
  }

  .blog-list__item > a {
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
  }
  
  
  .blog-list__title {
    font-weight: bold;
    font-size: 15px;
    line-height: 1.4;
  }
  
  .blog-list__text,
  .blog-list__btn {
    display: none;
  }
  
  .blog-list__thumb {
    font-size: 0;
    width: 90px;
    float: left;
  }
  
  .blog-list__thumb img {
    width: 80px;
    height: 80px;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}


/*ブログここから*/
.home__blog__list{
    width: 100%;
    margin: auto;
    overflow: hidden;
    padding-inline-start: 0px;
}

.home__blog__list{
    width: 100%;
    margin: auto;
    overflow: hidden;
    padding-inline-start: 0px;
    display: flex;
    flex-wrap: wrap;
}

.blog__heading {
    position: relative;
    padding-bottom: 4px;
    width: 100%;
    font-size: 26px;
    font-weight: bold;
    border-bottom: 5px solid #c7c7c7;
    margin-bottom: 34px;
    text-align: left;
}

@media screen and (max-width:768px){
.blog__heading {
    position: relative;
    padding-bottom: 4px;
    width: 100%;
    font-size: 21px;
    font-weight: bold;
    border-bottom: 5px solid #c7c7c7;
    margin-bottom: 17px;
}
}

.blog__heading::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 160px;
    height: 5px;
    background-color: #208E73;
}

@media screen and (max-width:768px){
.blog__heading::after {
  width: 120px;
}
}

.area_nouhow_post{
    width: 100%;
    margin: auto;
    margin-bottom: 50px;
}

.area_interview_post{
    width: 100%;
    margin: auto;
    margin-bottom: 50px;
}

.blog__item{
    list-style: none;
    width: 31.746%;
    float: left;
    margin-right: 2.38%;
    margin-bottom: 30px;
}

.blog__item a {
    display: inline-block;
    width: 100%;
    height: auto;
}

.blog__item a:hover {
	opacity: 0.7;
	-webkit-opacity: 0.7;
	filter: alpha(opacity=70);
}

@media screen and (min-width:769px){
.blog__item:nth-child(3n) {
  margin-right: 0;
}
}

@media screen and (max-width:768px){
.blog__item{
list-style: none;
    width: 48%;
    float: left;
    margin-right: 4%;
    margin-bottom: 16px;
}
.blog__item:nth-child(2n) {
      margin-right: 0%;
}
}

.blog__item-wrapper{
}

.blog__item-thumb {
	width: 100%;
    font-size: 0;
}

.blog__item-thumb > figure {
	margin: 0;
}

.blog__item-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}

.blog__cont{
    text-align: left;
    line-height: 1.5;
    padding-top: 8px;
}

@media screen and (max-width:768px){
.blog__cont{
    text-align: left;
    line-height: 1.5;
    padding-top: 8px;
}
}

.blog__entry-date{
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

@media screen and (max-width:768px){
.blog__entry-date{
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
}

.blog__entry-time{
margin-right: 10px;
font-size: 13px;
text-decoration: none;
color: #1A1A1A;
}

@media screen and (max-width:768px){
.blog__entry-time{
    display: block;
    font-size: 12px;
}
}

.blog__cont .flexbox{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.blog__entry-cat {
    color: #fff;
    font-size: 1.2rem;
    border-radius: 4px;
    padding: .6rem 1.2rem;
    display: inline-block;
    line-height: 1;
    background-color: #a7c964;
    margin-block-end: .5rem;
}

.blog__entry-ttl {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--c_black);
}

.blog__more-btn{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.blog__more-btn > a{
    width: 100%;
    display: inline-block;
    text-align: center;
    color: #208E73;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid #208E73;
    line-height: 40px;
}

@media screen and (max-width:768px){
.blog__more-btn > a{
    width: 100%;
    display: inline-block;
    text-align: center;
    font-size: 15px;
    line-height: 38px;
}
}

.blog__more-btn > a:hover{
    color: #fff;
   background: #208E73;
}

.pager-block{
    width: 100%;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

@media screen and (max-width:768px){
.pager-block{
    width: 100%;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
}

.pager_nav{
    display: flex;
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.pager_nav li {
    list-style: none;
    display: inline-block;
    margin-right: 10px;
}

.pager_nav li a{
    display: flex;
    overflow: hidden;
    width: 100%;
    padding: 8px 10px 10px 8px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--c_black);
    box-sizing: border-box;
    align-items: center;
}

.pager_nav li .next{border: 0px;color: #86bc42;}

.pager_nav li .prev{border: 0px;color: #86bc42;}

.pager_nav li .now{
    display: inline-block;
    padding: 5px 10px;
    background: #86bc42;
    border: 1px solid #86bc42;
    text-decoration: none;
    vertical-align: middle;
    font-weight: bold;
    color: #fff;
    font-size: 15px;
}

/*nouhow-link*/
.nouhow-link{
    margin-bottom: 20px;
}

@media screen and (max-width:768px){
.nouhow-link{
    margin: auto;
    margin-bottom: 20px;
    text-align: center;
}
}

.nouhow-link > a{
    background: #DD7D43;
    color: #fff;
    padding: 8px 30px;
    text-align: center;
    margin: auto;
    font-weight: bold;
    font-size: 18px;
    border-radius: 24px;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
}


.nouhow-link > a:hover{
	opacity: 0.7;
	-webkit-opacity: 0.7;
	filter: alpha(opacity=70);
}

/*app-download*/

.app-link{
    width: 80%;
    overflow: hidden;
    margin-bottom: 50px;
    margin-top: 30px;
    height: auto;
    background: #F0F3F5;
    padding: 20px 30px;
    text-align: center;
}

@media screen and (max-width:768px) {
.app-link{
    width: 100%;
    padding: 15px;
}
}

.app-link__ttl{
    color: #088B42;
    font-weight: bold;
    font-size: 21px;
}

@media screen and (max-width:768px) {
.app-link__ttl{
    color: #088B42;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}
}

.app-link__wrap{
    width: 435px;
    height: 100px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width:768px) {
    .app-link__wrap{
        width: 298px;
        height: 80px;
        margin: auto;
    }
    }

    .app-link__wrap .AppStore{
        width: 178px;
        height: 65px;
        margin-right: 37px;
        float: left;
    }
    
    @media screen and (max-width: 768px) {
        .app-link__wrap .AppStore{
        width: 125px;
        height: 46px;
        margin-right: 18px;
        float: left;
    }
    }

    .app-link__wrap .AppStore > img{
        width: 100% !important;
    aspect-ratio: auto !important;
    }
    
    .app-link__wrap .GooglePlay{
        width: 220px;
        height: 65px;
        float: right;
        }
        
        @media screen and (max-width: 768px) {
            .app-link__wrap .GooglePlay{
        width: 155px;
        height: 46px;
        float: right;
        }
        }

.app-link__wrap .GooglePlay > img{
    width: 100% !important;
    aspect-ratio: auto !important;
}

/* 吹き出しのデザイン */
 
.balloon-simple {
    width: 100%;
    margin: 30px 0;
    overflow: hidden;
    padding-bottom: 30px;
}
 
.balloon-simple .icon-right img,
.balloon-simple .icon-left img{
 width: 100%;
 background-size:cover;
}
 
.icon-right p,
.icon-left p{
 text-align: center;
 top: -10px;
 position: relative;
}
 
.balloon-simple .balloon {
 width: 100%; 
}
 
.serif-right,
.serif-left {
 position: relative;
 padding: 20px 20px 20px 25px;
 border-radius: 10px;　//吹き出しの形を変更できます
}
 
.serif-right:after,
.serif-left:after {
 content: "";
 position: absolute;
 top: 15px;
 border-top: 10px solid transparent;
 border-bottom: 5px solid transparent;
 border-left: 5px solid transparent;
}
 
.serif-right p,
.serif-left p  {
 margin: 0;
 padding: 0;
 color: #333;　//吹き出しのセリフの文字色を変更できます
}
 
/* 共通 end */
 
/* 右の吹き出し */
 
.balloon-simple .icon-right {
 float: right;
 width: 100px;
 height: 100px;
 margin-right: 10px;
}
 
.balloon-simple .icon-right img{
    width: 100%;
    object-fit: contain;
    aspect-ratio: auto;
    height: 100%;
    margin: 0px 0 !important;
}
 
.serif-right {
 margin: 8px 40px 0 0px;
 background: #E0EEE6;
 float: right;
 width: calc(100% - 160px);
}
 
.serif-right:after {
 transform: scale(-1, 1);
 right: -22px;
 border-right: 20px solid #E0EEE6;
}
 
/* 右の吹き出し end */
 
/* 左の吹き出し */
 
.balloon-simple .icon-left {
    width: 100px;
    height: 100px;
    margin-left: 10px;
    float: left;
}
 
.balloon-simple .icon-left img{
    width: 100%;
    object-fit: contain;
    aspect-ratio: auto;
    height: 100%;
    margin: 0px 0 !important;
}
 
.serif-left{
    display: inline-block;
    margin: 8px 0 0 45px;
    background: #E0EEE6;
    float: left;
    width: calc(100% - 160px);
}
 
.serif-left:after{
 left: -22px;
 border-right: 20px solid #E0EEE6;
}
 
/* 左の吹き出し end */ 
/* ブログCTAエリア */ 
.link-wrap {
    width: 100%;
    background-color: #EEF5F1;
    padding: 40px 0;
    margin: 50px 0;
}

@media screen and (max-width:768px) {
    .link-wrap {
        width: 100%;
        background-color: #EEF5F1;
        padding: 30px 0;
        margin: auto;
        text-align: center;
    }
}

.link__ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

@media screen and (max-width:768px) {
.link__ttl {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 15px;
}
}

.link__ttl::before,
.link__ttl::after {
    content: '';
    width: 2px;
    height: 21px;
    background-color: #333333;
}

.link__ttl::before {
    margin-right: 30px;
    transform: rotate(-35deg);
}

@media screen and (max-width:768px) {
.link__ttl::before {
    margin-right: 15px;
    transform: rotate(-30deg);
}
}

.link__ttl::after {
    margin-left: 30px;
    transform: rotate(35deg);
}

@media screen and (max-width:768px) {
.link__ttl::after {
    margin-left: 15px;
    transform: rotate(30deg);
}
}

.top-service__btn__wrap {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    margin: 20px auto;
}

@media screen and (max-width:768px) {
    .top-service__btn__wrap {
        width: 100%;
        display: block;
        text-align: center;
        margin: 20px auto;
    }
}

.top-service__btn--user {
    position: relative;
    width: 280px;
    font-size: 16px;
    font-weight: bold;
    line-height: 48px;
    display: inline-block;
    background: #86bc42;
    border-radius: 10px;
    box-sizing: border-box;
    color: #fff;
    margin-right: 30px;
}

@media screen and (max-width:768px) {
    .top-service__btn--user {
    margin-right: 0px;
    margin-bottom: 25px;
    }
}

.top-service__btn--user::after {
    content: "";
    position: absolute;
    top: calc(50% - 4px);
    right: 20px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.top-service__btn--farmer {
    position: relative;
    width: 280px;
    font-size: 16px;
    font-weight: bold;
    line-height: 48px;
    text-decoration: none;
    display: inline-block;
    background: #068b42;
    border-radius: 10px;
    box-sizing: border-box;
    color: #fff;
}

.top-service__btn--farmer::after {
    content: "";
    position: absolute;
    top: calc(50% - 4px);
    right: 20px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.top-service__btn--user:hover,
.top-service__btn--farmer:hover {
	opacity: 0.7;
	-webkit-opacity: 0.7;
	filter: alpha(opacity=70);
}

.app-box {
    width: 100%;
    background-color: #fff;
    padding: 0 0 30px 0;
    margin: 50px 0;
}

@media screen and (max-width:768px) {
    .app-box {
        width: 100%;
        background-color #fff;
        padding: 0;
        margin: 30px 0;
    }
}


.app__ttl {
    background-color: #208E73;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 46px;
    text-align: center;
}

@media screen and (max-width:768px) {
.app__ttl {
    background-color: #208E73;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    padding: 10px 15px;
}
}

.app-flex {
    display: flex;
    padding: 20px 30px;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    align-items: center;
}

@media screen and (max-width:768px) {
.app-flex {
    display: block;
    padding: 30px;
}
}

.app-btn__ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
}

@media screen and (max-width:768px) {
.app-btn__ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}
}

.app-btn__ttl::before,
.app-btn__ttl::after {
    content: '';
    width: 2px;
    height: 20px;
    background-color: #333333;
}

.app-btn__ttl::before {
    margin-right: 30px;
    transform: rotate(-30deg);
}

@media screen and (max-width:768px) {
.app-btn__ttl::before {
    margin-right: 15px;
    transform: rotate(-30deg);
}
}

.app-btn__ttl::after {
    margin-left: 30px;
    transform: rotate(30deg);
}

@media screen and (max-width:768px) {
.app-btn__ttl::after {
    margin-left: 15px;
    transform: rotate(30deg);
}
}

.app-flex__img {
    width: 40%;
}

@media screen and (max-width:768px) {
.app-flex__img {
    width: 100%;
}
}

.app-flex__img>img {
    width: 100%;
}

.app-flex__info {
    width: 60%;
}

@media screen and (max-width:768px) {
.app-flex__info {
    width: 100%;
}
}

.app-btn__wrap {
    display: flex;
    width: 100%;
    padding: 15px 30px 15px 30px;
}

@media screen and (max-width:768px) {
.app-btn__wrap {
    display: flex;
    width: 100%;
    padding: 0px;
}
}

.AppStore {
    height: 56px;
    width: auto;
    margin-right: 20px;
    display: inline-block;
}

@media screen and (max-width:768px) {
.AppStore {
    height: 48px;
    width: auto;
    margin-right: 15px;
    display: inline-block;
}
}

.AppStore>img {
    width: auto;
    height: 56px;
    margin: 0 !important;
}

@media screen and (max-width:768px) {
.AppStore>img {
    width: auto;
    height: 48px;
    margin: 0 !important;
}
}

.GooglePlay {
    height: 56px;
    width: auto;
    display: inline-block;
}


@media screen and (max-width:768px) {
.GooglePlay {
    height: 48px;
    width: auto;
    display: inline-block;
}
}

.GooglePlay>img {
    width: auto;
    height: 56px;
    margin: 0 !important;
}

@media screen and (max-width:768px) {
.GooglePlay>img {
    width: auto;
    height: 48px;
    margin: 0 !important;
}
}


/* データボックス */ 
.topics__box{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    border: 1px solid #ddd;
    padding: 30px 30px;
}

@media screen and (max-width:768px){
    .topics__box{
        width: 100%;
        display: block;
        border: 1px solid #ddd;
        padding: 30px 30px;
    }
    }

.topics__image{
    width: 24%;
    margin-right: 4%;
}
@media screen and (max-width:768px){
    .topics__image{
        width: 50%;
        margin-right: auto;
        margin-left: auto;
    }
    }

.topics__image > img{
    border-radius: 50%;
}

.topics__deta{
    width: 70%;
    text-align: left;
    font-size: 15px;
}

@media screen and (max-width:768px){
    .topics__deta{
        width: 100%;
        text-align: left;
        font-size: 15px;
    }
    }


.contact__wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background: #fff;
    box-sizing: border-box;
    padding: 3rem 3rem;
    margin-block-start: 3rem;
    justify-content: space-between;
    border: 1px solid #2e926e;
    margin-block-end: 4rem;
}

.contact__tel,
.contact__mail {
    flex: 1 1 calc(50% - 1rem);
    /* gap分を引いて調整 */
    box-sizing: border-box;
    padding: 0 2rem;
    /* 内側の余白を分ける */
    min-width: 280px;
    /* スマホで折り返し制御 */
    text-align: center;
    border-right: none;
    /* PCで分けたい場合は media query で追加 */
}

.contact__tel {
    border-right: 2px dotted var(--main-color);
    padding-inline-end: 2rem;
}

.entry .contact__head {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-block-end: 1.5rem;
    color: var(--c-black);
    margin-block-start: 0;
}


.contact__tel-num {
    position: relative;
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--main-color);
}

.contact__tel-num::before {
    content: '';
    width: 28px;
    height: 28px;
    background: url(https://agritrio.co.jp/images/icon-tel.svg) no-repeat center center;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-30px, -40%);
}

.contact__tel-txt {
    font-size: 1.2rem;
    font-weight: normal;
    display: block;
    margin-block-start: 1rem;
    text-align: center;
}

.contact-btn__link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300	px;
    height: 48px;
    margin-block-start: 1.6rem;
    margin-inline: auto;
    border-radius: 24px;
    background-color: #e37c21;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.6rem;
    text-decoration: none;
    line-height: 1;
    box-shadow: 0 4px #c26218;
    transition: transform 0.1s ease, box-shadow 0.1s ease, opacity 0.1s ease;
}

.contact-btn__link:hover {
    transform: translateY(2px);
    /* ボタンが少し沈む */
    box-shadow: 0 2px #c26218;
    /* 影も小さく */
    opacity: 0.9;
    /* 元のホバー効果も残す */
    color: #ffffff;
}

.contact-btn__link span {
    display: block;
    text-align: center;
    line-height: 56px;
}

/* 左アイコン（メール） */
.contact-btn__link::before {
    content: '';
    width: 18px;
    height: 14px;
    background: url(https://agritrio.co.jp/images/icon-mail.svg) no-repeat center center;
    position: absolute;
    top: 50%;
    left: 17%;
    transform: translateY(-50%);
}

/* 右アイコン（矢印） */
.contact-btn__link::after {
    content: '';
    width: 8px;
    height: 14px;
    background: url(https://agritrio.co.jp/images/icon-arrow.svg) no-repeat center center;
    position: absolute;
    top: 50%;
    right: 6%;
    transform: translateY(-50%);
}

.contact__note {
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    margin-block-start: 1.5rem;
}

@media screen and (max-width: 768px) {
    .contact__txt {
        font-size: 1.5rem;
        font-weight: normal;
        text-align: center;
        color: #ffffff;
        width: 90%;
        margin-inline: auto;
    }

    .contact__wrap {
        width: 100%;
        margin-inline: auto;
    }

    .contact__head {
        text-align: center;
        font-size: 1.6rem;
        font-weight: bold;
        margin-block-end: 1rem;
    }

    .contact__tel,
    .contact__mail {
        flex: 1 1 100%;
        padding: 0;
        border-right: none;
    }

    .contact__tel {
        border-bottom: 2px dotted #2e926e;
        padding-inline-end: 0;
        padding-block-end: 3rem;
    }

    .contact__tel-num {
        position: relative;
        font-size: 2.8rem;
        font-weight: 800;
        color: #2e926e;
        margin-inline-end: -3rem;
    }

    .contact-btn__link {
        width: 100%;
        height: 48px;
        margin-inline: auto;
        border-radius: 24px;
        font-size: 1.6rem;
}

    .contact-btn__link::before {
        content: '';
        width: 18px;
        height: 14px;
        background: url(https://agritrio.co.jp/images/icon-mail.svg) no-repeat center center;
        position: absolute;
        top: 50%;
        left: 15%;
        transform: translateY(-50%);
    }

    .contact__tel-num::before {
        content: '';
        width: 25px;
        height: 25px;
        background: url(https://agritrio.co.jp/images/icon-tel.svg) no-repeat center center;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(-31px, -40%);
    }

    .contact__note {
        color: #fff;
        font-size: 1.4rem;
        text-align: center;
        margin-block-start: 1.5rem;
    }
}

.contact-link {
    margin-block-start: 4rem;
    margin-block-end: 2rem;
}

.contact-link a{
    font-size: 1.6rem;
    color: var(--c-link);
    text-align: left;
    text-decoration: underline;
    font-weight: bold;
}