/* リセットCSS */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, dl, dt, dd, ol, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: rgba(0, 0, 0, 0);
}

/* ベーススタイル */
body {
    font-family:"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    color: #333;
    background-color: #fff;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .05em;
    text-align: center;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}


body {
    line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav {
    display: block;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after {
    content: "";
    content: none;
}

q:before, q:after {
    content: "";
    content: none;
}

a {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    background: rgba(0, 0, 0, 0);
    text-decoration: none;
    word-break: break-all;
    display: block;
    -webkit-transition: all .2s;
    transition: all .2s;
}

a:hover {
    opacity: 0.7;
}

ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

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

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

input, textarea, select {
    vertical-align: middle;
    border: none;
}

img {
    width: 100%;
    height: auto;
    vertical-align: middle;
    -o-object-fit: contain;
    object-fit: contain;
}

*:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #333;
    background-color: #fff;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .05em;
    text-align: center;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 400px) {
    body {
        font-size: 14px;
    }
}

ul, p {
    text-align: left;
}

.sp {
    display: none;
}

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

    .pc {
        display: none !important;
    }

    body {
        font-size: 14px;
    }
}

p, li, span, th, td, input, textarea, select, label {
    line-height: 1.7;
}

h1 {
    font-size: 50px;
}

@media screen and (max-width: 400px) {
    h1 {
        font-size: 30px;
    }
}

h2 {
    font-size: 35px;
}

@media screen and (max-width: 400px) {
    h2 {
        font-size: 28px;
    }
}

h3, h4 {
    font-size: 20px;
}

@media screen and (max-width: 400px) {
    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 16px;
    }
}

h5 {
    font-size: 16px;
}

@media screen and (max-width: 400px) {
    h5 {
        font-size: 14px;
    }
}

small {
    font-size: 12px;
    display: block;
}

@media screen and (max-width: 800px) {
    small {
        font-size: 10px;
    }
}

.inner {
    max-width: 1000px;
    padding: 80px 0px;
    margin: auto;
    width: 100%;
}

@media screen and (max-width: 800px) {
    .inner {
        max-width: 100%;
        margin: auto;
        width: 100%;
        padding: 15px 0 0 0;
    }
}

.title h2 {
    text-align: left;
    display: block;
}

.content {
    margin: 50px auto;
}

.content:first-child {
    margin-top: 0;
}

.content:last-child {
    margin-bottom: 0;
}

.large {
    font-size: 140%;
    display: block;
}

@media screen and (max-width: 959px) {
    .large {
        font-size: 10vw;
    }
}

.bold {
    font-weight: bold;
}

/* ヘッダー */


