@charset "utf-8";

/* 基本ここから *******************/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
    letter-spacing: 0.05em;
}

html {
    margin: 0 !important;
    background-color: #eaedef;
    font-family: "Noto Sans JP", sans-serif;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

dl,
dt,
dd {
    font-weight: 400;
    display: block;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
    color: #2e633b;
}

/* 透明から表示 */
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeUpTrigger {
    opacity: 0;
}


/* .fadeIn.visible {
    animation: opacityFadeIn 2s ease 0s 1 normal;
}

@keyframes opacityFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
} */
/* 下から上にフェードイン */
/* .fadeInUp.visible {
    animation: fadeInBottom 1s ease 0s 1 normal;
}

@keyframes fadeInBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
    }
} */

/* 基本ここまで *******************/

/* 共通ここから *******************/

.sp-img {
    display: none !important;
}

.sp {
    display: none !important;
}

.sp-small {
    display: none !important;
}

@media (max-width: 1024px) {
    .sp-img {
        display: block !important;
    }

    .pc-img {
        display: none !important;
    }

    .sp {
        display: block !important;
    }

    .pc {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .sp-small {
        display: block !important;
    }

    .pc-small {
        display: none !important;
    }
}

.b-t-none a {
    border-top: none !important;
}

/* フォント */
.NSJ {
    font-family: "Noto Sans JP", sans-serif !important;
}

.ZKGN {
    font-family: "Zen Kaku Gothic New", sans-serif !important;
}

/* 矢印 */
.yazirusi {
    position: relative;
    width: 17px;
    margin: 0;
    transition: 0.4s;
}

.line01 {
    height: 0.5px;
    background-color: #fff;
}

.line02 {
    position: absolute;
    top: 0;
    right: 0;
    transform-origin: right bottom;
    width: 9px;
    height: 0.5px;
    background-color: #fff;
    transform: rotate(45deg);
}

@media (max-width: 1024px) {
    .yazirusi {
        width: 21px;
    }

    .line02 {
        width: 10px;
    }
}

.opa {
    transition: 0.4s;
}

.opa:hover {
    opacity: 0.7;
}

/* ボタン */

.btn-wrap {
    width: 160px;
}

.btn {
    margin-top: 30px;
    /* border: 0.75px solid #fff; */
    padding: 10px 15px;
    position: relative;
    display: block;
    background-color: #2e633b;
}

.btn::after {
    position: absolute;
    content: "";
    background-color: #fff;
    height: 0.75px;
    width: 34px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.btn p,
.btn .btn-txt {
    text-align: left;
    font-size: 16px;
    margin: 0 !important;
    color: #fff !important;
}

@media (max-width: 767px) {
    .btn-wrap {
        width: 175px;
    }

    .btn {
        padding: 15px;
    }

    .btn p,
    .btn .btn-txt {
        font-size: 15px;
    }

    .btn::after {
        width: 37.5px;
    }
}

/* ヘッダーここから */

body {
    position: relative;
}

#header {
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: #595757;
    height: 100vh;
    width: 300px;

    color: #fff;
}

#header.stop {
    position: absolute;
    top: auto;
    bottom: 470px;
}

#header .header__inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* height: 100vh; */
    height: auto;
    /* padding: 50px 0px; */
    padding: 4vh 0px;
}

#header .header__inner .header__logo_wrap {
    /* max-width: 85px; */
    max-width: 28%;
    width: 100%;
    margin: 0 auto;
}

#header .header__inner .header__logo_wrap .header__logo {
    display: inline-block;
}

#header .header__inner .header__logo_wrap .header__logo img {
    width: 100%;
}

#header .header__inner .header__nav_wrap {
    padding: 45px;
    padding-top: 3.4vh;
    padding-bottom: 3.4vh;
}

#header .header__inner .header__nav_wrap .header__nav-ttl {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
    /* margin-bottom: 30px; */
    margin-bottom: 2.5vh;
    color: #fff;
}

#header .header__inner .header__nav_wrap .header__nav .header__nav-list .header__nav-item {
    padding: 1.65vh 10px;
    /* padding: 20px 10px; */
    border-bottom: 0.5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header .header__inner .header__nav_wrap .header__nav .header__nav-list .header__nav-item:first-child {
    border-top: 0.5px solid #fff;
}

#header .header__inner .header__nav_wrap .header__nav .header__nav-list .header__nav-item:hover .yazirusi {
    margin-right: -10px;
}

#header .header__inner .header__nav_wrap .header__nav .header__nav-list .header__nav-item p {
    font-size: 17px;
    color: #fff;
}

#header .header__inner .header__nav_wrap .header__btn_contact {
    /* margin: 50px 5px 0; */
    margin: 4vh 5px 0;
    border: 0.75px solid #fff;
    padding: 15px 0;
    position: relative;
    display: block;
    width: auto;
    background-color: transparent;
}

#header .header__inner .header__nav_wrap .header__btn_contact::after {
    position: absolute;
    content: "";
    background-color: #fff;
    height: 0.75px;
    width: 34px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

#header .header__inner .header__nav_wrap .header__btn_contact p {
    text-align: center;
    font-size: 16px;
    color: #fff;
}

#header .header__inner .header__btn_tel p {
    padding: 0 25px;
    color: #fff;
    font-size: 29px;
    text-align: center;
    font-weight: 500;
    line-height: 1.2;
}

#header .header__inner .header__btn_tel p span {
    font-size: 20px;
}

#header .header__inner #header-menu-box {
    display: none;
}

