@charset "utf-8";
/* CSS Document */
.header {
  height: 44px;
  background-color: #fff;
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  min-height: 50px;
  padding: 14px;
  box-sizing: border-box;
}
.header h1 {
  font-size: 2rem;
  color: blue;
  position: absolute;
  left: 24px;
  top: 14px;
}
.header__navigation {
  display: block;
  text-align: right;
}
.header__navigation ul li {
  display: inline-block;
  margin-left: 20px;
}
.header__navigation ul li a {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  color: blue;
}
@media (max-width: 833px) {
  .header__navigation {
    display: none;
  }
  /*ハンバーガーアイコン*/
  #nav-drawer {
    padding: 0 24px 0 0;
    text-align: right;
    position: relative;
  }
  #nav-open {
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 22px;
  }
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    background-color: #777;
    display: block;
    content: "";
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
  #nav-close {
    z-index: 999;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
  }
  #nav-content {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 70%;
    height: 100%;
    background-color: #fff;
    text-align: left;
    padding: 15px 0 0 24px;
    transform: translatex(-105%);
    transition: 0.3s ease-in-out;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.25);
  }
  .nav-drawer__title {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: blue;
    margin-bottom: 46px;
  }
  .nav-drawer__link-top {
    display: block;
  }
  #nav-content ul li {
    margin-bottom: 36px;
    display: block;
  }
  #nav-content ul li a {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
  }
  #nav-input:checked ~ #nav-close {
    display: block;
  }
  #nav-input:checked ~ #nav-content {
    transform: translatex(0%);
  }
}
.main {
  background-color: #fdfcea;
  padding-bottom: 60px;
}
.section-top {
  padding-bottom: 60px;
}
.section-top__image {
  height: 700px;
  background-image: url("../../assets/picture/main_picture.png");
  background-position: center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  color: #333;
  font-weight: 600;
  margin-bottom: 100px;
  position: relative;
}
.section-top__image h2 {
  font-size: 4rem;
  position: absolute;
  width: 100%;
  top: 90px;
  line-height: 1.5;
}
@media (max-width: 833px) {
  .section-top__image h2 {
    font-size: 3rem;
  }
}
.section-top__image-message {
  font-size: 2.4rem;
  position: absolute;
  width: 100%;
  bottom: 60px;
  line-height: 1.5;
}
.section-top__lead01 {
  margin: 80px auto 80px;
  text-align: center;
  padding: 0 24px;
}
.section-top__lead01 p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  display: inline-block;
  text-align: left;
}
.section-top__lead02 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.8;
  margin: 0 24px 40px;
}
.section-top img {
  width: 150px;
  height: 150px;
}
.section-pastime {
  margin-bottom: 100px;
}
.section-pastime h2 {
  margin-bottom: 40px;
}
@media (max-width: 833px) {
  .section-pastime h2 {
    font-size: 2.2rem;
  }
}
.section-pastime ul {
  list-style: none;
}
.section-pastime ul li {
  max-width: 350px;
  margin: 0 auto;
  background-color: #feedf7;
  margin-bottom: 40px;
  border-radius: 10px;
  text-align: left;
}
@media (max-width: 374px) {
  .section-pastime ul li {
    max-width: 100%;
    height: auto;
  }
}
.section-pastime ul li {
  display: inline-block;
  margin-right: 40px;
}
.section-pastime ul li:last-child {
  margin-right: 0px;
}
.section-pastime__item-picture {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: 0 0;
  border-radius: 10px 10px 0 0;
}
.section-pastime__item-title {
  padding: 14px 20px;
}
.section-pastime__item-description {
  padding: 0 20px 40px 20px;
}
@media (max-width: 833px) {
  .section-pastime ul li {
    display: block;
    margin: 0 auto 40px;
  }
  .section-pastime ul li:last-child {
    margin-right: auto;
  }
}
.section-recommendation {
  margin: 0 auto;
  max-width: 1040px;
  padding: 80px 0px 0;
  background-color: #fff;
  margin-bottom: 40px;
  border-radius: 10px;
}
.section-recommendation h2 {
  margin: 0 auto 40px;
  padding: 0 0 40px;
  border-bottom: solid 1px #333;
  max-width: 600px;
}
@media (max-width: 833px) {
  .section-recommendation h2 {
    font-size: 2.2rem;
  }
}
.section-recommendation__description1 {
  padding: 0 40px 20px;
  font-size: 1.8rem;
  line-height: 1.5;
}
.section-recommendation__description2 {
  padding: 0 40px 40px;
}
.section-recommendation__map {
  padding: 0 40px 40px;
}
.section-recommendation__map iframe {
  width: 100%;
  height: 400px;
  border: solid 1px #333;
  box-sizing: border-box;
}
.section-recommendation address {
  padding-bottom: 80px;
  font-style: normal;
}
@media (max-width: 833px) {
  .section-recommendation__map {
    padding: 0 0 40px;
  }
  .section-recommendation__map iframe {
    height: 300px;
  }
  .section-recommendation address {
    padding: 0 24px 80px;
  }
}
.shooting-star {
  width: 150px;
  height: 150px;
  padding-bottom: 40px;
}
.section-workhistory {
  background-color: #feedf7;
  padding: 60px 10px 60px;
  margin: 0px auto 40px;
  max-width: 750px;
  border-radius: 10px;
  text-align: center;
}
.section-workhistory h2 {
  margin: 0 auto 40px;
  padding-bottom: 40px;
  border-bottom: solid 1px #333;
  max-width: 600px;
}
@media (max-width: 833px) {
  .section-workhistory h2 {
    font-size: 2.2rem;
  }
}
.section-workhistory ul {
  text-align: left;
  display: inline-block;
}
@media (max-width: 374px) {
  .section-workhistory ul {
    font-size: 1.5rem;
  }
}
.section-news {
  margin: 0 auto 40px;
  background-color: #fff;
  padding: 60px 0px 30px;
  max-width: 800px;
  border-radius: 10px;
}
.section-news h2 {
  margin: 0 auto 40px;
  padding: 0 40px 40px;
  border-bottom: solid 1px #333;
  max-width: 600px;
}
@media (max-width: 833px) {
  .section-news h2 {
    font-size: 2.2rem;
  }
}
.section-news ol {
  list-style-type: none;
}
.section-news ol li {
  margin-bottom: 40px;
  text-align: left;
  padding: 0 40px
}
.section-news li time {
  font-weight: 600;
}
.section-news li time::after {
  content: ":";
}
.section-news h3 {
  display: inline;
}
.footer {
  min-height: 300px;
  background-color: #40dffe;
  font-weight: 600;
}
.footer__site-map {
  padding: 46px 90px 46px;
  text-align: left;
  margin-bottom: 30px;
}
.footer__site-map h2 {
  display: inline-block;
  vertical-align: top;
  color: blue;
  font-size: 2rem;
  padding-bottom: 20px;
}
.footer__site-map-list {
  display: inline-block;
  padding-left: 30px;
}
.footer__sns-links {
  float: right;
}
.footer__sns-links li {
  display: inline-block;
  margin: 0 20px;
}
.footer__sns-links li img {
  width: 30px;
  height: auto;
}
.footer small {
  clear: both;
  color: #fff;
  text-align: center;
}
@media (max-width: 833px) {
  .footer {
    padding-bottom: 20px;
  }
  .footer__site-map {
    margin-bottom: 0;
    padding: 46px 10px 0px;
  }
  .footer__site-map h2 {
    display: none;
  }
  .footer__site-map ul {
    padding: 0;
  }
  .footer__site-map-list {
    padding-left: 60px;
  }
  .footer__sns-links {
    float: none;
    margin: 60px 0 20px;
    text-align: center;
  }
}
@media (max-width: 374px) {
  .footer__site-map-list {
    padding-left: 30px;
  }
}
@charset "utf-8";
/* CSS Document */
.header {
  height: 44px;
  background-color: #fff;
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  min-height: 50px;
  padding: 14px;
  box-sizing: border-box;
}
.header h1 {
  font-size: 2rem;
  color: blue;
  position: absolute;
  left: 24px;
  top: 14px;
}
.header__navigation {
  display: block;
  text-align: right;
}
.header__navigation ul li {
  display: inline-block;
  margin-left: 20px;
}
.header__navigation ul li a {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  color: blue;
}
@media (max-width: 833px) {
  .header__navigation {
    display: none;
  }
  /*ハンバーガーアイコン*/
  #nav-drawer {
    padding: 0 24px 0 0;
    text-align: right;
    position: relative;
  }
  #nav-open {
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 22px;
  }
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    background-color: #777;
    display: block;
    content: "";
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
  #nav-close {
    z-index: 999;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
  }
  #nav-content {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 70%;
    height: 100%;
    background-color: #fff;
    text-align: left;
    padding: 15px 0 0 24px;
    transform: translatex(-105%);
    transition: 0.3s ease-in-out;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.25);
  }
  .nav-drawer__title {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: blue;
    margin-bottom: 46px;
  }
  .nav-drawer__link-top {
    display: block;
  }
  #nav-content ul li {
    margin-bottom: 36px;
    display: block;
  }
  #nav-content ul li a {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
  }
  #nav-input:checked ~ #nav-close {
    display: block;
  }
  #nav-input:checked ~ #nav-content {
    transform: translatex(0%);
  }
}
.main {
  background-color: #fdfcea;
  padding-bottom: 60px;
}
.section-top {
  padding-bottom: 60px;
}
.section-top__image {
  height: 700px;
  background-image: url("../../assets/picture/main_picture.png");
  background-position: center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  color: #333;
  font-weight: 600;
  margin-bottom: 100px;
  position: relative;
}
.section-top__image h2 {
  font-size: 4rem;
  position: absolute;
  width: 100%;
  top: 90px;
  line-height: 1.5;
}
@media (max-width: 833px) {
  .section-top__image h2 {
    font-size: 3rem;
  }
}
.section-top__image-message {
  font-size: 2.4rem;
  position: absolute;
  width: 100%;
  bottom: 60px;
  line-height: 1.5;
}
.section-top__lead01 {
  margin: 80px auto 80px;
  text-align: center;
  padding: 0 24px;
}
.section-top__lead01 p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  display: inline-block;
  text-align: left;
}
.section-top__lead02 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.8;
  margin: 0 24px 40px;
}
.section-top img {
  width: 150px;
  height: 150px;
}
.section-pastime {
  margin-bottom: 100px;
}
.section-pastime h2 {
  margin-bottom: 40px;
}
@media (max-width: 833px) {
  .section-pastime h2 {
    font-size: 2.2rem;
  }
}
.section-pastime ul {
  list-style: none;
}
.section-pastime ul li {
  max-width: 350px;
  margin: 0 auto;
  background-color: #feedf7;
  margin-bottom: 40px;
  border-radius: 10px;
  text-align: left;
}
@media (max-width: 374px) {
  .section-pastime ul li {
    max-width: 100%;
    height: auto;
  }
}
.section-pastime ul li {
  display: inline-block;
  margin-right: 40px;
}
.section-pastime ul li:last-child {
  margin-right: 0px;
}
.section-pastime__item-picture {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: 0 0;
  border-radius: 10px 10px 0 0;
}
.section-pastime__item-title {
  padding: 14px 20px;
}
.section-pastime__item-description {
  padding: 0 20px 40px 20px;
}
@media (max-width: 833px) {
  .section-pastime ul li {
    display: block;
    margin: 0 auto 40px;
  }
  .section-pastime ul li:last-child {
    margin-right: auto;
  }
}
.section-recommendation {
  margin: 0 auto;
  max-width: 1040px;
  padding: 80px 0px 0;
  background-color: #fff;
  margin-bottom: 40px;
  border-radius: 10px;
}
.section-recommendation h2 {
  margin: 0 auto 40px;
  padding: 0 0 40px;
  border-bottom: solid 1px #333;
  max-width: 600px;
}
@media (max-width: 833px) {
  .section-recommendation h2 {
    font-size: 2.2rem;
  }
}
.section-recommendation__description1 {
  padding: 0 40px 20px;
  font-size: 1.8rem;
  line-height: 1.5;
}
.section-recommendation__description2 {
  padding: 0 40px 40px;
}
.section-recommendation__map {
  padding: 0 40px 40px;
}
.section-recommendation__map iframe {
  width: 100%;
  height: 400px;
  border: solid 1px #333;
  box-sizing: border-box;
}
.section-recommendation address {
  padding-bottom: 80px;
  font-style: normal;
}
@media (max-width: 833px) {
  .section-recommendation__map {
    padding: 0 0 40px;
  }
  .section-recommendation__map iframe {
    height: 300px;
  }
  .section-recommendation address {
    padding: 0 24px 80px;
  }
}
.shooting-star {
  width: 150px;
  height: 150px;
  padding-bottom: 40px;
}
.section-workhistory {
  background-color: #feedf7;
  padding: 60px 10px 60px;
  margin: 0px auto 40px;
  max-width: 750px;
  border-radius: 10px;
  text-align: center;
}
.section-workhistory h2 {
  margin: 0 auto 40px;
  padding-bottom: 40px;
  border-bottom: solid 1px #333;
  max-width: 600px;
}
@media (max-width: 833px) {
  .section-workhistory h2 {
    font-size: 2.2rem;
  }
}
.section-workhistory ul {
  text-align: left;
  display: inline-block;
}
@media (max-width: 374px) {
  .section-workhistory ul {
    font-size: 1.5rem;
  }
}
.section-news {
  margin: 0 auto 40px;
  background-color: #fff;
  padding: 60px 0px 30px;
  max-width: 800px;
  border-radius: 10px;
}
.section-news h2 {
  margin: 0 auto 40px;
  padding: 0 40px 40px;
  border-bottom: solid 1px #333;
  max-width: 600px;
}
@media (max-width: 833px) {
  .section-news h2 {
    font-size: 2.2rem;
  }
}
.section-news ol {
  list-style-type: none;
}
.section-news ol li {
  margin-bottom: 40px;
  text-align: left;
  padding: 0 40px
}
.section-news li time {
  font-weight: 600;
}
.section-news li time::after {
  content: ":";
}
.section-news h3 {
  display: inline;
}
.footer {
  min-height: 300px;
  background-color: #40dffe;
  font-weight: 600;
}
.footer__site-map {
  padding: 46px 90px 46px;
  text-align: left;
  margin-bottom: 30px;
}
.footer__site-map h2 {
  display: inline-block;
  vertical-align: top;
  color: blue;
  font-size: 2rem;
  padding-bottom: 20px;
}
.footer__site-map-list {
  display: inline-block;
  padding-left: 30px;
}
.footer__sns-links {
  float: right;
}
.footer__sns-links li {
  display: inline-block;
  margin: 0 20px;
}
.footer__sns-links li img {
  width: 30px;
  height: auto;
}
.footer small {
  clear: both;
  color: #fff;
  text-align: center;
}
@media (max-width: 833px) {
  .footer {
    padding-bottom: 20px;
  }
  .footer__site-map {
    margin-bottom: 0;
    padding: 46px 10px 0px;
  }
  .footer__site-map h2 {
    display: none;
  }
  .footer__site-map ul {
    padding: 0;
  }
  .footer__site-map-list {
    padding-left: 60px;
  }
  .footer__sns-links {
    float: none;
    margin: 60px 0 20px;
    text-align: center;
  }
}
@media (max-width: 374px) {
  .footer__site-map-list {
    padding-left: 30px;
  }
}