header {
    width: 100%;
    position: fixed;
    background-color: rgba(255, 255, 255, 0.95);
    top: 0;
    z-index: 100;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    align-items: center;
    padding: 0 4vw;
}
header h2 {
    text-align: left;
    max-width: 140px;
}
header h2 img {
    width: 100%;
}
.header-nav {
    display: flex;
    justify-content: flex-end;
    font-size: 1.2rem;
    list-style: none;
    text-transform: uppercase;
}
@media (max-width: 1100px) {
    header {
        height: 60px;
        background-color: white;
    }
    header h2 img {
        width: 80%;
    }
    .header-navigation {
        display: none;
    }
    .hamburger {
        position: absolute;
        top: -30px;
        right: -10px;
        z-index: 99;
    }
    #page-navigation {
        text-align: right;
        position: relative;
    }
    .menu-trigger {
        display: inline-block;
        transition: all 0.6s;
        box-sizing: border-box;
        position: relative;
        width: 50px;
        height: 44px;
        background: none;
        border: none;
        appearance: none;
        cursor: pointer;
        z-index: 999;
    }
    .menu-trigger span {
        display: inline-block;
        transition: all 0.6s;
        box-sizing: border-box;
        position: absolute;
        left: 0;
        width: 70%;
        height: 3px;
        background-color: #333;
    }
    .menu-trigger span:nth-of-type(1) {
        top: 20px;
    }
    .menu-trigger span:nth-of-type(2) {
        top: 30px;
    }
    .menu-trigger span:nth-of-type(3) {
        top: 40px;
    }
    .menu-trigger::after {
        position: absolute;
        right: 7px;
        bottom: -26px;
        display: block;
        width: 100%;
        color: #333;
        font-size: 0.9rem;
        text-decoration: none;
        text-align: center;
        white-space: nowrap;
        transition: all 0.4s;
    }
    .menu-trigger.active::after {
        content: "";
        bottom: -25px;
    }
    .menu-trigger.active span:nth-of-type(1) {
        transform: translateY(14px) rotate(-45deg);
    }
    .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .menu-trigger.active span:nth-of-type(3) {
        transform: translateY(-7px) rotate(45deg);
    }
    #nav-content {
        position: fixed;
        top: 50px;
        right: 0;
        z-index: 90;
        width: 100%;
        height: 100vh;
        background: linear-gradient(180deg, #ededed, #68B658);
        padding: 48px 0 0 0;
        transform: translateX(100%);
        transition: 0.4s ease-in-out;
    }
    #nav-content.active {
        transform: translateX(0%);
    }
    #nav-content ul {
        padding-left: 0;
        padding-top: 30px;
        list-style: none;
        margin: 0;
        display: block;
    }
    #nav-content ul li {
        text-align: center;
        position: relative;
        padding: 35px 10vw;
        display: flex;
        max-width: 240px;
        margin: 0 auto;
    }
    #nav-content ul li a {
        text-decoration: none;
        font-size: 17px;
        font-weight: 600;
        color: #333;
        display: block;
        text-decoration: none;
        list-style: none;
        position: absolute;
        top: 10px;
        left: 0;
        width: 100%;
        height: 100%;
    }
}
@media (min-width: 1100px) {
    .menu-trigger {
        display: none;
    }
    header {
        width: 100%;
        height: 80px;
        display: flex;
        justify-content: space-between;
        box-sizing: border-box;
        align-items: center;
        padding: 0 4vw;
    }
    .header-nav {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        list-style: none;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 17px;
    }
    .header-nav li {
        margin-left: 1vw;
    }
    .header-nav li:nth-child(10), .header-nav li:last-child {
        margin-left: 0;
    }
    .header-nav a {
        color: #3c3535;
        padding: 10px;
        box-sizing: border-box;
        text-decoration: none;
    }
    .header-nav li a {
        position: relative;
    }
    .header-nav li a:hover {
        color: #333;
    }
}


/* section-lead */
.lead {
    margin: 100px auto 0 auto;
    padding: 0 20px 100px 20px;
    background-image: url("../assets/img/lead-bg.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: calc(100% + 200px)  calc(100% + 100px);
}
.lead-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.lead-left {
    width: 50%;
}
.lead-right {
    width: 40%;
}
.lead-text {
    font-size: 18px;
    margin-top: 20px;
}

@media screen and (max-width: 800px) {
    .lead {
        margin-top: 40px;
        padding-bottom: 50px;
    }
    .lead-wrapper {
        display: block;
    }
    .lead-left {
        width: 100%;
        margin-bottom: 30px;
    }
    .lead-right {
        width: 100%;
    }
    .lead-text {
        font-size: 15px;
    }
}

/* section-about */
.about {
    background-color: #EFF8EE;
    padding: 0 20px;
}

/* section-point */
.point {
    background-color: #EFF8EE;
}
.point-title {
    background-color: #68B658;
}
.point-title-image, .reason-title-image,  .schedule-title-image {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: end;
    position: relative;
    padding: 0 15px;
}
.point-title-image img, .reason-title-image img,  .schedule-title-image img{
    max-width: 800px;
}

  .point-title-image::after {
    content: "";
    position: absolute;
    bottom: -50px; /* 三角形の位置調整（画像の下に表示） */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: 40px solid #68B658; /* 三角形の色を指定 */
  }

.to-form {
    margin: 0 auto;
    padding-bottom: 80px;
    max-width: 1000px
}
.cv-text {
    text-align: center;
    margin-bottom: 10px;
    font-size: 20px;
}
.cv-btn {
    background-color: #FB8C31;
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
    border-radius: 30px;
}
.cv-btn p {
    text-align: center;
    color: #fff;
    padding: 10px;
    font-weight: bold;
    font-size: 20px;
}

.wrapper {
    padding: 0 20px;
}

@media screen and (max-width: 800px) {
    .point-wrapper {
        margin-bottom: 50px;
    }
    .to-form {
        padding: 0 15px 80px 15px;
    }
    .cv-text {
        text-align: center;
        margin-bottom: 10px;
        font-size: 14px;
        letter-spacing: 0.01rem;
    }
    .cv-btn p {
        font-size: 15px;
    }
}

#point, #interview, #reason {
    scroll-margin-top: 50px;
}


