@charset "utf-8";
/*------------------------------------------------
  Web Fonts
------------------------------------------------*/

/* Noto Sans JP */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap&subset=japanese");

/* Hind */
@import url("https://fonts.googleapis.com/css2?family=Hind:wght@400;700&display=swap");


/*------------------------------------------------
  Variables
------------------------------------------------*/

:root {
    --primary-color: #0A7846;
    --secondary-color: #49A872;

    --primary-text-color: #333;
    --secondary-text-color: #333;
    --header-size: 60px;
}

@media print, screen and (min-width: 769px) {
    :root {
        --header-size: 150px;
    }
}


/*------------------------------------------------
  Custom Reset
------------------------------------------------*/

img { vertical-align: middle; } /* Delete image bottom margin */
table { border-collapse: collapse; } /* Reset default table style */
ul, ol { list-style: none; } /* Reset default list style */


/*------------------------------------------------
  General
------------------------------------------------*/
*{
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html { font-size: 62.5%; }  /* Root font size = 10px */

body {
    color: var(--primary-text-color);
    font-family: "Noto Sans JP", serif;
    font-size: 1.4rem;  /* 14px */
    line-height: 2;
    margin: 0;
    padding: 0;
}

ul{
  margin: 0;
  padding: 0;
}

li{
  margin: 0;
  padding: 0;
}

h2{
  margin: 0;
  padding: 0;
}

h3{
  margin: 0;
  padding: 0;
}

h4{
  margin: 0;
  padding: 0;
}

p{
  margin: 0;
  padding: 0;
}

@media print, screen and (min-width: 769px) {
    html {
        position: relative;
        min-width: 1030px;
    }

    body {
        font-size: 1.6rem;  /* 16px */
    }
}

/* Hind */
.font-hind {
    font-family: "Hind", sans-serif;
}

/* Footer fixed to bottom of page */
html { height: 100vh; }
body { display: flex; flex-direction: column; min-height: 100vh; }
main { flex-grow: 1; }

/* Hover style */
a { color: inherit; text-decoration: none; transition: opacity .3s; }
a:hover { opacity: .7; transition: opacity .3s; }

/* Disable tel link on PC */
@media print, screen and (min-width: 769px) { a[href^="tel:"] { pointer-events: none; text-decoration: none; cursor: default; } }

/* Flexible break tag */
.br-sp { display: inline-block; }
@media print, screen and (min-width: 667px) { .br-sp { display: none; } }
.br-tb { display: none; }
@media print, screen and (min-width: 667px) { .br-tb { display: inline-block; } }
.br-pc { display: none; }
@media print, screen and (min-width: 769px) { .br-pc { display: inline-block; } }


/*------------------------------------------------
  Header
------------------------------------------------*/

.header {
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 1;
}

.header-container {
    display: flex;
}

.header-logo {
    display: flex;
    align-items: center;
    width: calc(100% - var(--header-size));
    height: var(--header-size);
    padding: 10px;
}

.header-logo > a {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 210px;
    height: 100%;
    max-height: 40px;
}

.header-logo > a > img {
    display: block;
    width: 100%;
    height: 100%;
}

.header-logo img:nth-of-type(2) {
    display: none;
}

/*----- is-open(is-scrolle) Style -----*/
.header.is-open .header-logo,
.header.is-scroll .header-logo {
    background-color: #FFF;
    transition: all .3s;
}

.header.is-open .header-logo a > img:nth-of-type(1),
.header.is-scroll .header-logo a > img:nth-of-type(1) {
    display: none;
}

.header.is-open .header-logo a > img:nth-of-type(2),
.header.is-scroll .header-logo a > img:nth-of-type(2) {
    display: block;
}

@media print, screen and (min-width: 769px) {
    .header {
        position: absolute;
    }

    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        height: var(--header-size);
        padding: 0 30px;
    }

    .header-logo {
        width: 470px;
        height: auto;
        padding: 0;
    }

    .header-logo > a {
        max-width: 315px;
        max-height: 60px;
    }

    .header-logo > a > img {
        width: 100%;
        height: 100%;
    }
}


/*========== Header Navigation ==========*/

