@charset "UTF-8";
@import "./base/reset.css";
html {
  font-size: 62.5%;
}
@media (max-width: 768px) {
  html {
    font-size: 55%;
  }
}

p,
h1,
h2,
h3,
.header__logo,
a,
li,
th,
td {
  font-family: "Noto Sans JP", sans-serif, "Roboto", sans-serif;
}

body {
  position: relative;
  width: 100%;
  min-width: 1200px;
  margin: 0px;
  padding-bottom: 216px;
}
@media (max-width: 768px) {
  body {
    width: 100%;
    min-width: auto;
    padding-bottom: 136px;
  }
}

.home-kv__bg {
  width: 100vw;
  min-width: 1200px;
}
@media (max-width: 768px) {
  .home-kv__bg {
    width: 100%;
    min-width: auto;
  }
}

main {
  padding-top: 78px;
  margin-bottom: 160px;
}
@media (max-width: 768px) {
  main {
    padding-top: 69px;
  }
}

.un-section {
  width: 1200px;
  margin: 80px auto 80px;
}
@media (max-width: 768px) {
  .un-section {
    width: 100%;
    padding: 0 4%;
    margin: 80px auto 40px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .un-section {
    margin: 40px auto 0px;
  }
}
.un-section:first-child {
  margin: 80px auto 0px;
}
@media (max-width: 768px) {
  .un-section:first-child {
    margin: 40px auto 0px;
  }
}

.un-text {
  font-size: 1.6rem;
}

.text-link {
  font-size: 1.6rem;
  margin: 20px auto;
  text-decoration: underline;
  text-align: center;
}
.text-link:hover {
  text-decoration: none;
}

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

.c-flex-max3 {
  margin-left: -30px;
}
@media (max-width: 768px) {
  .c-flex-max3 {
    margin-left: 0px;
  }
}
.c-flex-max3 .c-flex__item {
  position: relative;
  margin-left: 30px;
  width: calc(33.333% - 30px);
}
@media (max-width: 768px) {
  .c-flex-max3 .c-flex__item {
    margin-left: 0px;
    width: 100%;
  }
}
.c-flex-max3 .c-flex__item a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-flex-max3 .c-flex__item a:hover {
  background-color: #fff;
  opacity: 0.5;
}
.c-flex-max3 .c-flex__item .c-flex__item--img-box {
  position: relative;
}
.c-flex-max3 .c-flex__item .c-flex__item--img-box::before {
  content: "";
  display: block;
  padding-top: 60%;
}
.c-flex-max3 .c-flex__item img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-flex-max3 .c-flex__item .c-flex__item--title {
  text-align: center;
  font-size: 2rem;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .c-flex-max3 .c-flex__item {
    margin-top: 30px;
  }
}
.c-flex-max3 .c-flex__item:first-child {
  margin-top: 0px;
}

footer {
  padding: 80px 0px;
  background-color: #333;
  color: #fff;
  position: absolute;
  bottom: 0px;
  width: 100%;
}
@media (max-width: 768px) {
  footer {
    padding: 40px 0px;
  }
}
footer .un-text {
  font-size: 1.4rem;
  text-align: center;
}
footer .fotter-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0px;
}
footer .fotter-nav ul li {
  list-style: none;
  margin-left: 20px;
}
footer .fotter-nav ul li a {
  color: #fff;
}
footer .fotter-nav ul li a:hover {
  text-decoration: underline;
}
footer .fotter-nav ul li:first-child {
  margin-left: 0px;
}

.un-head-2 {
  position: relative;
  display: block;
  font-size: 4rem;
  line-height: 1.5;
  margin: 0px auto 30px;
  padding-bottom: 5px;
  text-align: center;
  width: auto;
}
.un-head-2::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  height: 4px;
  border-radius: 2px;
  background-color: #333;
}

.breadcrumb {
  margin: 0px 0px 30px;
  padding: 0;
  list-style: none;
}
.breadcrumb li {
  display: inline;
  list-style: none;
  font-weight: bold;
}
.breadcrumb li:after {
  content: ">";
  padding: 0 0.2em;
  color: #333;
}
.breadcrumb li:last-child:after {
  content: "";
}
.breadcrumb li {
  font-size: 1.4rem;
}
.breadcrumb li a {
  text-decoration: none;
  color: #333;
}
.breadcrumb li a:hover {
  text-decoration: underline;
}
.breadcrumb li:first-child a:before {
  font-family: FontAwesome;
  content: "";
  font-weight: normal;
  font-size: 1.1em;
  color: #333;
}

