/* global styles を無効化 */
:root {
  --wp--style--global--content-size: auto;
  --wp--style--global--wide-size: auto;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Noto Sans JP", sans-serif;
}
a:focus {
    outline: unset;
}
main {
    margin: 0;
}
img {
    width: 100%;
}
.pc {
    display: block;
}
.pc-tab {
    display: block;
}
.sp {
    display: none;
}
.tab-only {
    display: none;
}
.sp-only {
    display: none;
}
@media only screen and (max-width: 980px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    .tab-only {
        display: block;
    }
}
@media only screen and (max-width: 680px) {
    .pc-tab {
        display: none;
    }
    .sp-only {
        display: block;
    }
    .tab-only {
        display: none;
    }
}
.section-inner {
    max-width: 1180px;
    width: 100%;
    margin: auto;
}
@media (max-width: 1250px) {
    .section-inner {
        padding: 0 20px;
    }
}
/* タイトル */

.section-title-container {
    text-align: center;
    margin-bottom: 30px;
}
.section-title-en {
    font-family: "Arvo", serif;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.25;
    margin-bottom: 15px;
}
.section-title-jp {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.2;
}
.section-text {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.1em;
}
@media (max-width: 980px) {
    .section-title-en {
        font-size: 22px;
    }
    .section-title-jp {
        font-size: 32px;
    }
}
@media (max-width: 680px) {
    .section-title-container {
        margin-bottom: 30px;
    }
    .section-title-en {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .section-title-jp {
        font-size: 28px;
    }
    .section-text {
        font-size: 14px;
    }
}
.fc-white {
    color: #fff;
}
.fc-black {
    color: #000;
}
.fc-green {
    color: #1A4F3A;
}
.fc-light-green {
    color: #5AA052;
}
.more-btn {
    text-align: center;
}
.more-btn-link {
    display: block;
    max-width: 350px;
    width: 100%;
    border-radius: 50px;
    padding: 22px 0;
    border: 2px solid #1A4F3A;
    background-color: #1A4F3A;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}
.more-btn-link:hover {
    color: #1A4F3A;
    background-color: #fff;
}
/* キービジュアル */
.kv {
  position: relative;
  color: #fff;
  padding: 270px 0 85px;
}
.kv-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.kv-img img {
    height: 100%;
    object-fit: cover;
}
.kv-container {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.kv-title {
  font-size: 36px;
  font-weight: 700;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  line-height: 1.2;
  margin-bottom: 55px;
}
.kv-lead {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 55px;
}
.kv-button-container {
    max-width: 835px;
    width: 100%;
    margin: auto;
    display: flex;
    gap: 40px;
    justify-content: center;
}
.kv-btn-group {
    max-width: 350px;
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.kv-btn-label {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
}

.kv-btn-note {
    margin-top: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}
.kv-btn {
    display: block;
    max-width: 350px;
    width: 100%;
    padding: 18px 0;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    background: #1A4F3A;
    color: #fff;
    border: 3px solid #fff;
}
.kv-btn:hover {
    background-color: #fff;
    color: #1A4F3A;
    border: #1A4F3A 3px solid;
}
.btn-phone {
    color: #1A4F3A;
    background-color: #fff;
    border: 3px solid #1A4F3A;
}
.btn-phone:hover {
    color: #fff;
    background-color: #1A4F3A;
}
.btn:hover {
  opacity: 0.8;
}
@media (max-width: 980px) {
    .kv {
        padding: 150px 0 80px;
    }
    .kv-title {
        font-size: 28px;
    }
}

@media (max-width: 680px) {
    .kv {
        padding: 70px 0 80px;
    }
    .kv-title {
        font-size: 28px;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    .kv-lead {
        margin-bottom: 40px;
    }
    .kv-button-container {
        flex-direction: column;
    }
    .kv-btn-group {
        width: 100%;
        margin: auto;
    }
    .kv-btn-label {
        font-size: 14px;
    }
    .kv-btn {
        padding: 15px 0;
        font-size: 14px;
    }
	.kv-lead {
  font-size: 14px;
}
	.kv-button-container {
    gap: 20px;
}
	.kv-btn-label {
    margin-bottom: 5px;
}
	.kv-btn-note {
    margin-top: 5px;
}
}
/* お悩み */
.problem-sec {
  background: #1A4F3A;
  padding: 80px 0;
}
.problem-sec .section-title-en,
.problem-sec .section-title-jp {
    color: #fff;
}
.problem-list {
  display: flex;
  justify-content: space-between;
  gap: 20px 0;
}

.problem-card {
    width: calc((100% - 60px) / 4 );
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

.problem-card-img {
  width: 130px;
  margin: auto;
  margin-bottom: 20px;
}
.problem-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.problem-card-title {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A4F3A;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 12px;
}

.problem-card-text {
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
}
/* レスポンシブ */
@media (max-width: 980px) {
    .problem-list {
        flex-wrap: wrap;
    }
    .problem-card {
        width: calc((100% - 20px) / 2);
    }

}

@media (max-width: 600px) {
    .problem-sec {
        padding: 50px 0;
    }
    .problem-list {
        flex-direction: column;
    }
    .problem-card {
        width: 100%;
        margin: auto;
    }

}
/* コンサルト */
.consult {
    position: relative;
    background: #E3E9E1;
    padding: 80px 0 60px;
}
.consult::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100px;
    height: 55px;
    background-image: url("/wp-content/uploads/img/down-arrow.webp");
    background-size: cover;
}
.consult-title {
  text-align: center;
  margin-bottom: 60px;
}

.consult-sub {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.consult-sub span {
    position: relative;
    display: inline-block;
    font-size: 32px;
    color: #5AA052;
    -webkit-text-emphasis: filled;
    text-emphasis: filled;
}

.consult-title h2 {
  font-size: 40px;
  font-weight: bold;
  display: inline-block;
  border-bottom: 3px solid #000;
  letter-spacing: 0.1em;
  padding-bottom: 6px;
}
.consult-title h2 span {
    font-size: 32px;
}
/* カード */

.consult-list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px 0;
    margin-bottom: 60px;
}

.consult-card {
    width: calc((100% - 60px) / 4 );
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 20px;
    box-sizing: border-box;
    gap: 20px;
    height: auto;
}
.consult-card-info {
    display: flex;
    flex-direction: column;
    flex:1;
}
.consult-card-img {
    width: 130px;
    margin: 0 auto;
}

.consult-card-title {
    font-size: 18px;
    font-weight: bold;
    color: #5AA052;
    line-height: 1.4;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consult-card-text {
    text-align: left;
    font-size: 14px;
    line-height: 1.4;
}

/* 下メッセージ */

.consult-message {
    text-align: center;
}

.consult-message-main {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
}

.consult-message-sub {
    color: #5AA052;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
}

@media (max-width: 980px) {
    .consult::before {
        width: 80px;
        height: 43px;
    }
    .consult-sub {
        font-size: 22px;
    }
    .consult-sub span {
        font-size: 28px;
    }
    .consult-title h2 {
        font-size: 36px;
    }
    .consult-title h2 span {
        font-size: 28px;
    }
    .consult-message-sub,
    .consult-message-main {
        font-size: 22px;
    }

}
@media (max-width: 680px) {
    .consult {
        padding: 50px 0;
    }
    .consult::before {
        width: 60px;
        height: 32px;
    }
    .consult-sub {
        font-size: 20px;
    }
    .consult-sub span {
        font-size: 26px;
    }
    .consult-title h2 {
        font-size: 32px;
    }
    .consult-title h2 span {
        font-size: 24px;
    }
    .consult-message-sub,
    .consult-message-main {
        font-size: 20px;
    }
    .consult-list {
        flex-direction: column;
    }
    .consult-card {
        width: 100%;
        margin: auto;
    }
}
/* CTA */
.cta{
    position: relative;
}
.cta::before,
.cta::after {
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 1;
}
.cta::before {
    top: 0;
    background-color: #E3E9E1;
}
.cta::after {
    bottom: 0;
    background-color: #fff;
}
.cta.bg-light-green::before {
    background-color: #5f9b4f;
}
.cta.bg-light-green::after {
    background-color: #E3E9E1;
}
.cta-container{
    position: relative;
  background:#1f4f3a;
  border-radius:20px;
  padding:65px 0 50px;
  color:#fff;
  text-align:center;
  z-index: 2;
}
.cta-container-inner {
    max-width: 835px;
    width: 100%;
    margin: auto;
}
.cta-title{
    font-size:32px;
    font-weight:bold;
    line-height: 1.6;
    margin-bottom:25px;
}
.cta-list{
  list-style:none;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom:35px;
}

.cta-list li{
  position:relative;
  color: #fff;
  padding-left:20px;
  font-size:16px;
  font-weight: 500;
  line-height: 1.6;
}

.cta-list li::before{
  content:"○";
  position:absolute;
  left:0;
}

/* ボタンエリア */

.cta-buttons{
    display:flex;
    justify-content:space-between;
    gap:40px;
}
.cta-box{
    max-width: 350px;
    width: 48%;
    text-align:center;
}
.cta-lead{
    color: #fff;
    font-size:16px;
    font-weight: bold;
    margin-bottom:10px;
}
.cta-btn{
    display:inline-block;
    background:#fff;
    color:#1f4f3a;
    max-width: 350px;
    width: 100%;
    padding:18px 0;
    border: 3px solid #fff;
    border-radius:999px;
    font-size:18px;
    font-weight:600;
    text-decoration:none;
}
.cta-btn:hover {
    background-color: #08281b;
    color: #fff;
}
.cta-time{
    margin-top:10px;
    color: #fff;
    font-size:16px;
    font-weight: bold;
}

@media (max-width: 980px) {
    .cta-container-inner {
        padding: 0 20px;
    }
    .cta-title {
        font-size: 28px;
    }
}
@media (max-width: 680px) {
    .cta-title {
        font-size: 24px;
    }
    .cta-container {
        padding: 50px 0;
    }
    .cta-list {
        margin-bottom: 30px;
    }
    .cta-buttons {
        flex-direction: column;
        
    }
    .cta-box {
        width: 100%;
        margin: auto;
    }
    .cta-btn {
        padding: 15px 0;
        font-size: 16px;
    }
.cta-time{
    margin-top:5px;
}
	.cta-lead{
    margin-bottom:5px;
}
	.cta-buttons {
    gap: 25px;
}
}
/* 流れ */
.flow-list {
    padding: 80px 0 100px;
}
.flow-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:32px;
  margin-top: 70px;
}

/* 各STEP */

.flow-item{
  position:relative;
  max-width: 210px;
  width: calc((100% - (32px * 4)) / 4);
  padding: 20px;
  padding: 1.39vw;
  border:3px solid #4c8b47;
  border-radius:20px;
  text-align:center;
  background:#fff;
  height: calc(100% - 20px);
}

/* STEP5 */

.flow-item:last-child{
  background:#4c8b47;
  color:#fff;
}
.flow-item:last-child .flow-item-text {
    min-height: unset;
}
.flow-item:last-child .flow-item-title p{
  background:#fff;
  color:#4c8b47;
}

.flow-item-title{

}

.flow-item-title p{
  background:#4c8b47;
  color:#fff;
  padding:3px 28px;
  border-radius:20px;
  font-weight:bold;
  font-size:14px;
  font-size: 1.44vw;
}
.flow-item-img{
    width: 75px;
    width: 5.21vw;
    margin: auto;
    margin-top:20px;
    margin-bottom:20px;
    margin-top:1.39vw;
    margin-bottom:1.39vw;
}
.flow-item-text{
	font-size: 18px;
  font-weight:600;
  line-height:1.5;
  min-height: 43px;
}
.flow-item-sub-text {
    margin-top: 15px;
    margin-top: 1.04vw;
    font-size: 14px;
    font-size: 0.98vw;
    font-weight: 400;
}
.flow-item-sub-text span {
    font-weight: bold;
}
.flow-arrow{
  position:absolute;
  right:-32px;
  top:50%;
  transform:translateY(-50%);
}

.flow-arrow img{
  width:22px;
}


.flow-item:last-child .flow-arrow{
  display:none;
}
@media (min-width: 1440px) {
    .flow-item {
        padding: 20px;
    }
    .flow-item-title p {
        font-size: 14px;
    }
    .flow-item-img {
        margin-top:20px;
        margin-bottom:20px;
        width: 75px;
    }
    .flow-item-text {
		font-size: 18px;
    }
    .flow-item-sub-text {
        font-size: 14px;
        margin-top: 15px;
    }
}
@media (max-width: 1440px) {
.flow-item-text{
	font-size: 16px;
}
}
@media (max-width: 1100px) {
.flow-item-text{
	font-size: 14px;
}
}
@media (max-width: 980px) {
    .flow-list {
        padding: 60px 0;
    }
    .flow-container {
        margin-top: 50px;
    }
.flow-item-text{
	font-size: 14px;
}
	.flow-arrow{
  right:-20px;
}
	.flow-container {
    gap: 20px;
}
	.flow-item-sub-text {
    font-size: 12px;
}
	.flow-arrow img {
    width: 14px;
}
}
@media (max-width: 680px) {
    .flow-list {
        padding: 50px 0;
    }
    .flow-container {
        margin-top: 30px;
        flex-direction: column;
        gap: 50px;
    }
    .flow-item {
        width: 300px;
        margin: auto;
        padding: 20px;
    }
    .flow-item-title p {
        font-size: 18px;
    }
    .flow-item-text {
        font-size: 16px;
    }
    .flow-item-img {
        width: 75px;
        margin: 20px auto;
    }
    .flow-item-sub-text {
        font-size: 14px;
        margin-top: 15px;
    }
    .flow-arrow {
        bottom: -28%;
        height: 34px;
        left: 0;
        margin: auto;
        right: 0;
        top: unset;
        width: 39px;
    }
    .flow-arrow img {
        transform: rotate(90deg);
    }
	    .flow-arrow img {
        width: 22px;
    }
}
/* お客様の声 */
.reviews {
    padding: 100px 0;
    background-color: #E3E9E1;
}
.reviews-container {
    max-width: 700px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.reviews-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background-color: #fff;
}
.reviews-item-inner {
    padding: 50px 0 45px;
    max-width: 620px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
}
.reviews-item-img {
    width: 130px;
}
.reviews-item-text {
    max-width: 440px;
    width: calc(100% - 170px);
    font-size: 16px;
    line-height: 1.6;
    color: #000;
}




@media only screen and (max-width: 980px) {
    .reviews {
        padding: 60px 0 100px;
    }
    .reviews-item-img {
        width: 100px;
    }
}

@media only screen and (max-width: 680px) {
    .reviews {
        padding: 50px 0 80px;
    }
    .reviews .section-title {
        margin-bottom: 50px;
    }
    .reviews-item-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
    .reviews-item-inner {
        flex-direction: column;
        gap: 20px;
        padding-top: 35px;
        padding-bottom: 30px;
    }
    .reviews-item-text {
        width: 100%;
        max-width: unset;
        font-size: 14px;
    }

}
/* サービス */
.service{
  background:#5f9b4f;
  padding:100px 0;
  color:#fff;
}

.service-list{
  display:flex;
  gap:40px;
  justify-content:center;
  margin-bottom:40px;
}

.service-card{
  background:#eee7e4;
  border-radius:20px;
  padding:30px 30px 35px;
  max-width: 380px;
  width:calc((100% - 40px) / 3);
  text-align:center;
}

.service-number{
  color:#5AA052;
  font-family: "Arvo", serif;
  font-size: 20px;
  font-weight:bold;
  margin-bottom:20px;
}
.service-img {
  margin-bottom:20px;
}
.service-img img{
  width:100%;
  border-radius:20px;
}

.service-name{
  font-size:22px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color:#1A4F3A;
  line-height: 2;
  margin-bottom:5px;
}

.service-text{
    text-align: left;
    color: #000;
  font-size:16px;
  line-height:1.8;
}

/* 下メッセージ */

.service-message{
    text-align: center;
  font-size:24px;
  font-weight: bold;
  line-height: 1.6;
  color: #fff;
  margin-top:60px;
}

@media (max-width: 980px) {
    .service {
        padding: 80px 0;
    }
    .service-message {
        font-size: 22px;
    }
}
@media (max-width: 680px) {
    .service {
        padding: 50px 0;
    }
    .service-list {
        flex-direction: column;
    }
    .service-card {
        width: 100%;
        margin: auto;
    }
    .service-name {
        font-size: 20px;
    }
    .service-message {
        font-size: 18px;
    }
}
/* 事例 */
.case-sec {
    background-color: #E3E9E1;
    padding: 100px 0;
}
.case-container {
    margin-bottom: 40px;
}
.case-sec .more-btn-link {
    margin: auto;
}
@media (max-width: 980px) {
    .case-sec {
        padding: 80px 0;
    }
    .case-container {
        margin-bottom: 30px;
    }
}
@media (max-width: 680px) {
    .case-sec {
        padding: 50px 0;
    }
}
/* よくある質問 */
.faq-sec {
    background-color: #fff;
    padding: 75px 0 120px
}

.faq-title-container {
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.5;
    margin-bottom: 70px;
    text-align: center
}



.faq-accordion {
    list-style: none;
    margin: 0 auto;
    width: 100%;
    margin-top: 75px;
}

.faq-accordion-item {
    background-color: #fff;
    border: 3px solid #5AA052;
    border-radius: 20px;
    margin-bottom: 40px;
}

.faq-item-title-container {
    background-color: #5AA052;
    border-radius: 15px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
    padding: 30px 100px 30px 0;
    position: relative;
    transition: all .5s ease;
}

.faq-item-title {
    position: relative;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding-left: 110px;
}

.faq-item-title:before {
    position: absolute;
    top: 0;
    bottom: 0;
    content: "Q";
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    height: 32px;
    left: 35px;
    margin: auto;
}

.faq-item-title-container:after,
.faq-item-title-container:before {
    background-color: #fff;
    bottom: 0;
    content: "";
    display: inline-block;
    height: 4px;
    margin: auto;
    position: absolute;
    right: 28px;
    top: 0;
    transform: translateY(-50%);
    transition: opacity .25s;
    width: 15px;
}

.faq-item-title-container:after {
    transform: translateY(-50%) rotate(90deg);
    transition: transform .25s;
}

.faq-item-title-container.close {
    border-radius: 15px 15px 0 0
}
.faq-item-title-container.close:before {
    opacity: 0;
}

.faq-item-title-container.close:after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-item-text {
    color: #222;
    display: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    padding: 25px 100px 25px 110px;
}

@media only screen and (max-width: 980px) {
    .faq {
        padding:60px 0 100px;
    }

    .faq-accordion {
        margin-top: 50px;
    }
    .faq-title-container {
        margin-bottom: 60px;
    }

    .faq-jp-title {
        font-size: 40px;
    }

    .faq-item-title-container {
        padding-bottom: 20px;
        padding-right: 80px;
        padding-top: 20px;
    }

    .faq-item-title {
        padding-left: 80px;
    }

    .faq-item-title:before {
        height: 40px;
    }

    .faq-item-text {
        padding-left: 80px;
        padding-right: 80px;
    }

    .faq-item-title:before {
        font-size: 28px;
        left: 30px;
    }

    .faq-accordion-item {
        margin-bottom: 25px;
    }
}

@media only screen and (max-width: 680px) {
    .faq {
        padding:50px 0 60px;
    }

    .faq-accordion {
        margin-top: 40px;
    }
    .faq-title-container {
        margin-bottom: 50px;
    }

    .faq-en-title {
        font-size: 24px;
        line-height: 1.5;
    }

    .faq-jp-title {
        font-size: 32px;
        line-height: 1.5;
    }

    .faq-item-title-container {
        padding-bottom: 15px;
        padding-right: 50px;
        padding-top: 15px;
    }

    .faq-item-title-container:after,.faq-item-title-container:before {
        right: 15px;
    }

    .faq-item-title {
        font-size: 16px;
        padding-left: 50px;
    }

    .faq-item-title:before {
        height: 32px;
    }

    .faq-item-text {
        font-size: 14px;
        line-height: 1.7;
        padding: 18px 25px 18px 35px;
    }

    .faq-item-title:before {
        font-size: 24px;
        left: 15px;
    }

    .faq-accordion-item {
        margin-bottom: 15px;
    }
}
/* 事業概要 */
.about {
    background-color: #E3E9E1;
    padding: 100px 0;
}
.about-container {
    max-width: 1030px;
    width: 100%;
    margin: auto;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}
.about-card {
    max-width: 600px;
    width: 60%;
    background-color: #fff;
    background-color: #fff;
    border: 5px solid #5AA052;
    border-radius: 30px;
    padding: 30px 0;
}
.about-card-inner {
    max-width: 480px;
    width: 100%;
    margin: auto;
}
.about-title-container {
    font-family: "Arvo", serif;
    line-height: 1.25;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}
.about-title{
    font-family: "Arvo", serif;
    font-size:28px;
}
.about-sub-title{
    font-family: "Arvo", serif;
    font-size:12px;
}

/* 基本情報 */
.about-info {
    max-width: 460px;
    width: 100%;
    margin: auto;
    margin-bottom: 15px;
}
.about-info p{
    font-size:16px;
    font-weight: 500;
    line-height: 1.6;
}

/* プロフィール */

.about-profile {
  padding:15px 30px;
  background:#E3E9E1;
  border-radius:15px;
  text-align:center;
}

.about-profile h4{
    font-size: 18px;
    font-weight: bold;
    line-height: 1.45;
    color: #303030;
    margin-bottom:10px;
}
.about-profile p {
    color: #1A4F3A;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 10px;
}
.about-img {
    padding-top: 40px;
    max-width: 350px;
    width: 35%;
    text-align: center;
}
.about-img img {
}
@media only screen and (max-width: 1100px) {
    .about-card {
        padding: 30px 20px;
    }
}
@media only screen and (max-width: 980px) {
    .about {
        padding: 60px 0 80px;
    }
    .about-title {
        font-size: 26px;
    }

}
@media only screen and (max-width: 680px) {
    .about {
        padding: 50px 0 60px;
    }
    .about-card {
        margin: auto;
        width: 100%;
    }
    .about-container {
        margin-top: 30px;
        flex-direction: column;
        gap: 30px;
    }
    .about-profile {
        padding: 20px;
    }
    .about-info {
        width: 100%;
        margin: auto;
        margin-bottom: 20px;
    }
    .about-info p {
        font-size: 14px;
    }
    .about-title {
        font-size: 24px;
    }
    .about-img {
        padding: 0;
        width: 80%;
        margin: auto;
    }
.about-profile p {
    font-size: 14px;
}
}
/* お問い合わせ */
.contact-sec {
    padding: 95px 0 70px;
  }
  .contact-sub-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 15px;
  }
  .contact-sec-inner {
    max-width: 800px;
    width: 100%;
    margin: auto;
  }
  .contact-sec-text {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.2em;
    margin-bottom: 60px;
  }
  .contact-sec-btn {
    text-align: center;
    margin-bottom: 70px;
  }
  .contact-sec-btn-link {
    display: block;
    position: relative;
    max-width: 330px;
    width: 100%;
    margin: auto;
    padding: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #0095D3;
    background-color: #0095D3;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
  }
  .contact-sec-btn-link:hover {
    background-color: #fff;
    color: #0095D3;
  }
  .contact_tel_btn_link span {
    font-size: 24px;
}
  .contact-form-container {
  }
  .contact-form-container-inner {
    padding: 30px 0 50px;
    max-width: 790px;
    width: 100%;
    margin: auto;
  }
  .contact-box {
    margin-bottom: 25px;
  }
  .contact-box-flex {
    display: flex;
    flex-direction: column;
    gap: 10px 25px;
    margin-bottom: 40px;
  }
  .contact-name-box {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    line-height: 1.45;
  }
  
  
  .label-req {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #fff;
    background-color: #D30000;
    padding: 1px 6px;
    display: inline-block;
    height: 19px;
  }
  .contact-name-box {
    display: flex;
    /* justify-content: space-between;
    width: 250px; */
    gap: 10px;
    margin-bottom: 0;
  }
  .contact-nenrei-container {
    display: flex;
    align-items: center;
    /* width: calc(100% - 260px); */
    width: 100%;

  }
  .contact-nenrei-box {
    display: flex;
    align-items: baseline;
  }
  .contact-nenrei-text {
    width: 50px;
    display: flex;
    justify-content: center;
  }
  .contact-nenrei-input {
    width: calc(100% - 50px);
  }
  .contact-nenrei-input p {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .contact-nenrei-input input {
    border: 1px solid #000;
    background-color: #fff;
  }
  .contact-nenrei-text {
    
  }
  .contact-input {
    width: 100%;
  }
  .contact-input .form-naiyou {
    height: 150px;
  }
  .policy-agree-box {
    justify-content: center;
    margin-bottom: 45px;
  }
  .policy-agree-box label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .policy-agree-btn {
    margin-top: 55px;
    text-align: center;
  }
  .policy-agree-btn-link {
    display: block;
    text-align: center;
	width: 100%;
    max-width: 335px;
    margin: auto;
    padding: 10px 0!important;
    border: 2px solid #D30000;
    background-color: #D30000;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
  }
  .policy-agree-btn-link:hover {
    background-color: #fff;
    color: #D30000;
  }
  .agree {
    width: 100%;
    font-weight: 400;
    margin-bottom: 30px;
  }
  .agree a {
    text-decoration: underline;
  }
  .agree a:hover {
    opacity: 0.6;
  }
.wpcf7-not-valid-tip {
	font-size: 18px;
}
  @media only screen and (max-width: 1100px) {
    .contact-sec-inner {
        padding: 0 20px;
    }
  }
  @media only screen and (max-width: 980px) {
    .contact-sec {
      padding: 40px 0 100px;
    }
    .contact-sub-title {
        font-size: 18px;
    }
    .contact-sec-text {
        margin-bottom: 50px;
    }
    .contact-sec-btn {
        margin-bottom: 50px;
    }
    .contact-text {
        margin-bottom: 30px;
    }
    .contact-box-flex {
        margin-bottom: 30px;
    }
    .contact-btn-container {
        margin-bottom: 80px;
    }
    .contact-btn-title {
        font-size: 20px;
    }
  }
  
  @media only screen and (max-width: 680px) {
    .contact-sec {
      padding: 60px 0 80px;
    }
    .contact-sub-title {
        font-size: 16px;
		margin-bottom: 10px;
    }
    .contact-btn-container {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }
    .contact-form-container {
        border-radius: 50px;
    }
    .contact-form-container-inner {
        padding: 30px 0px;
    }
    .contact-sec-text {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .contact-sec-btn {
        margin-bottom: 30px;
    }
    .contact-text {
        font-size: 16px;
    }
    .contact-text {
        margin-bottom: 20px;
    }
    .contact-name-box {
      justify-content: left;
      gap: 5px;
    }
    .contact-box-flex {
      flex-direction: column;
      gap: 10px;
      margin-bottom: 20px;
    }
    .contact-box-flex .contact-box-title {
      margin-bottom: 0;
    }
    .contact-box-flex .contact-box-flex {
      flex-direction: row;
      align-items: center;
      margin-bottom: 0;
    }
    .contact-box-flex .contact-box-flex:first-child,
    .contact-box-flex .contact-box-flex:last-child,
    .contact-box-flex .contact-input {
      width: 100%;
  
    }
  }
  /* ãŠå•ã„åˆã‚ã›å†…å®¹ */
.inquiry {
    margin-bottom: 20px;
    background-color: #fff7d9;
  }
  
  .wpcf7-form-control {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 5px;
  }
  
  .wpcf7-list-item {
    margin-left: 0;
    margin-bottom: 20px;
  }
  .wpcf7-list-item.last {
    margin-bottom: 0;
  }
  .contact-input input,
  .contact-input textarea {
    background-color: #fff;
    border: 1px solid #DDD;
    height: 38px;
	border-radius: 5px;
    font-size: 16px;
  }
  .contact-sec-inner .wpcf7-form-control {
    padding: 7px 5px;
    padding-left: 20px;
  }
  /* .wpcf7-list-item input {
    display: none;
  } */
  .wpcf7 input[type="date"] {
    flex: 1; /* ãƒ•ãƒ¬ãƒƒã‚¯ã‚¹ãƒœãƒƒã‚¯ã‚¹å†…ã§é©åˆ‡ãªå¹…ã‚’ç¢ºä¿ */
    max-width: 100%;
    -webkit-appearance: none; /* iOSã®ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã‚¹ã‚¿ã‚¤ãƒ«ã‚’ãƒªã‚»ãƒƒãƒˆ */
    appearance: none;
}
  .form-control {}
  
  .btn-submit {
    height: 60px;
    max-width: 250px;
    width: 100%;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    background-color: #642A2A;
    border: 2px solid #642A2A;
    border-radius: 30px;
    text-decoration: none;
    display: block;
    text-align: center;
    text-align: center;
    margin: auto;
  }
  .btn-submit:hover {
    background-color: #fff;
    color: #642A2A;
  }
  @media only screen and (max-width: 850px) {
    .contact-sec-inner {
      padding: 0 20px;
    }
  }
  
  @media only screen and (max-width: 680px) {
    .inquiry {
      margin-bottom: 30px;
    }
    
    .contact-sec-inner .wpcf7-form-control {
        padding-left: 10px;
    }
  }


.policy-agree-box input {
    appearance: auto;
}
input[type="checkbox"] {
    border: 2px solid red;
}
.policy-agree-box input[type="checkbox"] {
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid #DDDDDD;
    background-color: #fff;
    vertical-align: -5px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.policy-agree-box input[type="checkbox"]:checked {
    background-color: #0075FF;
}
.policy-agree-box input[type="checkbox"]:checked:before {
    position: absolute;
    top: 2px;
    right: 0px;
    left: 0;
    margin: auto;
    transform: rotate(50deg);
    width: 8px;
    height: 15px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    content: '';
  }
.wpcf7-submit:disabled {
    background-color: #999;
}
.form_btn_flex {
    width: 90%;
    display: flex;
    justify-content: space-around;
}
.wpcf7-list-item-label {
    padding-left: 15px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
}
.form_btn {
    text-align: center;
}

.form_btn input {
    max-width: 250px;
    width: 100%;
    display: inline-block;
    border: 1px solid #D30000;
    background-color: #D30000;
	padding: 10px;
    color: #fff;
    border-radius: 30px;
}
.form_flex_customer .form_inquiry .wpcf7-text {
    height: 38px;
}
.form_btn input:hover {
    background-color: #fff;
    color: #D30000;
}
@media screen and (max-width: 980px) {
    .form_title {
        font-size: 20px;
    }

    .form_flex,
    .form_flex_customer {
        display: block;
    }

    .form_flex_box {
        justify-content: left;
    }
}


@media screen and (max-width: 680px) {
    .form_book_flex {
        display: block;
    }

    .form_flex_box {
        display: block;
        margin-bottom: 10px;
    }
    .wpcf7-list-item-label {
        padding-left: 0;
        font-size: 14px;
    }
}
.policy-sec {
    padding: 80px 0 180px;
}
.policy-inner {
    max-width: 800px;
    width: 100%;
    margin: auto;
}
.policy-company-title {
    text-align: right;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 90px;
}
.policy-container {
    margin-bottom: 35px;
}
.policy-container:last-child {
    margin-bottom: 0;
}
.policy-title {
    display: block;
    color: #000;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}
.policy-text {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
}
.policy-text-list {
    list-style: none;
    padding-left: 0!important;
    counter-reset: step;
}
.policy-text-list li {
    position: relative;
    counter-increment: step;
    padding-left: 1em;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.05em;
}
.policy-text-list li:last-child {
    margin-bottom: 0;
}
.policy-text-list li::before {
    content: counter(step) ".";
    position: absolute;
    left: 0;
    top: 0;
    width: 1em;
    height: 1em;
    color: #000;
}
@media only screen and (max-width: 980px) {
    .policy-inner {
        padding: 0 20px;
    }
}
@media only screen and (max-width: 980px) {
    .policy-sec {
        padding: 50px 0 100px;
    }
    .policy-title {
        font-size: 18px;
    }
    .policy-company-title {
        margin-bottom: 50px;
    }
}
@media only screen and (max-width: 680px) {
    .policy-sec {
        padding: 30px 0 80px;
    }
    .policy-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .policy-company-title {
        margin-bottom: 30px;
    }
    .policy-text,
    .policy-text-list li {
        font-size: 14px;
    }
    

}

/* ヘッダー */
header {
    position: fixed;
    top: 0;
    z-index: 999999;
    width: 100%;
}
header.scrolled {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
    background-color: #1A4F3A;
}
.header-inner {
    align-items: center;
    display: flex;
    margin: 0 auto;
    max-width: 1440px;
    padding: 25px 25px 25px 40px;
    width: 100%
}

.header-logo {
    margin-right: auto;
    max-width: 290px;
    width: 20%
}
.header-logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Arvo", serif;
    font-weight: bold;
    color: #fff;
}
.header-logo-title {
    font-size: 28px;
}
.header-logo-sub-title {
    font-size: 12px;
    letter-spacing: 0.1em;
}
.header-nav {
    align-items: center;
    display: flex
}

.header-nav {
    justify-content: flex-end;
    width: 80%;
    gap: 40px;
}

.header-nav-menu {
    align-items: center;
    display: flex;
    gap: 0 20px;
    justify-content: space-between;
    max-width: 615px
}

.header-nav-menu-item-link {
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    padding: 15px 0px;
    position: relative;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.header-nav-menu-item-link:hover {
    opacity: .6
}

.navi-current {
    text-align: center;
    width: 16%
}
.header-contact-container {
    max-width: 450px;
    display: flex;
    /*gap: 20px;*/
}
.header-contact-tel {
    max-width: 215px;
    /*width: 100%;*/
    display: flex;
    align-items: center;
}
.header-contact-tel-link {
    display: block;
}
.header-contact-tel-link:hover {
    opacity: 0.6;
}
.header-contact {
    display: flex;
    align-items: center;
    text-align: center;
    margin-left: 25px;
    width: 160px;
    /*width: 100%;*/
}
.header-contact-btn {
    display: block;
    width: 100%;
    padding: 11px 0;
    border-radius: 30px;
    border: 1px solid #F00;
    background-color: #F00;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.03em;
}
.header-contact-btn:hover {
    background-color: #fff;
    color: #F00;
}
@media only screen and (max-width: 1300px) {
    .header-inner {
        padding: 20px;
    }

    .header-nav {
        width: 85%;
    }
    .header-nav-menu {
        gap: 0 15px;
    }
    .header-nav-menu-item-link {
        font-size: 14px;
    }
    .header-contact {
        margin-left: 20px;
    }
}
@media only screen and (max-width: 1200px) {
    .header-nav {
        display: none;
    }
    .header-nav-menu {
        flex-direction: column;
    }
    .header-logo {
        width: 290px;
        margin: auto;
    }
    .header-right-nav {
        margin-left: 30px;
    }
    .header-contact-item {
        width: 100%;
        margin: 10px 0;
    }
    .header-contact-item:last-child {
        margin-bottom: 0;
    }
    .header-contact-item,
    .header-recruit-item {
        width: 100%;
    }
    .header-recruit-item {
        margin-bottom: 20px;
    }
    .header-contact-container {
        flex-direction: column;
        margin-top: 20px;
    }
    .header-contact {
        margin-left: unset;
        margin: auto;
    }
		.header-contact-container {
    gap: 20px;
}
}
@media only screen and (max-width: 680px) {
    .header-inner {
        padding: 10px;
    }
}
/* フッター */
.footer{
  background:#000;
  color:#fff;
  padding:60px 0 20px;
  text-align:center;
}
.footer-inner{
  max-width:1180px;
  margin:0 auto;
}
nav.footer-nav {
    font-size: 16px;
}
.footer-title-container {
    margin-bottom: 35px;
    text-align: center;
}
.footer-title{
    font-family: "Arvo", serif;
    font-size:28px;
    font-weight:bold;
}
.footer-sub{
    font-family: "Arvo", serif;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.1em;
}
.footer-info{
    text-align: left;
    max-width: 255px;
    width: 100%;
    margin: auto;
    margin-bottom:55px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.25;
}
.footer-info p {
    display: flex;
    margin-bottom: 5px;
}
.footer-info p:last-child {
    margin-bottom: 0;
}
.footer-info a{
    display: inline;
  color:#fff;
  text-decoration:underline;
}
.footer-nav{
    margin-bottom: 55px;
}

.footer-nav ul{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:20px;
  list-style:none;
}
.footer-nav a{
  color:#fff;
  text-decoration:none;
}

.footer-nav a:hover{
  opacity:0.7;
}
.footer-copy{
  font-size:12px;
}
@media only screen and (max-width: 680px) {
    .footer {
        padding: 50px 0 20px;
    }
    .footer-title-container {
        margin-bottom: 30px;
    }
    .footer-info {
        margin-bottom: 65px;
		position: relative;
    }
    .footer-nav ul {
        flex-direction: column;
    }
	.footer-info::before {
    position: absolute;
    content: "";
    bottom: -30px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    background-color: #b5b5b5;
}
}
.page-title-sec {
    background-color: #1A4F3A;
    padding-top: 90px;
}
.page-title-container {
    position: relative;
    text-align: center;
    padding: 100px 0;
    color: #fff;
}
.page-sub-title {
    font-size: 20px;
}
.page-main-title {
    display: block;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
}
@media only screen and (max-width: 980px) {
    .page-title-sec {
        padding-top: 89px;
    }
    .page-title-container {
        padding: 80px 0;
    }
    .page-main-title {
        font-size: 36px;
    }
}
@media only screen and (max-width: 680px) {
    .page-title-sec {
        padding-top: 69px;
    }
    .page-title-container {
        padding: 50px 0;
    }
    .page-sub-title {
        font-size: 20px;
    }
    .page-main-title {
        font-size: 36px;
    }
}
.message_404 {
    padding: 80px 0;
}
@media only screen and (max-width: 680px) {
    .message_404 {
        padding: 50px 0;
    }
}
.message_404 p {
    margin-bottom: 20px;
}
.message_404 .more-btn {
    margin-top: 30px;
}
.message_404 .more-btn-link {
    margin: auto;
}