@media (max-width: 1280px) {
    #header {
        width: 250px;
    }

    #header .header__inner .header__nav_wrap {
        padding: 25px;
        padding-top: 3.6vh;
        padding-bottom: 3vh;
    }

    #header .header__inner .header__nav_wrap .header__btn_contact {
        /* margin-top: 35px; */
        margin-top: 4vh;
    }

    #header .header__inner .header__btn_tel p {
        font-size: 23px;
    }

    #header .header__inner .header__btn_tel p span {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    #header {
        height: 70px;
        width: 100%;
        background-color: #eaedef;
    }

    #header .header__inner {
        align-items: center;
        flex-direction: row;
        height: 100%;
        margin: 0 auto;
        width: 100%;
        justify-content: space-between;
        padding: 15px 40px;
    }

    #header .header__inner .header__logo_wrap {
        max-width: 180px;
        margin: 0;
    }

    #header .header__inner .header__nav_wrap {
      display: none;
      background-color: #eaedef;
      position: fixed;
      top: 70px;
      left: 0;
      width: 100%;
      height: calc(100dvh - 70px);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      padding: 25px 40px 40px;
    }


    #header .header__inner #header-menu-box {
        display: flex;
        justify-content: space-between;
    }

    #header .header__inner #header-menu-box #menuopen__btn {
        position: relative;
        display: block;
        height: 17.5px;
        width: 30px;
        z-index: 100;
    }

    #header .header__inner #header-menu-box span.menu-line {
        background-color: #231815;
        display: block;
        height: 1px;
        position: absolute;
        top: 0%;
        left: 0;
        right: 0;
        margin: auto;
        transition: transform .3s;
        width: 100%;
    }

    #header .header__inner #header-menu-box span.menu-line.menu-line--center {
        top: 50%;
    }

    #header .header__inner #header-menu-box span.menu-line.menu-line--bottom {
        top: 100%;
    }

    #header .header__inner .header__btn_tel {
        display: none;
    }

    #menuopen__btn.active .menu-line.menu-line--top {
        transform: rotate(-45deg);
        top: 50% !important;
    }

    #menuopen__btn.active .menu-line.menu-line--center {
        transform: scaleX(0);
    }

    #menuopen__btn.active .menu-line.menu-line--bottom {
        transform: rotate(45deg);
        top: 50% !important;
    }


    #header .header__inner .header__nav_wrap .header__nav-ttl {
        font-size: 22.5px;
        line-height: 1.2;
        font-weight: bold;
        text-align: center;
        margin-bottom: 25px;
        color: #221714;
    }

    #header .header__inner .header__nav_wrap .header__nav .header__nav-list .header__nav-item {
        padding: 20px 30px;
        border-bottom: 0.5px solid #221714;
    }

    #header .header__inner .header__nav_wrap .header__nav .header__nav-list .header__nav-item:first-child {
        border-top: 0.5px solid #221714;
    }

    #header .header__inner .header__nav_wrap .header__nav .header__nav-list .header__nav-item .line01,
    #header .header__inner .header__nav_wrap .header__nav .header__nav-list .header__nav-item .line02 {
        background-color: #221714;
    }

    #header .header__inner .header__nav_wrap .header__nav .header__nav-list .header__nav-item p {
        font-size: 16.5px;
        color: #221714;
        line-height: 1.2;
    }

    #header .header__inner .header__nav_wrap .icon-wrap.sp {
        margin: 35px auto;
        display: flex !important;
        gap: 25px;
        justify-content: center;
    }

    #header .header__inner .header__nav_wrap .icon-wrap.sp img {
        width: 50px;
    }

    #header .header__inner .header__nav_wrap a.header__btn_tel.header__btn {
        display: block !important;
    }

    #header .header__inner .header__nav_wrap a.header__btn_tel.header__btn p {
        font-size: 30px;
        line-height: 1;
        padding: 0;
        color: #221714;
    }

    #header .header__inner .header__nav_wrap a.header__btn_tel.header__btn p span {
        font-size: 23px;
    }

  #header .header__inner .header__nav_wrap .header__nav .header__nav-list .header__nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  #header .header__inner .header__nav_wrap .header__nav .header__nav-list .header__nav-item .yazirusi {
    position: relative;
    width: 21px;
    height: 12px;
    flex-shrink: 0;
  }

  #header .header__inner .header__nav_wrap .header__nav .header__nav-list .header__nav-item .line01 {
    position: absolute;
    top: 50%;
    left: 0;
    width: 21px;
    height: 1px;
    transform: translateY(-50%);
    background-color: #221714;
  }

  #header .header__inner .header__nav_wrap .header__nav .header__nav-list .header__nav-item .line02 {
    position: absolute;
    top: 50%;
    right: 0;
    width: 10px;
    height: 1px;
    transform: translateY(-50%) rotate(45deg);
    transform-origin: right center;
    background-color: #221714;
  }

}

/* ヘッダーここまで */

/* フッターここから */

footer {
    background-color: #595757;

    position: relative;
}

footer .footer-inner {
    max-width: 1200px;
    padding-bottom: 40px;
}

a.besideHover{
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
 a.besideHover:hover{
  opacity: 1;
  transform: translate(10px, 0);
}

a.besideHover img{
  width:110px;
}

@media (max-width: 1600px) {
    footer .footer-inner {
        padding-right: 60px;
    }
}

@media (max-width: 1380px) {
    footer .footer-inner {
        max-width: 100%;
        width: 95%;
        margin-right: auto;
        margin-left: 0;
        padding-right: 0;
    }
}

footer .footer-inner .footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}

footer .footer-inner .footer-logo-wrap p {
    font-size: 16px;
    color: #fff;
    margin-top: 10px;
    text-align: left;
}

footer .footer-inner .footer-logo-wrap a {
    display: block;
}

footer .footer-inner .footer-logo-wrap .footer-logo {
    max-width: 370px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 1380px) {
    footer .footer-inner .footer-logo-wrap .footer-logo {
        max-width: 300px;
    }
}

@media (max-width: 1280px) {
    footer .footer-inner .footer-logo-wrap .footer-logo {
        max-width: 210px;
    }
}

footer .footer-inner .footer-logo-wrap .icon-wrap {
    margin-top: 40px;
    display: flex;
    gap: 30px;
}

@media (max-width: 1380px) {
    footer .footer-inner .footer-logo-wrap .icon-wrap {
        margin-top: 20px;
    }
}

footer .footer-inner .footer-logo-wrap .icon-wrap img {
    width: 50px;
    height: 50px;
}

footer .footer-inner .footer-txt-wrap {
    max-width: 600px;
    width: 100%;
}

@media (max-width: 1280px) {
    footer .footer-inner .footer-txt-wrap {
        max-width: 510px;
    }
}

footer .footer-inner .footer-txt-wrap .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    padding-bottom: 50px;
}

@media (max-width: 1380px) {
    footer .footer-inner .footer-txt-wrap .footer-nav {
        padding-bottom: 30px;
    }
}

footer .footer-inner .footer-txt-wrap .footer-nav a {
    display: block;
    position: relative;
}

footer .footer-inner .footer-txt-wrap .footer-nav a::before {
    position: absolute;
    content: "";
    width: 9px;
    height: 1px;
    background-color: #fff;
    left: 0;
    top: 50%;
}

footer .footer-inner .footer-txt-wrap .footer-nav a li {
    padding-left: 18px;
    font-size: 15px;
    color: #fff;
}

footer .footer-inner .footer-txt-wrap .footer-txt {
    padding-top: 50px;
    border-top: 0.75px solid #fff;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 1380px) {
    footer .footer-inner .footer-txt-wrap .footer-txt {
        padding-top: 30px;
    }
}

footer .footer-inner .footer-txt-wrap .footer-txt .access-txt {}

footer .footer-inner .footer-txt-wrap .footer-txt .access-txt dl {
    display: flex;
    gap: 20px;
    align-items: center;
}

footer .footer-inner .footer-txt-wrap .footer-txt .access-txt dl dt {
    width: 90px;
    font-size: 14px;
    color: #fff;
    text-align: left;
    line-height: 2.2;
}

footer .footer-inner .footer-txt-wrap .footer-txt .access-txt dl dd {
    font-size: 14px;
    color: #fff;
    text-align: left;
}

footer .footer-inner .footer-txt-wrap .footer-txt .access-map {
    max-width: 230px;
    flex: 1;
}

@media (max-width: 1280px) {
    footer .footer-inner .footer-txt-wrap .footer-txt .access-map {
        max-width: 170px;
    }
}

footer .footer-inner .footer-txt-wrap .footer-txt .access-map #google-map {
    width: 100%;
    height: 153px;
}

@media (max-width: 1280px) {
    footer .footer-inner .footer-txt-wrap .footer-txt .access-map #google-map {
        height: 130px;
    }
}

footer .footer-inner .footer-txt-wrap .footer-txt .access-map p {
    text-align: right;
    font-size: 14px;
    color: #fff;
    margin-top: 10px;
}

footer .footer-inner .footer-txt-wrap .footer-txt .access-map p a {
    font-size: 14px;
    color: #fff;
}

footer .footer-inner .copy {
    font-size: 14px;
    color: #fff;
    text-align: center;
}