.image-center img {
  width: 600px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .image-center img {
    width: 100%;
    height: auto;
  }
}
.image-center .text {
  width: 100%;
  margin-top: 20px;
}

.page-title h1 {
  font-size: 4rem;
  padding-bottom: 10px;
}

.c-table {
  border-left: 1px solid #eee;
  border-top: 1px solid #eee;
  margin: 20px auto;
  border-collapse: collapse;
  border-spacing: 0;
}
.c-table tr th {
  width: 200px;
  background-color: #f5f5f5;
}
@media (max-width: 768px) {
  .c-table tr th {
    width: 30%;
  }
}
.c-table tr td {
  width: 600px;
}
@media (max-width: 768px) {
  .c-table tr td {
    width: 70%;
  }
}
.c-table tr th,
.c-table tr td {
  font-size: 1.6rem;
  padding: 30px;
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .c-table tr th,
.c-table tr td {
    padding: 15px;
  }
}

.un-ol {
  font-size: 1.6rem;
  margin: 20px 0px;
}

.un-ol .un-ol {
  margin-top: 0px;
}

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

video {
  /* This used to work for the parent element of button divs */
  /* But it does not work with newer browsers, the below doesn't hide the play button parent div */
  /* Old shadow dom for play button */
  /* New shadow dom for play button */
  /* This one works! */
}
video::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
}
video::-webkit-media-controls-play-button {
  display: none !important;
  -webkit-appearance: none;
}
video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

*::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
}

*::--webkit-media-controls-play-button {
  display: none !important;
  -webkit-appearance: none;
}

*::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

header {
  position: fixed;
  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;
  padding: 24px 40px;
  width: 100%;
  z-index: 99;
  background-color: #333;
  opacity: 0.9;
}
@media (max-width: 768px) {
  header {
    padding: 16px 20px;
  }
}
header h1 {
  margin: 0px;
  color: #fff;
}
header .g-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0px;
}
@media (max-width: 768px) {
  header .g-nav {
    display: none;
  }
}
header .g-nav li {
  margin-left: 20px;
  font-size: 1.6rem;
}
header .g-nav li a {
  color: #fff;
}
header .g-nav li:first-child {
  margin-left: 0px;
}

.header__logo {
  color: #fff;
  font-size: 2rem;
}
.header__logo a {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}

.open-button {
  display: none;
  top: 0px;
  right: 0px;
  position: relative;
  cursor: pointer;
  width: 40px;
  height: 37px;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .open-button {
    display: block;
  }
}
.open-button span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 10px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 50%;
}
.open-button span:nth-of-type(1) {
  top: 7px;
}
.open-button span:nth-of-type(2) {
  top: 17px;
}
.open-button span:nth-of-type(3) {
  top: 27px;
}

.open-button.active span:nth-of-type(1) {
  top: 14px;
  left: 17px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.open-button.active span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}