.header-nav {
    display: none;
    z-index: 100;
    position: fixed;
    top: var(--header-size);
    left: 0;
    width: 100%;
    height: calc(100% - var(--header-size));
    background-color: rgba(10, 120, 70, .75);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.header-nav-list {
    padding: 30px;
    background-color: #FFF;
}

.header-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-nav-item:not(:first-of-type) {
    margin-top: 30px;
}

.header-nav-item > a {
    padding: 10px;
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: bold;
    border-bottom: 2px solid #FFF;
}

/*----- Header Nav Contact -----*/
.header-nav-contact-list {
    width: 100%;
    padding: 30px;
    background-color: #F5F5F5;
}

.header-nav-contact-item {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color:  var(--primary-color);
    font-size: 1.8rem;
    font-weight: bold;
}

.header-nav-contact-item:not(:first-of-type) {
    margin-top: 30px;
}

.header-nav-contact-item a {
    display: flex;
    align-items: center;
}

.header-nav-contact-item span {
    margin-right: .5em;
    font-size: .8em;
}

.header-nav-contact-item svg {
    width: 15px;
    height: 15px;
    margin-right: .5em;
}

.header-nav-contact-item svg > path {
    fill:  var(--primary-color);
}

/*----- is-open Style -----*/
.is-open .header-nav {
    display: block;
    animation-name: header-nav-fade-in;
    animation-duration: .3s;
}

@keyframes header-nav-fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@media print, screen and (min-width: 769px) {
    .header-nav {
        display: block;
        flex-shrink: 0;
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        overflow-y: hidden;
    }

    .header-nav-list {
        display: flex;
        align-items: center;
        padding: 0;
        background-color: transparent;
    }

    .header-nav-item {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-nav-item:not(:first-of-type) {
        margin-top: 0;
    }

    .header-nav-item > a {
        padding: 20px;
        color: #FFF;
        font-size: 1.8rem;
        border-bottom: 3px solid transparent;
        transition: all .3s;
    }

    .header-nav-item > a:hover {
        border-bottom: 3px solid var(--primary-color);
        opacity: 1;
        transition: all .3s;
    }

    /*----- Header Nav Contact -----*/
    .header-nav-contact {
        display: none;
    }
}


/*========== Translate Button ==========*/

.translate-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--header-size);
    height: var(--header-size);
    color: #FFF;
    font-weight: 300;
    background-color: var(--secondary-color);
}

@media print, screen and (min-width: 769px) {
    .translate-button {
        position: absolute;
        top: 0;
        right: 30px;
        width: 150px;
        height: 35px;
        font-size: 1.4rem;
        background-color: var(--primary-color);
    }
}


/*========== Navigation Trigger ==========*/

.nav-trigger {
    z-index: 110;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: var(--header-size);
    height: var(--header-size);
    margin-left: auto;
    background-color: var(--primary-color);
}

/*----- Symbol -----*/
.nav-trigger-symbol {
    transition: background-color .3s;
}

.nav-trigger-symbol,
.nav-trigger-symbol::before,
.nav-trigger-symbol::after {
    display: block;
    position: relative;
    height: 1px;
    width: 20px;
    background-color: #FFF;
}

.nav-trigger-symbol::before,
.nav-trigger-symbol::after {
    content: "";
    position: absolute;
    transition: transform .3s;
}

.nav-trigger-symbol::before {
    transform: translateY(-6px);
}

.nav-trigger-symbol::after {
    transform: translateY(6px);
}

/*----- is-open Style -----*/
.is-open .nav-trigger-symbol {
    background-color: rgba(255, 255, 255, 0);
}

.is-open .nav-trigger-symbol::before {
    transform: rotate(-45deg);
}

.is-open .nav-trigger-symbol::after {
    transform: rotate(45deg);
}

@media print, screen and (min-width: 769px) {
    .nav-trigger {
        display: none;
    }
}


/*========== Header Information ==========*/

.header-information {
    display: none;
}