@media (max-width: 1024px) {
    footer .footer-inner {
        max-width: 100%;
        width: 100%;
        margin-right: auto;
        margin-left: 0;
        padding: 50px 20px;
    }

    footer .footer-inner .footer-main {
        flex-direction: column;
        margin-bottom: 35px;
        justify-content: center;
        align-items: center;
    }

    footer .footer-inner .footer-logo-wrap .footer-logo {
        max-width: 370px;
    }

    footer .footer-inner .footer-logo-wrap .icon-wrap {
        margin-top: 30px;
        justify-content: center;
    }

    footer .footer-inner .footer-txt-wrap {
        max-width: 100%;
    }

    footer .footer-inner .footer-txt-wrap .footer-nav {
        display: none;
    }

    footer .footer-inner .footer-txt-wrap .footer-txt {
        padding-top: 30px;
        border-top: none;
        /* flex-direction: column; */
        gap: 25px;
        justify-content: center;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    footer .footer-inner .footer-logo-wrap .footer-logo {
        max-width: 321px;
    }

    footer .footer-inner .footer-txt-wrap .footer-txt {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    footer .footer-inner .footer-txt-wrap .footer-txt .access-txt dl dt {
        width: 85px;
        font-size: 12.5px;
        color: #fff;
        text-align: left;
        line-height: 2.2;
    }

    footer .footer-inner .footer-txt-wrap .footer-txt .access-txt dl dd {
        font-size: 12.5px;
    }

    footer .footer-inner .footer-txt-wrap .footer-txt .access-map {
        max-width: 250px;
        width: 100%;
    }

    footer .footer-inner .footer-txt-wrap .footer-txt .access-map #google-map {
        height: 166.5px;
    }

    footer .footer-inner .footer-txt-wrap .footer-txt .access-map p {
        text-align: right;
        font-size: 12.5px;
        margin-top: 10px;
    }

    footer .footer-inner .copy {
        font-size: 10px;
    }

    footer .footer-inner .footer-logo-wrap p {
        font-size: 15px;
        text-align: center;
    }
}

/* フッターここまで */

.section {
    padding-left: 300px;
}

@media (max-width: 1280px) {
    .section {
        padding-left: 250px;
    }
}

.section-bg {
    margin-left: auto;
    margin-right: 0;
    background-color: #fff;
    max-width: 1425px;
    padding-left: 100px;
    border-radius: 20px 0 0 20px;
    margin-bottom: 100px;
}

@media (min-width: 2100px) {
    .section-bg {
        max-width: 1700px;
    }
}

@media (max-width: 1700px) {
    .section-bg {
        margin-left: 320px;
        max-width: 100%;
        padding-left: 0;
    }
}

@media (max-width: 1280px) {
    .section-bg {
        margin-left: 250px;
    }
}

.section-bg .section-inner {
    margin: 0;
    max-width: 1100px;
}

@media (max-width: 1700px) {
    .section-bg .section-inner {
        margin: 0 auto;
    }
}

@media (max-width: 1500px) {
    .section-bg .section-inner {
        margin: 0 60px;
    }
}

@media (max-width: 1380px) {
    .section-bg .section-inner {
        max-width: 100%;
        width: 90%;
        margin: 0 auto;
    }
}

.section-inner {
    max-width: 1000px;
    padding: 100px 20px;
    margin: auto;
}

@media (max-width: 1380px) {
    /* .section-inner {
        max-width: 100%;
        width: 90%;
    } */
}

.section-ttl {
    text-align: center;
    color: #231815;
    margin-bottom: 50px;
}

.section-ttl span {
    display: block;
}

.section-ttl span.en {
    font-size: 50px;
    letter-spacing: 0.05em;
    font-weight: bold;
    line-height: 1;
    padding-bottom: 10px;
}

.section-ttl span.ja {
    font-size: 20px;
    letter-spacing: 0.05em;
}

.section-sub-txt {
    font-size: 30px;
    letter-spacing: 0.05em;
    line-height: 1.6;
    color: #231815;
    text-align: center;
    font-weight: 600;

    margin-bottom: 50px;
}

.ttl {
    font-size: 20px;
    padding-left: 10px;
    position: relative;
    color: #2e633b;
    margin-bottom: 50px;
    line-height: 1;
    font-weight: 600;
}

.ttl::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: #2e633b;
    width: 1px;
    height: 20px;
}

.sub-txt {
    font-size: 25px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    color: #2e633b;
    margin-bottom: 50px;
    font-weight: 600;
}

p {
    font-size: 16px;
    color: #231815;
    letter-spacing: 0.05em;
    line-height: 1.87;
    text-align: center;
}

.txt {
    font-size: 16px;
    color: #231815;
    letter-spacing: 0.05em;
    line-height: 1.87;
    text-align: center;
}

.txt-gl {
    color: #2e633b;
}

.txt-aline-l {
    text-align: left;
}

@media (max-width: 1024px) {
    .section {
        padding-left: 0;
    }

    .section-inner {
        max-width: 100%;
        width: 100%;
        padding: 50px 20px;
    }

    .section-bg {
        margin-left: 0;
        border-radius: 0;
        margin-bottom: 50px;
    }

    .section-bg .section-inner {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        padding: 50px 20px;
    }
}

@media (max-width: 820px) {
    p {
        font-size: 15px;
        letter-spacing: 0.05em;
        line-height: 1.5;
        text-align: left;
    }

    .txt {
        font-size: 15px;
        letter-spacing: 0.05em;
        line-height: 1.5;
        text-align: left;
    }


    .section-ttl {
        margin-bottom: 30px;
    }

    .section-ttl span.en {
        font-size: 37.5px;
    }

    .section-ttl span.ja {
        font-size: 15px;
        letter-spacing: 0.05em;
    }

    .section-sub-txt {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .ttl {
        margin-bottom: 40px;
    }

    .sub-txt {
        font-size: 22.5px;
        line-height: 1.2;
        font-weight: 600;
    }

    .section-sub-txt {
        line-height: 1.3;
    }
}

/* 共通ここまで *******************/


/* TOPここから *******************/

/* MVここから */

#mv {
    position: relative;
    width: 100%;
    height: calc(90vh - 100px);
    /* height: 90vh; */
    /* height: 100%; */
    overflow: hidden;
    padding: 30px 30px 0 330px;
}

#mv .section-inner {
    position: relative;
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

#mv .section-inner .picture_foundation {
    height: 100%;
}

#mv .picture_foundation picture,
#mv .picture_foundation picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-fit: contain; */
    object-position: center;
    display: block;
    border-radius: 20px;
}

#mv .mv-txt {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}

#mv .mv-txt img {
    width: 40%;
}

#mv .mv-txt .main {
    background-color: #2e633b;
    padding: 10px;
    display: inline-flex;
}

#mv .mv-txt .main span {
    border: 2px solid #fff;
    padding: 25px;
    font-size: 40px;
    font-weight: bold;
}

#mv .mv-txt .sub {
    font-size: 25px;
    text-align: right;
    display: block;
    margin-top: 25px;
    font-weight: 500;
}


#mv .mv-txt p {
    /* font-size: 50px; */
    font-size: 2.6vw;
    letter-spacing: 0.05em;
    line-height: 1.3;
    color: #fff;
    /* text-shadow: 0px 0px 7px rgba(160, 69, 36, 0.75); */
    text-align: left;
}

#mv .section-inner .is_scroll {
    position: absolute;
    bottom: 0;
    left: 50%;

    display: none;
}

#mv .section-inner .is_scroll::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 100px;
    background: #fff;
}

@media (max-width: 1280px) {
    #mv .section-inner .is_scroll::before {
        height: 65px;
    }
}

#mv .section-inner .is_scroll::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -6px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #c9a063;
    animation: scrolldown 1.6s ease-in-out infinite, circlemovehide 1.6s ease-out infinite;
}

@keyframes scrolldown {
    0% {
        transform: translateY(-100px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 1280px) {
    @keyframes scrolldown {
        0% {
            transform: translateY(-60px);
        }

        100% {
            transform: translateY(0);
        }
    }
}

@keyframes circlemovehide {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    80% {
        opacity: 0.9;
    }

    100% {
        opacity: 0;
    }
}

#mv .section-inner .is_scroll span {
    display: block;
    position: absolute;
    bottom: 115px;
    left: -0.75em;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.1em;
    writing-mode: vertical-lr;
    text-decoration: none;
    text-transform: uppercase;
}

@media (max-width: 1280px) {
    #mv .section-inner .is_scroll span {
        bottom: 75px;
        font-size: 13px;
    }
}

