div {
  content: template;
}

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

html {
  font-size: 62.5%;
}

body {
  font-family: 'Klee One', cursive;
  font-weight: 600;
  font-style: normal;
  color: #977E02;
  font-size: 1.8rem;
}

@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0px 20px;
}

li {
  list-style: none;
}

a {
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.italic {
  font-style: italic;
}

dl {
  margin-bottom: 30px;
}

dt {
  font-size: 2rem;
  font-weight: bold;
}

dd {
  font-size: 1.6rem;
}

.header {
  z-index: 10;
  position: fixed;
  width: 100%;
  height: 100px;
}

@media (max-width: 768px) {
  .header {
    height: 70px;
  }
}

.header__logo {
  width: 224px;
  margin-right: 80px;
}

@media (max-width: 768px) {
  .header__logo {
    width: 180px;
    margin-right: 0px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 20px;
  background-color: #ffffff;
  position: fixed;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (max-width: 768px) {
  .header__inner {
    padding: 15px;
  }
}

.logo__img {
  display: block;
  width: 100%;
}

@media (max-width: 768px) {
  .logo__img {
    width: 62%;
  }
}

@media (max-width: 768px) {
  .global-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    visibility: hidden;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    opacity: 0;
    background-color: #F0F0F0;
  }
  .global-nav.show {
    visibility: visible;
    opacity: 1;
  }
}

.global-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .global-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    padding: 0;
  }
}

.global-nav__item {
  font-weight: bold;
  letter-spacing: normal;
}

@media (max-width: 768px) {
  .global-nav__item {
    margin-bottom: 40px;
  }
}

.global-nav__item:not(:last-child) {
  margin-right: 30px;
}

@media (max-width: 768px) {
  .global-nav__item:not(:last-child) {
    margin-right: 0px;
  }
}

.global-nav__link {
  color: #977E02;
  text-decoration: none;
  font-size: 1.7rem;
}

.btn-menu {
  display: none;
}

@media (max-width: 768px) {
  .btn-menu {
    position: relative;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 40px;
    height: 40px;
    padding: 5px;
    cursor: pointer;
    text-align: center;
    opacity: .9;
    border: none;
    outline: none;
    background: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    font-size: 12px;
  }
}

.btn-menu__line {
  position: relative;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  -webkit-transition: all .4s;
  transition: all .4s;
  border-radius: 4px;
  background-color: #977E02;
}

.btn-menu__line::before, .btn-menu__line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: inherit;
  transition: inherit;
  border-radius: 4px;
  background-color: inherit;
}

.btn-menu__line::before {
  top: -8px;
}

.btn-menu__line::after {
  top: 8px;
}

.btn-menu.active .btn-menu__line {
  background-color: transparent;
}

.btn-menu.active .btn-menu__line::before, .btn-menu.active .btn-menu__line::after {
  top: 0;
  background-color: #977E02;
}

.btn-menu.active .btn-menu__line::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.btn-menu.active .btn-menu__line::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

div {
  content: footer;
}

.footer {
  width: 100%;
  background-color: #977E02;
  padding: 40px 20px;
  font-size: 1.7rem;
}

@media (max-width: 768px) {
  .footer {
    font-size: 1.4rem;
    padding: 40px 20px;
  }
}

.footer__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 768px) {
  .footer__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
}