/* section-interview */
.interview {
    background-image: url("../assets/img/voice-bg.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center calc(100% + 200px);
}
.interview-title {
    max-width: 820px;
    margin: 0 auto;
}
.voice {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.voice li {
    max-width: 270px;
    list-style: none;
    margin-top: 30px;
}

@media screen and (max-width: 800px) {
    .interview {
        padding: 50px 20px;
    }
}


/* section-reason */

.reason {
    margin-scroll-top: 40px;
}
.reason {
    background-color: #FFFCDF;
}
.reason-title {
    background-color: #F8BA41;
}
.reason-title-image::after {
    content: "";
    position: absolute;
    bottom: -50px; /* 三角形の位置調整（画像の下に表示） */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: 40px solid #F8BA41; /* 三角形の色を指定 */
  }

  @media screen and (max-width: 800px) {
    .reason-wrapper {
        margin-bottom: 50px;
    }
}


/* section-schedule */

.schedule {
    background-color: #EFF9FF;
}
.schedule-title {
    background-color: #3BA2D7;
}
.schedule-title-image::after {
content: "";
position: absolute;
bottom: -50px; /* 三角形の位置調整（画像の下に表示） */
left: 50%;
transform: translateX(-50%);
width: 0;
height: 0;
border-left: 60px solid transparent;
border-right: 60px solid transparent;
border-top: 40px solid #3BA2D7; /* 三角形の色を指定 */
}


@media screen and (max-width: 800px) {
    .schedule-wrapper {
        padding: 50px 0;
    }
}

/* section-wanted */
.wanted {
    background-image: url("../assets/img/voice-bg.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center calc(100% + 0px);
}

@media screen and (max-width: 800px) {
    .wanted {
        padding: 50px 20px;
    }
}

/* section-recruit */
.recruit {
    background-color: #EFF8EE;
}
.recruit-title {
    max-width: 250px;
    margin: 0 auto;
}

.recruit-tabs {
  display: flex;
  gap: 10px;
  margin: 50px auto 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.recruit-tab {
  background: #eee;
  border: none;
  padding: 10px 24px;
  border-radius: 8px 8px 0 0;
  font-size: 1em;
  cursor: pointer;
  color: #888;
  transition: background 0.2s, color 0.2s;
}
.recruit-tab.active {
  background: #b6d7a8;
  color: #333;
  font-weight: bold;
}
.recruit-tab-content {
  display: none;
  background: #fff;
  border-radius: 0 0 8px 8px;
  padding: 24px;
  border: 1px solid #eee;
  margin-bottom: 50px;
}
.recruit-tab-content.active {
  display: block;
}
.recruit-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.recruit-table th, .recruit-table td {
  border: 1px solid #ddd;
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
}
.recruit-table th {
  background: #f5f5f5;
  width: 120px;
  font-weight: bold;
}
.recruit-table ul {
  margin: 0;
  padding-left: 20px;
}
@media (max-width: 600px) {
  .recruit-table th, .recruit-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .recruit-table th {
    background: #f5f5f5;
    border-bottom: none;
  }
  .recruit-title {
      max-width: 150px;
      margin-top: 30px;
  }
  .recruit-tabs {
    justify-content: space-between;
    max-width: 280px;
    margin: 20px auto;
  }
  .recruit-tab {
      border-radius: 5px;
  }
}


/* section-facility */
.facility {
    margin-bottom: 100px;
    padding: 0 20px;
}
.facility-title {
    max-width: 450px;
    margin: 0 auto;
}
.facility-text {
    text-align: center;
    font-size: 20px;
    margin: 20px auto;
}
.google-map {
    max-width: 900px;
    height: 400px;
    margin-top: 20px;
}
.google-map iframe {
    width: 100%;
}

@media screen and (max-width: 800px) {
    .facility {
        padding: 50px 20px;
    }
    .facility-title {
        max-width: 275px;
    }
    .facility-text {
        font-size: 15px;
    }
}


/* section-facility */
.flow {
    background-color: #EFF8EE;
}
@media screen and (max-width: 800px) {
    .flow {
        padding: 50px 20px;
    }
}


/* form */
.form {
    background-color: #e2e5e7;
    padding: 100px;
}

.form .inner {
    border-radius: 10px;
    padding: 70px 70px ;
    position: relative;
    z-index: 0;
}

.form-inner {
    max-width: 1000px;
    height: 100%;
    background-color: #fff;
    top: 20px;
    right: 0%;
    z-index: -1;
    border-radius: 10px;
    margin: 0 auto;
    padding: 70px;
}

.form h2 {
    display: inline-block;
    margin-bottom: 20px;
    font-weight: bold;
    color: #009944;
    line-height: 0px;
}

.form h2 .form-title-ja {
    font-size: 20px;
    display: block;
    margin-bottom: -10px;
    font-weight: 600;
}

.form h2 .form-title-en {
    font-size: 40px;
    display: block;
    font-weight: bold;
}

@media screen and (max-width: 959px) {
    .form h2 .form-title-ja {
        font-size: 20px;
    }
    .form h2 .form-title-en {
        font-size: 36px;
    }
}

.form .form-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    border-bottom: 1px solid #bfbfbf;
    padding: 35px 0;
}

.form .form-item:first-of-type {
    padding-top: 0;
}

.form .form-item:last-of-type {
    padding-bottom: 0;
}

.form .form-item label {
    width: 500px;
    text-align: left;
    font-size: 1.1em;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
}

.form .form-item label small {
    font-size: .8em;
    display: inline-block;
}

.form .form-item .form-normalize {
    border: 1px solid #bcbcbc;
    border-radius: 7px;
    padding: .5em 1em;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 16px;
    font-weight: normal;
}

.form .form-item .select-normalize {
    position: relative;
    width: 100%;
}

.form .form-item .select-normalize::after {
    position: absolute;
    top: 50%;
    right: 220px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 12px;
    height: 10px;
    background-color: #a78a60;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: "";
    pointer-events: none;
}

.form .form-item .select-normalize select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 340px;
}

.form .form-item .textarea-normalize {
    height: 150px;
}

.form .form-item .privacy-ttl {
    width: 220px;
}

.form .form-item .privacy-txt {
    text-align: left;
    width: 100%;
    border: 1px solid #bcbcbc;
    padding: .5em 1em;
    height: 400px;
    overflow-y: scroll;
    font-size: .9em;
}

.form .form-item .privacy-txt ol {
    padding-left: 1.5em;
}

.form .form-item .privacy-txt p, .form .form-item .privacy-txt ol {
    margin-bottom: 1em;
}

.form .form-item .privacy-txt a {
    display: inline-block;
    text-decoration: underline;
}


.form .required {
    margin-right: 1em;
    font-size: .9em;
    color: #fff;
    background-color: #b41d23;
    padding: 0em .6em;
    border-radius: 3px;
}

.form .form-submit {
    margin-top: 60px;
}

.form .form-submit p {
    text-align: center;
    margin-bottom: 1em;
}

.form .form-submit .submit-normalize {
    width: 60%;
    text-align: center;
    -webkit-transition: all .2s;
    transition: all .2s;
    background-color: rgba(0,0,0,0);
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form .form-submit .submit-normalize:hover {
    opacity: .8;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

.form .form-submit .privacy-check {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.form .form-submit .privacy-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form .form-submit .privacy-check label {
    font-size: 16px;
    cursor: pointer;
    text-align: center;
}

.form .form-submit .privacy-check label a {
    color: #003f65;
    text-decoration: underline;
    display: inline;
}

.form .form-submit .privacy-check label a:hover {
    opacity: 0.8;
}

.submit-btn {
    max-width: 400px;
    background-color: #9DC264;
    border-radius: 40px;
    margin: 0 auto;
}
.submit-btn p {
    color: #fff;
    padding: 20px;
    font-size: 24px;
    text-align: center;
}

@media screen and (max-width: 959px) {
    .form {
        background-color: #e2e5e7;
        padding: 15px;
        margin-top: 50px;
        padding-bottom: 80px;
    }

    .form-inner {
        border-radius: 10px;
        padding: 70px 10px 50px 10px;
        position: relative;
        z-index: 0;
        margin-top: 0px;
    }

    .form .inner:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 92%;
        background-color: #fff;
        top: 20px;
        right: 0%;
        z-index: -1;
        border-radius: 10px;
    }

    .form h2 {
        padding: 0;
        display: inline-block;
        margin-bottom: 0;
        font-weight: normal;
    }
    .form h2 .form-title-ja {
        font-size: 14px;
    }
    .form h2 .form-title-en {
        font-size: 28px;
    }

    
    .form .form-item {
        display: block;
        border-bottom: 1px solid #bfbfbf;
        padding: 20px 0;
        text-align: left;
    }

    .form .form-item:first-of-type {
        padding-top: 0;
    }

    .form .form-item:last-of-type {
        padding-bottom: 0;
    }

    .form .form-item label {
        width: 100%;
        text-align: left;
        padding-top: .5em;
        display: block;
        margin-bottom: .5em;
    }

    .form .form-item label small {
        font-size: .7em;
        display: inline-block;
    }

    .form .form-item .form-normalize {
        border: 1px solid #bcbcbc;
        border-radius: 7px;
        padding: .5em 1em;
        width: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        font-size: 16px;
        font-weight: normal;
    }

    .form .form-submit .privacy-check {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        margin-bottom: 15px;
        display: block;
    }
    
    .form .form-submit .privacy-check label {
        font-size: 14px;
        text-align: left;
    }
}


/* 
@media screen and (max-width: 959px) and (max-width: 400px) {
    .form .form-item .form-normalize {
        font-size: 14px;
        width: 90%;
    }
}

@media screen and (max-width: 959px) {
    .form .form-item .select-normalize {
        position: relative;
        width: 100%;
    }

    .form .form-item .select-normalize::after {
        position: absolute;
        top: 50%;
        right: 20px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 12px;
        height: 10px;
        background-color: #a78a60;
        -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
        clip-path: polygon(0 0, 100% 0, 50% 100%);
        content: "";
        pointer-events: none;
    }

    .form .form-item .select-normalize select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 100%;
    }

    .form .form-item .textarea-normalize {
        height: 120px;
    }

    .form .form-item .privacy-ttl {
        width: 100%;
    }

    .form .form-item .privacy-txt {
        text-align: left;
        width: 100%;
        border: 1px solid #bcbcbc;
        padding: .5em 1em;
        height: 400px;
        overflow-y: scroll;
        font-size: .9em;
    }

    .form .form-item .privacy-txt ol {
        padding-left: 1.5em;
    }

    .form .form-item .privacy-txt p, .form .form-item .privacy-txt ol {
        margin-bottom: 1em;
    }

    .form .form-item .privacy-txt a {
        display: inline-block;
        text-decoration: underline;
    }

    .form .last-item {
        padding-bottom: 50px;
        border-bottom: none;
    }

    .form .required {
        margin-right: .5em;
        font-size: .8em;
        color: #fff;
        background-color: #b41d23;
        padding: .3em .6em;
        border-radius: 3px;
    }

    .form .form-submit {
        margin-top: 10px;
    }

    .form .form-submit p {
        text-align: center;
        margin-bottom: 1em;
        font-size: 1.2em;
    }

    .form .form-submit .submit-normalize {
        width: 100%;
        text-align: center;
        -webkit-transition: all .2s;
        transition: all .2s;
        background-color: rgba(0,0,0,0);
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    .form .form-submit .submit-normalize:hover {
        opacity: .8;
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px);
    }
}
*/


/* Phone section styles */
.email {
    margin: 25px 0;
}
.email-content {
    background-color: #fff;
    border: 2px solid #FB8C31;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.email-title {
    color: #FB8C31;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 15px 0;
    line-height: 1.4;
    text-align: center;
}
.email-adress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    gap: 10px;
}

.phone-icon {
    font-size: 24px;
    color: #333;
}
.phone-tel {
    color: #333;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.phone-tel:hover {
    opacity: 0.7;
}


@media screen and (max-width: 959px) {
    .email-content {
        padding: 15px;
    }
    .email-title {
        font-size: 14px;
        margin: 0;
    }
    .phone-tel {
        font-size: 20px;
    }
    .email-adress {
        gap: 5px;
        margin: 0;
    }
}

.phone {
    margin: 20px 0;
}
.phone-content {
    background-color: #fff;
    border: 2px solid #2D88D9;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.phone-title {
    color: #2D88D9;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 15px 0;
    line-height: 1.4;
    text-align: center;
}
.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    gap: 10px;
}

.phone-icon {
    font-size: 24px;
    color: #333;
}
.phone-tel {
    color: #333;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.phone-tel:hover {
    opacity: 0.7;
}

.hours {
    color: #333;
    font-size: 18px;
    margin: 10px 0 0 0;
    text-align: center;
}

@media screen and (max-width: 959px) {
    .phone-content {
        padding: 15px;
    }
    .phone-title {
        font-size: 14px;
        margin: 0;
    }
    .phone-tel {
        font-size: 20px;
    }
    .phone-number {
        gap: 5px;
        margin: 0;
    }
    .hours {
        font-size: 14px;
        margin: 0;
    }
}

.line {
    margin: 20px 0;
}
.line-content {
    background-color: #fff;
    border: 2px solid #009944;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.line-title {
    color: #009944;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 15px 0;
    line-height: 1.4;
    text-align: center;
}
.line-image {
    max-width: 300px;
    margin: 0 auto;
}

@media screen and (max-width: 959px) {
    .line-content {
        padding: 15px;
    }
    .line-title {
        font-size: 14px;
        margin: 0;
    }
    .line-image {
        margin: 10px auto;
    }
}


.floating-btn {
	position: fixed;
	z-index: 999;
	bottom: 20px;
	right: 0;
	width: 18%;
	display: none
}
.floating-btn a {
	border-radius: 10px;
	display: inline-block;
	position: relative;
	overflow: hidden;
	padding: 2px;
}
.floating-btn a:after {
	content: "";
	display: inline-block;
	height: 100%;
	width: 30px;
	position: absolute;
	top: -180px;
	left: 0;
	background-color: #fff;
	opacity: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-animation: reflection 3s ease-in-out infinite;
	animation: reflection 3s ease-in-out infinite
}
@keyframes reflection {
	0% {
		-webkit-transform: scale(0) rotate(45deg);
		opacity: 0
	}
	80% {
		-webkit-transform: scale(0) rotate(45deg);
		opacity: .5
	}
	81% {
		-webkit-transform: scale(4) rotate(45deg);
		opacity: 1
	}
	100% {
		-webkit-transform: scale(50) rotate(45deg);
		opacity: 0
	}
}
.floating-btn a:hover {
	opacity: .8;
	-webkit-transform: translateY(-4px);
	transform: translateY(-4px)
}
@media screen and (max-width: 959px) {
	.floating-btn {
		position: fixed;
		bottom: -10px;
		right: inherit;
		width: 100%;
		height: 60px;
		padding: 5px 0;
		background-color: rgba(38, 38, 38, .8)
	}
	.floating-btn-content {
		display: flex;
	}
	.floating-btn a:after {
		/*# content: none */
	}
}


.to-official {
    background-color: #3BA2D7;
    max-width: 320px;
    margin: 30px auto;
    border-radius: 5px;
}
.to-official p {
    padding: 20px;
    color: #fff;
    font: bold;
    text-align: center;
    font-size: 20px;
}

.insta {
    max-width: 45px;
    margin: 0 auto;
}
.footer-logo {
    max-width: 200px;
    margin: 0 auto;
}

footer .footer-content {
    padding: 20px 0;
    font-size: .9em;
}

footer .footer-content p {
    text-align: center;
}

footer .footer-content p a {
    color: #fff;
    text-decoration: underline;
}

footer .footer-content p a:hover {
    text-decoration: none;
}

@media screen and (max-width: 959px) {
    footer {
        padding-bottom: 60px;
    }
    footer .footer-content {
        padding: 20px 0;
        font-size: .8em;
        border-bottom: 1px solid #fff;
    }

    footer .footer-content p {
        text-align: center;
    }

    footer .footer-content p a {
        text-decoration: underline;
    }

    footer .footer-content p a:hover {
        text-decoration: none;
    }
}



.carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 20px;
    box-sizing: border-box;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    gap: 20px;
}

.carousel-item {
    flex: 0 0 calc(33.333% - 14px);
    margin: 0;
    box-sizing: border-box;
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.9);
}

.carousel-arrow--prev {
    left: 0;
}

.carousel-arrow--next {
    right: 0;
}

.carousel-arrow img {
    width: 40px;
    height: 40px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #2D88D9;
}

@media screen and (max-width: 959px) {
    .carousel {
        padding: 0 40px;
    }

    .carousel-item {
        flex: 0 0 calc(80% - 10px);
    }
    
    .carousel-arrow {
        width: 30px;
        height: 30px;
    }
    
    .carousel-arrow img {
        width: 30px;
        height: 30px;
    }
    .carousel-dot {
        margin-bottom: 20px;
    }
}



/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 800px;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.video-modal-close:hover {
    color: #ff6b6b;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background-color: #000;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: contain;
}

/* Mobile responsive */
@media screen and (max-width: 959px) {
    .video-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .video-modal-close {
        top: -35px;
        font-size: 30px;
    }
}

@media screen and (max-width: 400px) {
    .video-modal-content {
        width: 98%;
        margin: 15% auto;
    }
    
    .video-modal-close {
        top: -30px;
        font-size: 25px;
    }
}

/*# sourceMappingURL=style.css.map */