.line-fix {
    position: fixed;
    width: 250px;
    height: 80px;
    bottom: 70px;
    right: 1.1%;
    z-index: 2;
    display: flex;
    transition: transform 0.3s ease;
    justify-content: center;
    align-items: center;
}

.line-fix img {
    width: 95px;
}

#line-fix.stop {
    position: absolute;
    top: auto;
    bottom: 630px;

    transition: 0s;
}

#line-fix .move-right {
  display: inline-block;              /* transformを効かせる */
}

#line-fix .move-right img {
  transform: translateX(0);
  transition: transform 300ms ease;   /* 速度は好みで調整 */
  will-change: transform;
}

/* ホバーで右に移動（値は調整） */
#line-fix .move-right:hover img {
  transform: translateX(14px);
}

/* バナーは動かさない（念のため固定） */
#line-fix > a img {
  transform: none !important;
  transition: none !important;
}

.line-fix_tate {
    position: fixed;
    bottom: 0;
    right: 1.1%;
    z-index: 2;
    transition: transform 0.3s ease;
}

.line-fix_tate .insuarance{
  display:flex;
  justify-content: center;
  align-items: center;
  transform: translateX(9px);
}
.line-fix_tate a.besideHover img{
  width: 24px;
}

.line-fix_tate .lineImg img{
  margin-top:10px;
  width:95px;
}

.line-fix_tate .insuarance a.besideHover {
  display: inline-block;
  overflow: visible;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.line-fix_tate .insuarance a.besideHover:hover {
  transform: translateY(8px);
}

.line-fix_tate .insuarance a.besideHover img {
  display: block;
  width: 24px;
}

@media (max-width: 1280px) {
    #mv {
        padding-left: 280px;
    }
}

@media (max-width: 1024px) {
    #mv {
        padding: 70px 20px 0 20px;
        width: 100%;
        margin: 0 auto 15px;
    }

    #mv .section-inner .is_scroll {
        display: none;
    }

    /* #mv .mv-txt {
        position: absolute;
        top: 50%;
        left: 5%;
        transform: translateY(-50%);
    }

    #mv .mv-txt p {
        padding: 0;
        font-size: 25px;
        justify-content: center;
        display: flex;
        flex-direction: column;
    } */

    .line-fix {
        bottom: 25px;
    }

    #line-fix.stop {
        position: fixed;
        bottom: 20px;
    }

    #mv .mv-txt img {
        width: 45%;
    }
}

@media (max-width: 820px) {}

@media (max-width: 767px) {

    #mv {
        height: 100%;
    }

    #mv .picture_foundation picture,
    #mv .picture_foundation picture img {
        object-fit: cover;
        object-position: 55% center !important;
    }

    #mv .picture_foundation picture img {
        object-fit: cover;
        object-position: 55% center !important;
    }

    #mv .mv-txt {
        position: absolute;
        top: 57% !important;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        width: 100%;
    }

    #mv .mv-txt img {
        width: 80%;
        margin: 0 auto;
        display: block;
    }

    #mv .mv-txt .main {
        padding: 5px;
        margin: 0 auto;
    }

    #mv .mv-txt .main span {
        border: 1px solid #fff;
        padding: 10px;
        font-size: 18.5px;
    }

    #mv .mv-txt .sub {
        font-size: 13.5px;
        text-align: right;
        margin-right: 10%;
        margin-top: 10px;
    }

    #mv .mv-txt p {
        padding: 0;
        font-size: 25px;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    #mv .section-inner .picture_foundation {
        /* height: 650px; */
        height: 550px;
    }

    /* #mv {
        height: 650px;
    } */
}

/* MVここまで */

/* aboutここから */

#about .section-inner {
    max-width: 1200px;
}

#about .about-img-wrap {
    margin-top: 50px;
    display: flex;
    gap: 20px;
}

#about .about-img-wrap .about-list {
    width: calc((100% - 80px) / 5);
    background-color: #fff;
    border-radius: 15px;
    padding: 80px 20px 20px 20px;
    position: relative;
}

#about .about-img-wrap .about-list .about-number {
    position: absolute;
    top: -0.5px;
    left: 0;
    width: 100px;
    height: 100px;
}

#about .about-img-wrap .about-img {
    height: 55px;
    margin: 0 auto;
    display: block;
}

#about .about-img-wrap .about-list-ttl {
    color: #231815;
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 1.25;
    margin: 30px 0 20px;
}

#about .about-img-wrap .about-list-txt {
    color: #231815;
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
}

/* @media (max-width: 1600px) {
    #about .section-inner {
        max-width: 1000px;
    }
} */

@media (max-width: 1024px) {
    #about .section-inner {
        padding: 50px 20px 100px;
        /* width: 90%; */
    }
}


@media (max-width: 820px) {

    #about .about-img-wrap {
        gap: 25px;
        flex-direction: column;
    }

    #about .about-img-wrap .about-list {
        width: 100%;
        background-color: #fff;
        border-radius: 15px;
        padding: 50px 20px 20px;
        position: relative;
    }

    #about .about-img-wrap .about-list .about-number {
        position: absolute;
        top: -0.5px;
        left: 0;
        width: 96.5px;
        height: 96.5px;
    }

    #about .about-img-wrap .about-img {
        height: 77.5px;
        margin: 0 auto;
        display: block;
    }

    #about .about-img-wrap .about-list-ttl {
        font-size: 17.5px;
        text-align: center;
        margin: 30px 0 20px;
    }
}

/* aboutここまで */

/* philosophyここから */

#philosophy.section-bg {
    margin-bottom: 160px;
}

#philosophy .section-sub-txt {
    max-width: 648px;
    margin: 0 auto 50px;
}

#philosophy .section-sub-txt img {
    width: 100%;
}

#philosophy .section-sub-txt .section-sub-txt-sp {
    display: none !important;
}

@media (max-width: 1024px) {
    #philosophy.section-bg {
        margin-bottom: 100px;
    }
}

@media (max-width: 820px) {
    #philosophy .section-sub-txt {
        margin: 0 auto 30px;
    }
}

@media (max-width: 767px) {
    #philosophy .section-sub-txt .section-sub-txt-pc {
        display: none !important;
    }

    #philosophy .section-sub-txt .section-sub-txt-sp {
        display: block !important;
    }
}

/* philosophyここまで */

/* greetings-companyここから */

#greetings-company .greetings-wrap {
    display: flex;
    gap: 130px;
    margin-bottom: 50px;
    padding: 0 40px;
}

@media (max-width: 1500px) {
    #greetings-company .greetings-wrap {
        gap: 50px;
    }
}

@media (max-width: 1380px) {
    #greetings-company .greetings-wrap {
        padding: 0;
    }
}

#greetings-company .greetings-wrap .greetings-img {
    margin-top: -150px;
}

#greetings-company .greetings-wrap .greetings-img img {
    width: 330px;
}

@media (max-width: 1380px) {
    #greetings-company .greetings-wrap .greetings-img img {
        width: 270px;
    }
}

#greetings-company .company-wrap {
    display: flex;
    gap: 65px;
}

@media (max-width: 1500px) {
    #greetings-company .company-wrap {
        gap: 50px;
    }
}

#greetings-company .company-wrap .company-txt {
    flex: 1;
}

#greetings-company .company-wrap .company-txt .company-txt-dl-wrap dl {
    display: flex;
    padding: 20px 10px;
    border-bottom: 1px solid #231815;
}

#greetings-company .company-wrap .company-txt .company-txt-dl-wrap dl:first-child {
    border-top: 1px solid #231815;
}

#greetings-company .company-wrap .company-txt .company-txt-dl-wrap dl dt {
    color: #231815;
    font-size: 16px;
    letter-spacing: 0.05em;
    font-weight: 500;
    min-width: 140px;
}