.open-button.active span:nth-of-type(3) {
  top: 26px;
  left: 17px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.sp-nav {
  display: none;
  opacity: 1;
}
@media (max-width: 768px) {
  .sp-nav {
    position: absolute;
    width: 100%;
    left: 0px;
    top: 69px;
    background-color: #333;
  }
}
.sp-nav ul {
  margin: 50px 0px;
  padding-left: 0px;
}
.sp-nav li {
  display: block;
  padding: 20px 0px;
  text-align: center;
}
.sp-nav li a {
  color: #fff;
  font-size: 1.6rem;
}

.open-button.active + .sp-nav {
  display: block;
}

.home-kv {
  position: relative;
  width: 100vw;
  min-width: 1200px;
  height: 800px;
}
@media (max-width: 768px) {
  .home-kv {
    min-width: auto;
    height: auto;
  }
}
.home-kv .home-kv__bg {
  height: 800px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .home-kv .home-kv__bg {
    width: 100%;
    min-width: auto;
    height: 650px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.home-kv .home-kv__catch {
  font-size: 8.4rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
}
@media (max-width: 768px) {
  .home-kv .home-kv__catch {
    font-size: 4rem;
  }
}

.home-head-2 {
  font-size: 4rem;
  margin-top: 40px;
  text-align: center;
}

.home-message .un-text {
  font-size: 2.4rem;
  margin-top: 30px;
}
.home-message img {
  width: 900px;
  height: 250px;
  margin: 40px auto 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.home-message .text-link {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.home-message-2 {
  padding: 200px 0;
  background-color: #696969;
}
@media (max-width: 768px) {
  .home-message-2 {
    padding: 40px 4%;
  }
}
.home-message-2 h2,
.home-message-2 p {
  color: #ffffff;
}

.home-section-title {
  margin: 0 auto;
  margin-bottom: 50px;
  text-align: center;
}
.home-section-title h2 {
  font-family: "Roboto", sans-serif;
  font-size: 3.2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}
.home-section-title h2:before {
  line-height: 1.3;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50%;
  height: 3px;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 1.5px;
  background-color: #d3d3d3;
}

.home-news {
  margin-top: 160px;
}
.home-news .home-news__list {
  padding: 0;
}
@media (max-width: 768px) {
  .home-news .home-news__list {
    margin-top: 10px;
  }
}
.home-news .home-news__list .home-news__list--item {
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 15px 0;
  list-style: none;
  border-top: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
}
@media (max-width: 768px) {
  .home-news .home-news__list .home-news__list--item a {
    display: block;
    width: 100%;
  }
}
.home-news .home-news__list .date {
  margin-right: 20px;
}
.home-news .home-news__list .tag {
  margin-right: 20px;
  padding: 5px 10px;
  color: #ffffff;
  background-color: #333333;
}
.home-news .home-news__list .title {
  text-decoration: none;
}
@media (max-width: 768px) {
  .home-news .home-news__list .title {
    margin-top: 20px;
  }
}
.home-news .home-news__list .title:hover {
  text-decoration: underline;
}

.news-link {
  margin-top: 40px;
  text-align: center;
}
.news-link a {
  padding: 0 10px;
  border-right: 1px solid #333333;
  border-left: 1px solid #333333;
}
.news-link a:hover {
  text-decoration: underline;
}

.contact-form {
  width: 800px;
  margin: 0 auto;
}
.contact-form .form__item {
  padding: 20px 20px;
  border-top: 1px solid #ddd;
}
.contact-form .form__item label {
  display: block;
  font-size: 1.8rem;
}
.contact-form .form__item .req {
  position: relative;
}
.contact-form .form__item .req::after {
  content: "必須";
  color: #ff4500;
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: 20px;
  font-size: 1.6rem;
}
.contact-form .form__item input,
.contact-form .form__item select,
.contact-form .form__item textarea {
  width: 500px;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .contact-form .form__item input,
.contact-form .form__item select,
.contact-form .form__item textarea {
    width: 100%;
  }
}
.contact-form .submit {
  display: block;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 20px;
  width: 280px;
  margin: 40px auto;
  font-size: 2rem;
  background-color: #d3d3d3;
  color: #333333;
  border: 0px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact-form .submit:hover {
  cursor: pointer;
  background-color: #999999;
}
@media (max-width: 768px) {
  .contact-form .submit {
    width: 80px;
    margin: 20px auto;
  }
}
.contact-form .visually-hidden {
  position: fixed !important;
  /* keep it on viewport */
  top: 0px !important;
  left: 0px !important;
  /* give it non-zero size, VoiceOver on Safari requires at least 2 pixels
     before allowing buttons to be activated. */
  width: 4px !important;
  height: 4px !important;
  /* visually hide it with overflow and opacity */
  opacity: 0 !important;
  overflow: hidden !important;
  /* remove any margin or padding */
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  /* ensure no other style sets display to none */
  display: block !important;
  visibility: visible !important;
}
@media (max-width: 768px) {
  .contact-form {
    width: 100%;
  }
}

.contact__lead {
  margin-bottom: 30px;
}

.privacy-head-2,
.cotact-head-2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.privacy-head-2 {
  margin-top: 30px;
}

.mail {
  font-size: 1.6rem;
}

.contact-section {
  margin-bottom: 20px;
}