@media print, screen and (min-width: 769px) {
    .header-information {
        display: block;
        width: 470px;
        font-size: 1.8rem;
    }

    .header-information-list {
        display: flex;
        align-items: center;
        padding: 10px 0;
        border: 1px solid #FFF;
    }

    .header-information-item {
        display: flex;
        align-items: center;
        padding: 0 15px;
        color:  #FFF;
        font-weight: bold;
        text-align: center;
    }

    .header-information-item:not(:first-of-type) {
        border-left: 1px solid #FFF;
    }

    .header-information-item a {
        display: flex;
        align-items: center;
    }

    .header-information-item span {
        margin-right: .5em;
        font-size: .8em;
    }

    .header-information-item svg {
        width: 15px;
        height: 15px;
        margin-right: .5em;
    }

    .header-information-item svg > path {
        fill:  #FFF;
    }
}


/*------------------------------------------------
  Footer
------------------------------------------------*/

.footer {
    border-top: 1px solid #DDD;
}

.footer-container {
    padding: 60px 30px;
}

.footer-copyright {
    margin-top: 60px;
    color: #999;
    font-size: 1.2rem;
    line-height: 1;
    text-align: center;
}

@media print, screen and (min-width: 769px) {
    .footer-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        margin: auto;
    }

    .footer-copyright {
        width: 100%;
        margin-top: 60px;
        font-size: 1.2rem;
    }
}


/*========== Footer Information ==========*/

.footer-information {
    display: flex;
    justify-content: space-between;
    width: 300px;
    margin: auto;
}

.footer-information-logo {
    width: 210px;
    height: 40px;
}

.footer-information-logo > a {
    display: flex;
}

.footer-information-logo > a > img {
    width: 100%;
    height: 100%;
}

.footer-information-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #1da1f2;
}

.footer-information-button img {
    width: 25px;
}

@media print, screen and (min-width: 769px) {
    .footer-information {
        flex-direction: column;
        align-items: flex-start;
        margin: 0;
    }

    .footer-information-logo {
        width: 300px;
        height: auto;
        margin: 0;
    }

    .footer-information-button {
        margin-top: 15px;
    }
}


/*========== Footer Navigation ==========*/

.footer-nav-list {
    display: flex;
    flex-wrap: wrap;
}

.footer-nav-item {
    display: flex;
    justify-content: center;
    width: 50%;
    margin-top: 30px;
}

.footer-nav-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 1.2rem;
    text-align: center;
}

.footer-nav-item:nth-of-type(odd) a {
    border-right: 1px solid #ccc;
}

@media print, screen and (min-width: 769px) {
    .footer-nav {
        width: calc(100% - 300px - 60px);
    }

    .footer-nav-list {
        justify-content: flex-end;
    }

    .footer-nav-list:not(:first-of-type) {
        margin-top: 30px;
    }

    .footer-nav-item {
        width: auto;
        margin-top: 0;
    }

    .footer-nav-item:not(:first-of-type) {
        margin-left: 60px;
    }

    .footer-nav-item a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        font-size: 1.6rem;
        font-weight: bold;
        line-height: 1;
    }

    .footer-nav-item:nth-of-type(odd) a {
        border-right: none;
    }

    .footer-nav-list:last-of-type .footer-nav-item a {
        color: #999;
        font-size: .9em;
        font-weight: normal;
    }
}


/*------------------------------------------------
  Page Header
------------------------------------------------*/

.page-header {
    padding-top: var(--header-size);
    background-position: center;
    background-size: cover;
}

.page-header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
}

.page-header-title {
    color: #FFF;
    font-size: 2.4rem;
    text-align: center;
}

@media print, screen and (min-width: 769px) {
    .page-header-container {
        height: 250px;
    }

    .page-header-title {
        font-size: 3.2rem;
    }
}



/*------------------------------------------------
  ボタン
------------------------------------------------*/
.btnArea{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 30px;
}

.btnArea a{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 200px;
  color: #fff;
  background-color: var(--primary-color);
  padding: 10px 15px;
  font-weight: bold;
  position: relative;
}

.btnArea svg {
    position: absolute;
    top: calc(50% - (8.5px / 2));
    right: 15px;
    width: 5px;
}

@media print, screen and (min-width: 769px) {
  .btnArea{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 60px;
  }

  .btnArea a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 250px;
    color: #fff;
    background-color: var(--primary-color);
    padding: 15px 30px;
    font-weight: bold;
    position: relative;
  }
  .btnArea svg {
      top: calc(50% - (17px / 2));
      width: 10px;
      right: 15px;
  }
}