#greetings-company .company-wrap .company-txt .company-txt-dl-wrap dl dd {
    color: #231815 !important;
    font-size: 16px;
    letter-spacing: 0.05em;
}

#greetings-company .company-wrap .company-img {
    width: 350px;
    margin-top: 40px;
}

@media (max-width: 1280px) {
    #greetings-company .company-wrap .company-img {
        width: 320px;
        margin-top: 60px;
    }
}

#greetings-company .company-wrap .company-img img {
    width: 290px;
    display: block;
    border-radius: 15px;
}

@media (max-width: 1280px) {
    #greetings-company .company-wrap .company-img img {
        width: 270px;
    }
}

#greetings-company .company-wrap .company-img img:last-child {
    margin-left: auto;
    display: block;
    margin-top: 50px;
}

@media (max-width: 1024px) {
    #greetings-company .greetings-wrap .greetings-img {
        margin-top: -100px;
    }
}

@media (max-width: 820px) {
    #greetings-company .greetings-wrap {
        gap: 40px;
    }

    #greetings-company .greetings-wrap .greetings-img img {
        width: 225px;
    }
}

@media (max-width: 767px) {
    #greetings-company .greetings-wrap {
        flex-direction: column;
    }

    #greetings-company .company-wrap {
        flex-direction: column;
        gap: 35px;
    }

    #greetings-company .company-wrap .company-txt .company-txt-dl-wrap dl {
        flex-direction: column;
        padding: 15px 10px;
    }

    #greetings-company .company-wrap .company-txt .company-txt-dl-wrap dl dt {
        font-size: 15px;
        font-weight: bold;
        padding-bottom: 5px;
    }

    #greetings-company .company-wrap .company-txt .company-txt-dl-wrap dl dd {
        font-size: 15px;
    }

    #greetings-company .company-wrap .company-img {
        margin-top: 0;
        width: 100%;
    }

    #greetings-company .company-wrap .company-img img {
        width: 186.5px;
        border-radius: 10px;
    }

    #greetings-company .company-wrap .company-img img {
        width: 186.5px;
        border-radius: 10px;
        margin: 0 auto;
    }

    #greetings-company .company-wrap .company-img img:last-child {
        margin-left: auto;
        display: block;
        margin-top: 30px;
        margin-right: 0;
    }
}

/* greetings-companyここまで */

/* serviceここから */

#service .section-inner {
    padding-bottom: 0;
    padding-top: 0;
}

#service .section-ttl span.en {
    font-size: 30px;
}

@media (max-width: 767px) {
    #service .section-ttl {
        text-align: left;
    }

    #service .section-sub-txt {
        text-align: left;
    }
}


/* serviceここまで */

/* service-detailここから */

#top-contents #service-detail {
    margin-bottom: 0;
}

#service-detail .section-inner {
    display: flex;
}

#service-detail .section-inner .service-list {
    width: 50%;
    padding-top: 50px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#service-detail .section-inner .service-houjin {
    padding-right: 50px;
    border-right: 1px solid #2e633b;
}

#service-detail .section-inner .service-kojin {
    padding-left: 50px;
}

#service-detail .section-inner .service-list .ttl-wrap {
    position: relative;
    margin-bottom: 50px;
}

#service-detail .section-inner .service-list .ttl-wrap img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 150px;
    height: auto;
}

#service-detail .section-inner .service-list .ttl {
    font-size: 23px;
    margin-bottom: 0;
}

#service-detail .section-inner .service-list .ttl::before {
    height: 23px;
}

#service-detail .section-inner .service-list img {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    object-fit: cover;
}

#service-detail .section-inner .service-list h3 {
    color: #221714;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin: 30px 0 0;
    text-align: center;
}

#service-detail .section-inner .service-list p {
    color: #221714;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.87;
    margin: 20px 0 30px;
    text-align: left;
}

#service-detail .section-inner .service-list .btn-wrap {
    margin-top: auto;
    margin-left: auto;
    margin-right: 0;
}

#service-detail .section-inner .service-list .btn {
    margin-left: auto;
    margin-right: 0;
    margin-top: 0;
}

#service-detail .img-switch {
  position: relative;
  display: inline-block;
  margin:10px 0 30px !important;
}

#service-detail .img-switch img {
  display: block;
}

#service-detail .img-switch .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#service-detail .img-switch:hover .img-hover {
  opacity: 1;
}


@media (max-width: 820px) {
    #service-detail .section-inner .service-list .ttl {
        font-size: 20px;
    }

    #service-detail .section-inner .service-list .ttl-wrap img {
        width: 100px;
    }

    #service-detail .section-inner .service-list .ttl-wrap img {
        top: -30px;
    }
}

@media (max-width: 767px) {
    #top-contents #service-detail {
        margin-bottom: 0;
        margin-left: 20px;
        border-radius: 15px 0 0 15px;
    }

    #service-detail .section-inner {
        flex-direction: column;
    }

    #service-detail .section-inner .service-list {
        width: 100%;
        padding-top: 0;
        flex-direction: column;
    }

    #service-detail .section-inner .service-houjin {
        padding-right: 0;
        padding-bottom: 50px;
        border-bottom: 1px solid #2e633b;
        border-right: none;
    }

    #service-detail .section-inner .service-kojin {
        padding-left: 0;
        padding-top: 50px;
    }

    #service-detail .section-inner .service-list .ttl-wrap {
        margin-bottom: 40px;
    }

    #service-detail .section-inner .service-list .ttl-wrap img {
        top: 50%;
    }

    #service-detail .section-inner .service-list .ttl {
        font-size: 20px;
        /* font-weight: 500; */
    }

    #service-detail .section-inner .service-list img {
        height: 175px;
    }

    #service-detail .section-inner .service-list p {
        font-size: 15px;
        line-height: 1.5;
    }

    #service-detail .section-inner .service-list .btn-wrap {
        margin: 0 auto;
    }
}

/* service-detailここまで */

@media (min-width: 1025px) {
    #consultation .section-inner {
        padding-left: 0;
        padding-right: 0;
    }
}

#consultation .ttl {
    color: #231815;
}

#consultation .ttl::before {
    background-color: #231815;
}

#consultation .txt-aline-l {
    font-size: 16px;
    line-height: 1.87;
    text-indent: -1em;
    padding-left: 1em;
}

#consultation .consultation-step-wrap {
    margin-top: 50px;
    display: flex;
    /* flex-direction: column; */
    gap: 10px;
}

#consultation .consultation-step-wrap .consultation-step {
    width: calc((100% - 30px) / 4);
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    position: relative;

    /* display: flex;
    align-items: center; */
}

@media (max-width: 1280px) {
    #consultation .consultation-step-wrap .consultation-step {
        padding: 20px 15px;
    }
}

#consultation .consultation-step-wrap .consultation-step:after {
    position: absolute;
    content: "";
    background-color: #fff;
    right: -11px;
    top: 50%;
    width: 11px;
    height: 5px;
    z-index: 0;
}

#consultation .consultation-step-wrap .consultation-step:last-child::after {
    content: none;
}

/* #consultation .consultation-step-wrap .consultation-step .step-wrap {
    width: 180px;
} */

#consultation .consultation-step-wrap .consultation-step:nth-child(even) {
    background-color: #fff;
}

#consultation .consultation-step-wrap .consultation-step p .step {
    background-color: #2e633b;
    color: #fff;
    padding: 0 15px;
    font-weight: 500;
}

#consultation .consultation-step-wrap .consultation-step img {
    height: 60px;
    width: auto;
    margin: 20px auto;
    display: block;
}

#consultation .consultation-step-wrap .consultation-step .step-ttl {
    font-size: 18px;
    color: #2e633b;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 15px;
}

#consultation .consultation-step-wrap .consultation-step .step-txt {
    font-size: 15px;
    color: #231815;
    line-height: 1.6;
    text-align: left;
    /* margin-left: 20px; */
    flex: 1;
}

