@charset "utf-8";
/*共通設定*/
.h2-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 80px;
}

.h2-txt {
    color: #B8B8B8;
    font-size: 20px;
    font-weight: 600;
}

.h2-title {
    position: relative;
    font-size: 32px;
    color: #81CBC7;
}

.h2-title::before {
    content: "";
    width: 60px;
    height: 2px;
    border-bottom: solid 3px #81CBC7;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.btn {
    position: relative;
    text-align: left;
    display: inline-block;
    max-width: 200px;
    width: 100%;
    padding: 10px 16px;
    background: linear-gradient(90deg, #81CBC7 4%, #ACDCDA 80%);
    border-radius: 50vh;
    color: #fff;
    font-weight: 600;
}

.btn .arrow {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    position: absolute;
    top: 45%;
    right: 16px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 0.5em;
    height: 0.5em;
    transform: translateX(-25%) rotate(45deg);
}

.btn .arrow::before,
.btn .arrow::after {
    content: '';
    position: absolute;
    background-color: #fff;
    border-radius: 0.1em;
}

.btn .arrow::before {
    top: 0;
    left: 0;
    right: 0;
    height: 0.1em;
}

.btn .arrow::after {
    top: 0;
    right: 0;
    bottom: 0;
    width: 0.1em;
}
/*終わり*/  


/*<section class="fv">*/
.fv {
    width: 100%;
    height: calc(100vh - 80px);
    margin-top: 80px;
    background-image: url(../img/top/fv.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.fv-in {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.fv-h1 {
    writing-mode: vertical-rl;
    color: #fff;
    text-shadow: 0 0 8px rgba(0,0,0,0.5);
    letter-spacing: 0.2em;
    font-size: 40px;
}

.fv-line-01,
.fv-line-02 {
    position: relative;
}

.fv-line-01::before,
.fv-line-02::before {
    content: "";
    position: absolute;
    top: 0;
    left: 4px;
    width: 100%;
    height: 100%;
    border-right: solid 6px #81CBC7;
}

.fv-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    max-width: 320px;
    width: 100%;
}

.fv-contact-btn {
    position: relative;
    max-width: 240px;
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(90deg, #81CBC7 4%, #ACDCDA 80%);
    border-radius: 50vh;
    color: #fff;
    font-weight: 600;
}

.fv-contact-btn .arrow {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    position: absolute;
    top: 45%;
    right: 16px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 0.5em;
    height: 0.5em;
    transform: translateX(-25%) rotate(45deg);
}

.fv-contact-btn .arrow::before,
.fv-contact-btn .arrow::after {
    content: '';
    position: absolute;
    background-color: #fff;
    border-radius: 0.1em;
}

.fv-contact-btn .arrow::before {
    top: 0;
    left: 0;
    right: 0;
    height: 0.1em;
}

.fv-contact-btn .arrow::after {
    top: 0;
    right: 0;
    bottom: 0;
    width: 0.1em;
}
/*終わり*/  


/*<section class="design">*/
.design {
    background-image: url(../img/top/design_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.design-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.design-txt-wrap {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    color: #555;
}

.design-h2 {
    font-size: 32px;
    line-height: 1.5;
}

.design-h2 span {
    font-size: 48px;
    color: #00CEC3;
}

.design-txt span {
    font-weight: 600;
    font-size: 18px;
}

.design-img-wrap {
    width: 45%;
}
/*終わり*/  


/*<section class="about">*/
.about-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.about-flex-l {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-h3 {
    font-size: 20px;
    color: #555;
}

.about-h3 span {
    color: #81CBC7;
    font-size: 32px;
}

.about-img-wrap {
    width: 50%;
}
/*終わり*/  


/*<section class="service">*/
.service {
    background-color: #F0FFFE;
}

.service-wrap {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.service-flex:nth-child(2n) {
    flex-direction: row-reverse;
}

.service-flex:nth-child(2n) .service-img-wrap {
    text-align: left;
}

.service-img-wrap {
    position: relative;
    text-align: right;
    width: 45%;
}

.service-img-wrap::before {
    content: "";
    position: absolute;
    bottom: -20px;
    right: 40px;
    width: 100%;
    height: 90%;
    background-color: #81CBC7;
    border-radius: 10px;
    z-index: 1;
}

.service-flex:nth-child(2n) .service-img-wrap::before {
    left: 40px;
}

.service-img {
    position: relative;
    width: 100%;
    z-index: 2;
}

.service-txt-wrap {
    width: 50%;
}

.service-num {
    font-weight: 600;
    color: #888;
    font-size: 18px;
}

.service-h3 {
    color: #81CBC7;
    font-size: 32px;
    line-height: 1.3;
}

.service-h3 small {
    font-size: 20px;
}

.service-txt {
    margin-top: 24px;
}

.service-btn-wrap {
    text-align: center;
    margin-top: 80px;
}
/*終わり*/  


/*<section class="news">*/
.news-ul li {
    border-top: solid 1px #CECECE;
    padding: 24px 0;
}

.news-ul li:last-child {
    border-bottom: solid 1px #CECECE;
}

.news-link {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.news-link .arrow {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    position: absolute;
    top: 45%;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 0.5em;
    height: 0.5em;
    transform: translateX(-25%) rotate(45deg);
}

.news-link .arrow::before,
.news-link .arrow::after {
    content: '';
    position: absolute;
    background-color: #81CBC7;
    border-radius: 0.1em;
}

.news-link .arrow::before {
    top: 0;
    left: 0;
    right: 0;
    height: 0.1em;
}

.news-link .arrow::after {
    top: 0;
    right: 0;
    bottom: 0;
    width: 0.1em;
}

.news-txt-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
}

.news-date {
    color: #81CBC7;
}

.news-cate {
    background-color: #81CBC7;
    color: #fff;
    padding: 4px 16px;
    font-size: 12px;
    text-wrap: nowrap;
}

.news-title {
    padding-right: 24px;
}

.news-btn-wrap {
    text-align: center;
    margin-top: 80px;
}
/*終わり*/  


/*<section class="link-btn">*/
.link-btn {
    padding: 40px 5vw 80px 5vw;
}

.link-btn-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 40px 24px;
}

.link-btn-con {
    position: relative;
    width: 100%;
    height: 100%;
}

.link-btn-con::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #81CBC7 4%, #19A199 80%);
    opacity: 0.5;
    border-radius: 8px;
    z-index: 2;
}

.link-btn-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.link-btn-h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: #fff;
    line-height: 1;
    z-index: 3;
}

.link-btn-h2 {
    font-size: 24px;
    text-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.link-btn-h2 small {
    font-size: 14px;
}
/*終わり*/  


/*<section class="partner">*/
.partner {
    background-color: #F0FFFE;
}

.partner-in {
    max-width: 980px;
}

.partner-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 40px 24px;
}
/*終わり*/  


/*<section class="access">*/
.access-in {
    max-width: 980px;
}

.access-wrap {
    border: solid 2px #81CBC7;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.access-txt-wrap {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.access-txt-01 {
    color: #81CBC7;
    font-size: 20px;
    font-weight: 600;
}

.map-wrap {
    width: 50%;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
/*終わり*/  


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
/*終わり*/  


/*<section class="fv">*/
/*終わり*/  


/*<section class="design">*/
/*終わり*/  


/*<section class="about">*/
/*終わり*/  


/*<section class="service">*/
/*終わり*/  


/*<section class="news">*/
/*終わり*/  


/*<section class="link-btn">*/
/*終わり*/  


/*<section class="partner">*/
/*終わり*/  


/*<section class="access">*/
/*終わり*/  
}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
/*終わり*/ 


/*<section class="fv">*/
/*終わり*/  


/*<section class="design">*/
/*終わり*/  


/*<section class="about">*/
/*終わり*/  


/*<section class="service">*/
/*終わり*/  


/*<section class="news">*/
/*終わり*/  


/*<section class="link-btn">*/
/*終わり*/  


/*<section class="partner">*/
/*終わり*/  


/*<section class="access">*/
/*終わり*/  

}