@media (max-width: 768px) {
  .footer-nav__list {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.footer-nav__item {
  color: #ffffff;
  margin-right: 25px;
}

@media (max-width: 768px) {
  .footer-nav__item {
    padding: 0px 10px 15px;
    margin-right: 0px;
  }
}

.footer-nav__link {
  line-height: 1;
  color: #fff;
  text-decoration: none;
}

.footer-nav__link:hover {
  text-decoration: none;
  opacity: .8;
}

.flex-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 768px) {
  .flex-div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-gray {
  background-color: #F0F0F0;
  position: relative;
}

.l-gray__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.l-gray__left {
  display: block;
  width: 40px;
}

@media (max-width: 768px) {
  .l-gray__left {
    width: 20px;
  }
}

.l-gray__content {
  width: calc(100% - 150px);
}

@media (max-width: 768px) {
  .l-gray__content {
    width: calc(100% - 50px);
  }
}

.l-white {
  background-color: #ffffff;
  position: relative;
}

.l-white__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.l-white__left {
  display: block;
  width: 40px;
  height: 281px;
  margin-right: 95px;
}

@media (max-width: 768px) {
  .l-white__left {
    margin-right: 35px;
    width: 20px;
    height: 171px;
  }
}

.l-white__content {
  width: calc(100% - 150px);
}

@media (max-width: 768px) {
  .l-white__content {
    width: 100%;
  }
}

.ttl__box {
  width: 150px;
  text-align: center;
}

@media (max-width: 768px) {
  .ttl__box {
    width: 50px;
  }
  .ttl__box.-left {
    text-align: left;
  }
  .ttl__box.-right {
    text-align: right;
  }
}

.ttl__box img {
  width: 40px;
}

@media (max-width: 768px) {
  .ttl__box img {
    width: 20px;
  }
}

main {
  padding-top: 100px;
}

@media (max-width: 768px) {
  main {
    padding-top: 70px;
  }
}

.hero {
  width: 100%;
}

.hero__inner {
  width: 100%;
  max-width: 1100px;
  text-align: center;
  margin: 0px auto;
}

.section__title {
  font-size: 44px;
  line-height: 30px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .section__title {
    font-size: 2.2rem;
  }
}

.section__text-wrap {
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}

.section__text {
  line-height: 40px;
}

@media (max-width: 768px) {
  .section__text {
    line-height: 21.64px;
  }
}

.page-title {
  width: 100%;
  background-color: #F0F0F0;
  position: relative;
  margin-bottom: 130px;
}

@media (max-width: 768px) {
  .page-title {
    height: 150px;
    margin-bottom: 80px;
  }
}

@media (max-width: 768px) {
  .page-title__message {
    margin-bottom: 88px;
  }
}

.page-title__inner {
  max-width: 1100px;
  margin: 0px auto;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  height: 350px;
}

@media (max-width: 768px) {
  .page-title__inner {
    padding: 15px 30px;
    height: 150px;
  }
}

.page-title__right {
  display: block;
  max-width: 560px;
  width: 70%;
  margin-left: 50px;
  margin-bottom: -50px;
  margin-top: 40px;
  position: absolute;
  right: 0px;
}

@media (max-width: 768px) {
  .page-title__right {
    width: 55%;
    max-width: 300px;
    margin-top: 40px;
    margin-bottom: -20px;
    margin-left: 20px;
  }
}

.page-title__text {
  position: relative;
  z-index: 3;
  font-size: 4rem;
}

@media (max-width: 768px) {
  .page-title__text {
    font-size: 1.8rem;
  }
}

.page-title__img {
  height: 16px;
}

@media (max-width: 768px) {
  .page-title__img {
    height: 10px;
  }
}

@media (max-width: 768px) {
  .page-title__img-message {
    width: 66px;
  }
}

@media (max-width: 768px) {
  .article {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.article__title {
  font-size: 34px;
  line-height: 49.28px;
  border-bottom: 3px solid #C7000B;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .article__title {
    font-size: 1.7rem;
    line-height: 24.64px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #C7000B;
  }
}

.article__inner {
  max-width: 94%;
}

@media (max-width: 768px) {
  .article__inner {
    max-width: 100%;
  }
}

.article p {
  font-size: 1.6rem;
  line-height: 37.28px;
}

@media (max-width: 768px) {
  .article p {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}

.article__sub-title {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .article__sub-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}

.article__corporate-inner {
  margin-right: 25px;
}

@media (max-width: 768px) {
  .article__corporate-inner {
    margin-right: 0px;
  }
}

.article__corporate-inner p {
  padding-left: 20px;
}

@media (max-width: 768px) {
  .article__corporate-inner p {
    padding-left: 10px;
  }
}

.read-button {
  color: #ffffff;
  background-color: #977E02;
  display: inline-block;
  height: 40px;
  padding: 0px 15px;
  white-space: nowrap;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  z-index: 3;
}

.read-button:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .read-button {
    max-width: 130px;
  }
}

.page-corporate__title {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .page-corporate__title {
    margin-bottom: 25px;
  }
}

.page-corporate__mission {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .page-corporate__mission {
    margin-bottom: 30px;
  }
}

.page-corporate__vision p {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .page-corporate__vision p {
    margin-bottom: 30px;
  }
}

.page-corporate__values {
  margin-top: 90px;
  margin-bottom: 90px;
}

@media (max-width: 768px) {
  .page-corporate__values {
    margin-top: 40px;
    margin-bottom: 50px;
  }
}

.page-corporate__values p {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .page-corporate__values p {
    margin-bottom: 40px;
  }
}

.page-about p {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .page-about p {
    margin-bottom: 30px;
  }
}

.page-about p em {
  white-space: nowrap;
  font-style: normal;
}

.page-about__about {
  margin-bottom: 75px;
}

@media (max-width: 768px) {
  .page-about__about {
    margin-bottom: 65px;
  }
}

.page-about__message {
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  .page-about__message {
    margin-bottom: 75px;
  }
}

.about {
  padding: 100px 0px;
}

@media (max-width: 768px) {
  .about {
    padding: 40px 0px;
  }
}

.about__img {
  display: block;
  width: 500px;
  margin-left: 50px;
}

@media (max-width: 768px) {
  .about__img {
    width: 100%;
    margin-top: 20px;
    margin-left: 0px;
    margin-right: -20px;
  }
}

.about .flex-div {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  .about .flex-div {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    margin-right: -20px;
  }
}

.corporate {
  padding: 100px 0px;
}

@media (max-width: 768px) {
  .corporate {
    padding: 40px 0px;
  }
}

.corporate__img-div {
  position: relative;
  margin-top: -100px;
  margin-left: -40px;
}

.corporate__img {
  display: block;
  width: 675px;
}

@media (max-width: 768px) {
  .corporate__img {
    width: 100%;
    height: auto;
  }
}

.corporate .read-button {
  position: relative;
}

.corporate .section__text-wrap {
  position: relative;
  z-index: 3;
}

.message {
  padding: 100px 0px;
}

@media (max-width: 768px) {
  .message {
    padding: 40px 0px;
  }
}

.message .section__title {
  line-height: 1.6;
}

.message__img {
  display: block;
  width: 500px;
  margin-left: 50px;
  margin-top: -100px;
}

@media (max-width: 768px) {
  .message__img {
    width: 100%;
    margin-left: -40px;
    margin-right: -80px;
  }
}

.message .flex-div {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  .message .flex-div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    margin-right: -60px;
  }
}

.profile {
  padding: 100px 0px;
}

@media (max-width: 768px) {
  .profile {
    padding: 40px 0px;
  }
}

.profile .l-white__content {
  width: calc(100% - 150px);
  padding-left: 50px;
}

@media (max-width: 768px) {
  .profile .l-white__content {
    width: 100%;
    padding-left: 0px;
  }
}

.profile table {
  text-align: left;
  border-collapse: collapse;
  width: 80%;
}

@media (max-width: 768px) {
  .profile table {
    width: 100%;
  }
}

.profile table tr {
  border: 0px;
}

.profile table tr:not(:last-child) {
  border-bottom: 1px solid;
}

.profile table th {
  width: 42%;
  padding: 20px 0;
}

@media (max-width: 768px) {
  .profile table th {
    padding: 10px 0;
    width: 39%;
  }
}

.profile table td {
  padding: 20px 0;
}

@media (max-width: 768px) {
  .profile table td {
    padding: 10px 0;
  }
}