@media (max-width: 820px) {
    #consultation .consultation-step-wrap .consultation-step p {
        text-align: center;
    }
}

@media (max-width: 767px) {
    #consultation .consultation-step-wrap {
        margin-top: 30px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
    }

    #consultation .consultation-step-wrap .consultation-step {
        padding: 25px 20px;
        width: 100%;
        flex-direction: column;
        gap: 25px;
    }

    #consultation .consultation-step-wrap .consultation-step p .step {
        padding: 4px 20px;
        font-size: 18.7px;
    }

    #consultation .consultation-step-wrap .consultation-step img {
        height: 60px;
        margin: 25px auto;
    }

    #consultation .consultation-step-wrap .consultation-step:after {
        content: none;

        right: 50%;
        bottom: -25px;
        top: auto;
        width: 2.5px;
        height: 25px;
    }

    #consultation .consultation-step-wrap .consultation-step .step-txt {
        margin-left: 0;
    }

    #consultation .txt-aline-l {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* newsここから */

#news .section-inner {
    display: flex;
}

#news.section-bg {
    margin-bottom: 0;
}

#news .section-inner .news-l {
    max-width: 300px;
    width: 100%;
}

@media (max-width: 1500px) {
    #news .section-inner .news-l {
        max-width: 260px;
    }
}

@media (max-width: 1380px) {
    #news .section-inner .news-l {
        max-width: 230px;
    }
}

#news .section-inner .news-l .section-ttl {
    text-align: left;
}

#news .section-inner .news-l .icon-wrap {
    display: flex;
    gap: 30px;
}

#news .section-inner .news-l .icon-wrap img {
    width: 50px;
}

#news .section-inner .news-l .btn {
    margin-top: 50px;
}

#news .section-inner .news-contents {
    flex: 1;
}

#news .section-inner .news-contents a {
    border-bottom: 1px solid #231815;
    display: block;
}

#news .section-inner .news-contents a:first-child {
    border-top: 1px solid #231815;
}

#news .section-inner .news-contents dl {
    padding: 25px 0;
}

#news .section-inner .news-contents dt {}

#news .section-inner .news-contents dt span.date {
    font-size: 16px;
    color: #231815;
    padding-right: 10px;
}

#news .section-inner .news-contents dt span.category {
    background-color: #2e633b;
    color: #fff;
    padding: 1px 0;
    font-size: 13px;
    width: 80px;
    display: inline-block;
    text-align: center;
}

#news .section-inner .news-contents dd {
    padding-top: 10px;
    font-size: 16px;
    color: #231815;
}

@media (max-width: 767px) {
    #news .section-inner {
        flex-direction: column;
        gap: 25px;
    }

    #news .section-inner .news-l {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 100%;
    }

    #news .section-inner .news-l .icon-wrap {
        gap: 25px;
    }

    #news .section-inner .news-contents dl {
        padding: 10px;
    }

    #news .section-inner .news-contents dt span.date {
        font-size: 10px;
    }

    #news .section-inner .news-contents dt span.category {
        padding: 1px 0px;
        font-size: 10px;
        width: 60px;
    }

    #news .section-inner .news-contents dd {
        padding-top: 7px;
        font-size: 15px;
    }

    #news .section-inner .btn-wrap {
        margin: 0 auto;
    }

    #news .section-inner .btn-wrap .btn {
        margin-top: 0;
    }
}

/* newsここまで */

/* contactここから */

#contact .input_confirm #contact .section-inner {
    padding-top: 0;
}

#contact .line-bnr-wrap {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

#contact .line-bnr-wrap img {
    width: 100%;
}

#contact .form-box-wrap {
    margin-top: 100px;
}

#contact .form-box-wrap .ttl {
    color: #231815;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

#contact .form-box-wrap .ttl::before {
    background-color: #231815;
}

#contact .form-box-wrap .txt {
    color: #231815;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

#contact .form-box-wrap .form-box-txt {
    border-bottom: 1px solid #231815;
}

#contact .form-box-wrap .form-box {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding-top: 40px;
}

#contact .form-box-wrap .form-box .mw_wp_form .tbl-contact {
    width: 100%;
}

#contact .form-box-wrap .form-box .mw_wp_form .tbl-contact th,
#contact .form-box-wrap .form-box .mw_wp_form .tbl-contact td {
    display: block;
}

#contact .form-box-wrap .form-box .mw_wp_form .tbl-contact th {
    display: block;
    text-align: left;
    font-size: 16px;
    color: #231815;
    letter-spacing: 0.05em;
}

#contact .form-box-wrap .form-box .mw_wp_form .tbl-contact th span.required {
    color: #fff100;
}

#contact .form-box-wrap .form-box .mw_wp_form .tbl-contact td {
    margin-top: 10px;
    margin-bottom: 40px;
}

#contact .form-box-wrap .form-box .mw_wp_form .tbl-contact td input[type="text"],
#contact .form-box-wrap .form-box .mw_wp_form .tbl-contact td input[type="email"],
#contact .form-box-wrap .form-box .mw_wp_form .tbl-contact td textarea {
    width: 100%;
    background-color: #fff;
    border: none;
    border-radius: 10px;
    padding: 20px;
}

#contact .form-box-wrap .form-box .mw_wp_form .mwform-checkbox-field {
    display: block;
    text-align: center;
}

#contact .form-box-wrap .form-box .mw_wp_form .mwform-checkbox-field label {
    align-items: center;
    display: flex;
    justify-content: center;
}

#contact .form-box-wrap .form-box .mw_wp_form .mwform-checkbox-field label input#kiyaku-checkbox-1 {
    margin: 0;
    width: 20px;
    height: 20px;
    margin-right: 7px;
}

#contact .form-box-wrap .form-box .mw_wp_form .mwform-checkbox-field label .mwform-checkbox-field-text {
    color: #231815;
    font-size: 16px;
    letter-spacing: 0.05em;
}

#contact .form-box-wrap .form-box .mw_wp_form .mwform-checkbox-field label .mwform-checkbox-field-text a {
    color: red;
    text-decoration: underline;
}

#contact .form-box-wrap .form-box input.btn-txt {
    background-color: #2e633b;
    border: none;
}

#contact .mw_wp_form_input .-back {
    display: none;
}

#contact .btn-box .btn-wrap {
    margin: 0 auto;
}

/* 確認画面 */
#contact .mw_wp_form_confirm .tbl-contact td {
    width: 100%;
    /* background-color: #fff;
    border: none;
    border-radius: 10px;
    padding: 20px; */

    color: #231815;
}

#contact .mw_wp_form_confirm .btn-box {
    display: flex;
    gap: 30px;
    justify-content: center;
}

#contact .mw_wp_form_confirm .btn-box .btn-wrap {
    margin: 0;
}

#contact .mw_wp_form_confirm .js-mw-checkbox {
    color: #231815;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-align: center;
}

/* 送信完了 */
/* 
#contact.contact-thanks .section-inner {
    padding-top: 100px;
} */

#contact .form-box .contact-thanks p {
    text-align: left;
    color: #231815;
}

#contact.contact-thanks p {
    color: #231815;
}

#contact.contact-thanks .btn-wrap {
    margin: 0 auto
}


@media (max-width: 767px) {
    #contact .form-box-wrap {
        margin-top: 30px;
    }

    #contact .form-box-wrap .txt {
        padding: 20px 0 35px;
    }

    #contact .form-box-wrap .form-box {
        padding-top: 50px;
    }

    #contact .form-box-wrap .form-box .mw_wp_form .tbl-contact th {
        font-size: 15px;
    }

    #contact .form-box-wrap .form-box .mw_wp_form .tbl-contact td {
        margin-top: 15px;
        margin-bottom: 25px;
    }

    #contact .form-box-wrap .form-box .mw_wp_form .tbl-contact td input[type="text"],
    #contact .form-box-wrap .form-box .mw_wp_form .tbl-contact td input[type="email"],
    #contact .form-box-wrap .form-box .mw_wp_form .tbl-contact td textarea {
        border-radius: 8px;
        padding: 12px 20px;
        font-size: 15px;
    }

    #contact .form-box-wrap .form-box .mw_wp_form .tbl-contact td textarea {
        height: 170px;
    }

    #contact .form-box-wrap .form-box .mw_wp_form .mwform-checkbox-field label input#kiyaku-checkbox-1 {
        margin: 0;
        width: 19px;
        height: 19px;
        margin-right: 10px;
    }

    #contact .form-box-wrap .form-box .mw_wp_form .mwform-checkbox-field label .mwform-checkbox-field-text {
        font-size: 13px;
    }

    #contact .form-box-wrap .btn {
        margin-top: 40px;
    }

    #contact.contact-thanks .section-inner {
        padding-top: 100px;
    }
}

/* contactここまで */

/* TOPここまで *******************/

/*BREADCRUMB
 -------------------------------*/
.breadcrumb {
    width: 100%;
}


.breadcrumb .breadcrumb-inner {
    margin: 0 auto;
    padding: 0;
    text-align: left;
    max-width: 1425px;
    padding-left: 100px;
}

.breadcrumb ul {
    font-size: 0;
    line-height: 0;
}

.breadcrumb ul li {
    display: inline;
    font-size: 15px;
    line-height: 1.4;
}

.breadcrumb ul li a {
    color: #000;
}

.breadcrumb ul li:not(:last-child) {
    padding-right: 0.5em;
}

.breadcrumb ul li:not(:first-child)::before {
    content: '\03e';
    display: inline-block;
    padding-right: 0.4em;
    font-size: 1.2em;
    color: #000;
    font-weight: normal;
}

/*PAGE-SERVICE
 -------------------------------*/
.page-service {}

.main-visual-wrap {
    padding: 30px;
}

.main-visual {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: #F2F2F2;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-radius: 25px;
}

.main-visual-content-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.main-visual-content-inner .page-title-box {
    padding: 0.5rem 1.5rem;
    width: auto;
    margin: auto;
}

.main-visual-content-inner .page-title {
    line-height: 1.4;
    white-space: nowrap;
}

.main-visual-content-inner .page-title-jp {
    display: block;
    font-size: 25px;
    color: #fff;
    font-weight: bold;
}

.main-visual-content-inner .page-title-en {
    color: #fff;
    display: block;
    font-size: 65px;
    font-weight: bold;
}

#main-visual__service.main-visual {
    background-image: url(../img/service/img_head.png);
}

.page-service .page-service-top .service-main-txt p {
    margin-bottom: 50px;
    font-size: 16px;
    line-height: 1.87;
    color: #231815;
}

.page-service .page-service-top .service-main-txt .service-btn-wrap {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.page-service .page-service-top .service-main-txt .service-btn-wrap .service-btn {
    background-color: #2e633b;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 290px;
    width: 100%;
}

.page-service .page-service-top .service-main-txt .service-btn-wrap .service-btn p {
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 0;
    line-height: 1.2;
}

.page-service .page-service-top .service-main-txt .service-btn-wrap .service-btn .triangle_bottom {
    background-color: #fff;
    width: 13px;
    height: 10px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.page-service #service-detail .service-list {
    width: 100%;
    padding: 0;
}

.page-service #service-detail .service-list .ttl-wrap {
    width: fit-content;
}

.page-service #service-detail .service-list .ttl-wrap img {
    right: -200px;
}

.page-service #service-detail .service-list .pageservice-list-wrap {
    display: flex;
    flex-wrap: wrap;
}

.page-service #service-detail .service-list .pageservice-list-wrap .pageservice-list {
    width: 25%;
    padding: 0px 15px 30px;
		position: relative;
		margin-bottom: 20px;
}

.page-service #service-detail .service-list .pageservice-list-wrap .pageservice-list .line-left {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-55%);
    height: 90%;
    width: 1px;
    background-color: #231815;
}

.page-service #service-detail .service-list .pageservice-list-wrap .pageservice-list:before {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 100%;
    width: 1px;
    background-color: #231815;
}

.page-service #service-detail .service-list .pageservice-list-wrap .pageservice-list:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 90%;
    background-color: #231815;
}

.page-service #service-detail .service-list .pageservice-list-wrap .pageservice-list.c-none:after {
    content: none;
}

.page-service #service-detail .service-list .pageservice-list-wrap .pageservice-list h3 {
    background-color: #2e633b;
    padding: 10px;
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    margin-top: 0;
    text-align: center;
}

.page-service #service-detail .service-list .pageservice-list-wrap .pageservice-list img {
    height: 100px;
    width: auto;
    display: block;
    margin: 20px auto;
    border-radius: 0;
}

.page-service #service-detail .service-list .pageservice-list-wrap .pageservice-list p {
    font-weight: 16px;
    line-height: 1.875;
    color: #231815;
}

.page-service #service-detail .section-inner .service-houjin {
    border-right: none;
}

.page-service #kojin #service-detail {
    margin-bottom: 0;
}


.page-service .line-bnr-wrap {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.page-service .line-bnr-wrap img {
    width: 100%;
}

@media (max-width: 1700px) {
    .breadcrumb .breadcrumb-inner {
        padding-left: 40px;
    }
}

@media (max-width: 1024px) {
    .main-visual-wrap {
        padding: 20px;
    }

    .breadcrumb .breadcrumb-inner {
        padding-left: 20px;
    }

    .page-service #service-detail .service-list .pageservice-list-wrap .pageservice-list {
        width: 33.333%;
        padding: 30px 20px;
        position: relative;
    }
}

@media (max-width: 820px) {
    .page-service #service-detail .section-inner .service-list .ttl-wrap img {
        top: 50%;
    }

    .page-service #service-detail .service-list .ttl-wrap img {
        right: -130px;
    }
}

@media (max-width: 767px) {

    .breadcrumb ul li {
        display: inline;
        font-size: 10px;
        line-height: 1.4;
    }

    .main-visual-wrap {
        padding-top: 70px;
        padding-bottom: 15px;
    }

    .main-visual {
        height: 200px;
        border-radius: 15px;
    }

    .main-visual-content-inner .page-title-en {
        font-size: 40px;
        line-height: 1;
    }

    .main-visual-content-inner .page-title-jp {
        font-size: 17.5px;
    }

    .page-service #service-detail {
        margin-left: 0;
        border-radius: 0;
    }

    .page-service .page-service-top .service-main-txt p {
        font-size: 15px;
        line-height: 1.5;
    }

    .page-service .page-service-top .service-main-txt .service-btn-wrap {
        flex-direction: column;
        gap: 25px;
    }

    .page-service .page-service-top .service-main-txt .service-btn-wrap .service-btn {
        max-width: 100%;
        padding: 15px 25px;
    }

    .page-service .page-service-top .service-main-txt .service-btn-wrap .service-btn p {
        font-size: 20px;
    }

    .page-service .page-service-top .service-main-txt .service-btn-wrap .service-btn .triangle_bottom {
        width: 15px;
        height: 11px;
    }

    .page-service #service-detail .service-list .pageservice-list-wrap {
			flex-direction: column;
			        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .page-service #service-detail .service-list .pageservice-list-wrap .pageservice-list {
        width: 100%;
        padding: 0px 0;
        position: relative;
        /*border-bottom: 1px solid #231815;*/
    }

    .page-service #service-detail .service-list .pageservice-list-wrap .pageservice-list:before,
    .page-service #service-detail .service-list .pageservice-list-wrap .pageservice-list:after,
    .page-service #service-detail .service-list .pageservice-list-wrap .pageservice-list .line-left {
        content: none;
        position: unset;
    }

    .page-service #service-detail .service-list .pageservice-list-wrap .pageservice-list:first-child {
        margin-top: 0;
    }

    .page-service #service-detail .service-list .pageservice-list-wrap .pageservice-list img {
        /*height: 75px;*/
        margin: 25px auto;
    }

    .page-service #service-detail .service-list .ttl-wrap img {
        right: -125px;
    }
	}
	
@media (max-width: 767px) {
  .pageservice-list-wrap{
    display:flex;
    flex-wrap:wrap;
    margin: 0 -6px;
  }
  .pageservice-list{
    width:50%;
    padding: 0 6px;
    box-sizing:border-box;
  }
}
	
	
	
	/*COMMON -------------------------------*/
	.left{float:left}.left,.right{display:block}.right{float:right}.clear{clear:both;display:block}.green_a{color:#2e8b57}.center{text-align:center}.mg02{margin:2px}.mg05{margin:5px}.mg08{margin:8px}.mg10{margin:10px}.mg15{margin:15px}.mg20{margin:20px}.mg25{margin:25px}.mg30{margin:30px}.mg35{margin:35px}.mg40{margin:40px}.mg45{margin:45px}.mg50{margin:50px}.mg55{margin:55px}.mg60{margin:60px}.mgtb05{margin-top:5px;margin-bottom:5px}.mgtb10{margin-top:10px;margin-bottom:10px}.mgtb15{margin-top:15px;margin-bottom:15px}.mgtb20{margin-top:20px;margin-bottom:20px}.mgtb25{margin-top:25px;margin-bottom:25px}.mgtb30{margin-top:30px;margin-bottom:30px}.mgtb35{margin-top:35px;margin-bottom:35px}.mgtb40{margin-top:40px;margin-bottom:40px}.mgtb45{margin-top:45px;margin-bottom:45px}.mgtb50{margin-top:50px;margin-bottom:50px}.mgtb55{margin-top:55px;margin-bottom:55px}.mgtb60{margin-top:60px;margin-bottom:60px}.mgrl05{margin-right:5px;margin-left:5px}.mgrl10{margin-right:10px;margin-left:10px}.mgrl15{margin-right:15px;margin-left:15px}.mgrl20{margin-right:20px;margin-left:20px}.mgrl25{margin-right:25px;margin-left:25px}.mgrl30{margin-right:30px;margin-left:30px}.mgrl35{margin-right:35px;margin-left:35px}.mgrl40{margin-right:40px;margin-left:40px}.mgrl45{margin-right:45px;margin-left:45px}.mgrl50{margin-right:50px;margin-left:50px}.mgrl55{margin-right:55px;margin-left:55px}.mgrl60{margin-right:60px;margin-left:60px}.mgt05{margin-top:5px}.mgt10{margin-top:10px}.mgt15{margin-top:15px}.mgt20{margin-top:20px}.mgt25{margin-top:25px}.mgt30{margin-top:30px}.mgt35{margin-top:35px}.mgt40{margin-top:40px}.mgt45{margin-top:45px}.mgt50{margin-top:50px}.mgt55{margin-top:55px}.mgt60{margin-top:60px}.mgt-05{margin-top:-5px}.mgt-10{margin-top:-10px}.mgt-15{margin-top:-15px}.mgt-20{margin-top:-20px}.mgt-25{margin-top:-25px}.mgt-30{margin-top:-30px}.mgt-35{margin-top:-35px}.mgt-40{margin-top:-40px}.mgt-45{margin-top:-45px}.mgt-50{margin-top:-50px}.mgr05{margin-right:5px}.mgr10{margin-right:10px}.mgr15{margin-right:15px}.mgr20{margin-right:20px}.mgr25{margin-right:25px}.mgr30{margin-right:30px}.mgr35{margin-right:35px}.mgr40{margin-right:40px}.mgr45{margin-right:45px}.mgr50{margin-right:50px}.mgr55{margin-right:55px}.mgr60{margin-right:60px}.mgb05{margin-bottom:5px}.mgb10{margin-bottom:10px}.mgb15{margin-bottom:15px}.mgb20{margin-bottom:20px}.mgb25{margin-bottom:25px}.mgb30{margin-bottom:30px}.mgb35{margin-bottom:35px}.mgb40{margin-bottom:40px}.mgb45{margin-bottom:45px}.mgb50{margin-bottom:50px}.mgb55{margin-bottom:55px}.mgb60{margin-bottom:60px}.mgl05{margin-left:5px}.mgl10{margin-left:10px}.mgl15{margin-left:15px}.mgl20{margin-left:20px}.mgl25{margin-left:25px}.mgl30{margin-left:30px}.mgl35{margin-left:35px}.mgl40{margin-left:40px}.mgl45{margin-left:45px}.mgl50{margin-left:50px}.mgl55{margin-left:55px}.mgl60{margin-left:60px}.pd02{padding:2px}.pd05{padding:5px}.pd08{padding:8px}.pd10{padding:10px}.pd15{padding:15px}.pd20{padding:20px}.pd25{padding:25px}.pd30{padding:30px}.pd35{padding:35px}.pd40{padding:40px}.pd45{padding:45px}.pd50{padding:50px}.pd55{padding:55px}.pd60{padding:60px}.pdtb05{padding-top:5px;padding-bottom:5px}.pdtb10{padding-top:10px;padding-bottom:10px}.pdtb15{padding-top:15px;padding-bottom:15px}.pdtb20{padding-top:20px;padding-bottom:20px}.pdtb25{padding-top:25px;padding-bottom:25px}.pdtb30{padding-top:30px;padding-bottom:30px}.pdtb35{padding-top:35px;padding-bottom:35px}.pdtb40{padding-top:40px;padding-bottom:40px}.pdtb45{padding-top:45px;padding-bottom:45px}.pdtb50{padding-top:50px;padding-bottom:50px}.pdtb55{padding-top:55px;padding-bottom:55px}.pdtb60{padding-top:60px;padding-bottom:60px}.pdrl05{padding-right:5px;padding-left:5px}.pdrl10{padding-right:10px;padding-left:10px}.pdrl15{padding-right:15px;padding-left:15px}.pdrl20{padding-right:20px;padding-left:20px}.pdrl25{padding-right:25px;padding-left:25px}.pdrl30{padding-right:30px;padding-left:30px}.pdrl35{padding-right:35px;padding-left:35px}.pdrl40{padding-right:40px;padding-left:40px}.pdrl45{padding-right:45px;padding-left:45px}.pdrl50{padding-right:50px;padding-left:50px}.pdrl55{padding-right:55px;padding-left:55px}.pdrl60{padding-right:60px;padding-left:60px}.pdt05{padding-top:5px}.pdt10{padding-top:10px}.pdt15{padding-top:15px}.pdt20{padding-top:20px}.pdt25{padding-top:25px}.pdt30{padding-top:30px}.pdt35{padding-top:35px}.pdt40{padding-top:40px}.pdt45{padding-top:45px}.pdt50{padding-top:50px}.pdt55{padding-top:55px}.pdt60{padding-top:60px}.pdt110{padding-top:110px}.pdr05{padding-right:5px}.pdr10{padding-right:10px}.pdr15{padding-right:15px}.pdr20{padding-right:20px}.pdr25{padding-right:25px}.pdr30{padding-right:30px}.pdr35{padding-right:35px}.pdr40{padding-right:40px}.pdr45{padding-right:45px}.pdr50{padding-right:50px}.pdr55{padding-right:55px}.pdr60{padding-right:60px}.pdb05{padding-bottom:5px}.pdb10{padding-bottom:10px}.pdb15{padding-bottom:15px}