@charset "UTF-8";
/*マテリアルスペース360 CSS Document */
/******************************************************************
	変数設定
*******************************************************************/
/*色設定*/
/*ブレイクポイントサイズ*/
/*フォント*/
/*flex設定*/
/******************************************************************
	基本設定
******************************************************************/
* {
  margin: 0px;
  padding: 0px; }

html, body {
  margin: 0px;
  padding: 0px;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  z-index: 0;
  background: #ffffff;
  font-family: Verdana, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif; }

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

body {
  font-size: 1.6em;
  /* -> 15px; */ }

body, table, th, tr, td, p, ul, li, p {
  font-size: clamp(14px, 3.8vw, 16px);
  color: #333333;
  line-height: 1.5;
  vertical-align: top;
  text-align: left;
  margin: 0px;
  padding: 0px; }

img {
  border: 0; }

ul {
  list-style: none; }

a {
  cursor: pointer;
  color: #0066cc;
  text-decoration: none;
  backface-visibility: hidden;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s; }

a:hover {
  color: #ff3366;
  text-decoration: none; }

/*スマホ基本設定*/
/******************************************************************
　汎用クラス
*******************************************************************/
/*float解除*/
.clearfix::after {
  content: "";
  display: block;
  clear: both; }

/*要素の内側にボーダーつけたい時に使用*/
.inborder {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box; }

/*PC表示・スマホ非表示設定*/
.smart-on {
  display: none; }

.smart-off {
  display: inline; }

@media only screen and (max-width: 779px) {
  .smart-off {
    display: none; } }
/******************************************************************
	ベース
*******************************************************************/
/******************************************************************
	共通
******************************************************************/
main {
  width: 100%; }

section {
  background: #fff; }

section:nth-child(2n) {
  background: #e2f3ff; }

section:nth-child(4n) {
  background: #fff; }

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

h2 {
  font-size: clamp(23px, 5.3vw, 32px);
  margin: 0px auto 30px;
  color: #222222;
  line-height: 1.6;
  text-align: center; }

.blue_border {
  border-bottom: 1px solid #9ab0bf; }

@media only screen and (max-width: 779px) {
  h2 {
    line-height: 1.4;
    margin: 0px auto 20px; }

  .inner {
    padding: 40px 0; } }
/******************************************************************
	メニュー
*******************************************************************/
/*PC*/
nav#menu {
  width: 100%;
  max-width: 1200px;
  padding: 20px 0;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
  box-sizing: border-box;
  align-items: center; }

nav#menu p.logo {
  width: 20%; }

nav#menu ul {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap; }

nav#menu ul li {
  display: inline-block;
  padding-left: 5%;
  font-weight: bold; }

nav#menu ul li a {
  color: #333; }

nav#menu ul li.menu_contact a {
  background: #ed631f;
  padding: 10px 30px;
  color: #fff;
  border-radius: 30px; }

nav#menu ul li.menu_contact a:hover {
  background: #ff9d16; }

/*スマホ・タブレット*/
@media only screen and (max-width: 1199px) {
  nav#menu {
    padding: 20px 10px; } }
@media only screen and (max-width: 779px) {
  nav#menu p.logo {
    width: 45%; }

  nav#menu ul {
    width: 50%; }

  .menu_contact {
    font-size: clamp(14px, 3.8vw, 18px); } }
/*スクロール固定用*/
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%; }

/******************************************************************
	問い合わせリンク
******************************************************************/
div#contact .contact_text {
  color: #555;
  font-size: clamp(14px, 3.8vw, 16px);
  line-height: 1.8;
  display: flex;
  justify-content: center; }

div#contact .contact_bt {
  display: block;
  margin-top: 60px;
  text-align: center; }

div#contact .contact_bt a {
  color: #fff;
  display: inline;
  font-weight: bold;
  background: #ed631f;
  border-radius: 40px;
  padding: 16px 35px;
  font-size: clamp(14px, 3.8vw, 18px); }

div#contact .contact_bt a:hover {
  background: #ff9d16;
  box-shadow: 1px 1px 5px rgba(50, 50, 50, 0.4); }

div#contact .contact_bt a:before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin: 0 10px 0 0;
  font-size: 90%; }

/*スマホ・タブレット*/
@media only screen and (max-width: 779px) {
  div.contact-link {
    padding: 50px 0px; }

  div.contact-link p.contact-text {
    font-size: 2.8vmin;
    line-height: 1.6; }

  div.contact-link p.contact-bt a {
    font-size: 3.0vmin;
    padding: 15px 25px; } }
/******************************************************************
	フッター
******************************************************************/
footer {
  margin: 0;
  background: #1f3680; }

footer p#copyright {
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
  padding: 10px 0; }

/*スマホ・タブレット*/
/******************************************************************
	トップページ
******************************************************************/
/*メインビジュアル*/
header.index-head {
  width: 100%;
  height: 70vh;
  overflow: hidden; }

div.mainvisual {
  width: 100%;
  height: inherit;
  background: #fff;
  position: relative; }

div.mainvisual div.visual {
  height: inherit;
  position: relative;
  overflow: hidden; }

div.mainvisual div.visual img {
  width: 100%;
  height: calc(100% - 60px);
  object-fit: cover;
  object-position: center top;
  left: 0;
  position: absolute;
  top: 60px; }

div.mainvisual div.visual img:first-child {
  z-index: 1;
  opacity: 1; }

div.mainvisual div#title {
  width: 100%;
  height: inherit;
  position: absolute;
  z-index: 3;
  top: 3%; }

div.mainvisual div#title p {
  text-align: center;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translate(0, -50%); }

div.mainvisual div#title p img {
  width: 60%;
  max-width: 900px;
  filter: drop-shadow(4px 4px 7px rgba(0, 0, 0, 0.4)); }

div.mainvisual div#title p span {
  width: 50%;
  font-size: clamp(18px, 2.1vw, 30px);
  color: #fff;
  text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.5);
  font-weight: bold;
  font-family: Verdana, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  display: block;
  margin: 0 auto;
  line-height: 1.6; }

div.mainvisual div#news {
  width: 50%;
  z-index: 90;
  margin: 0 auto;
  position: absolute;
  top: 97%;
  left: 50%;
  transform: translate(-50%, -100%);
  box-sizing: border-box;
  padding: 10px 50px;
  border-radius: 50px;
  box-shadow: 0 3px 7px -2px #222;
  background: #fff;
  display: flex; }

div.mainvisual div#news p {
  color: #222222; }

div.mainvisual div#logo02 {
  width: 34%;
  max-width: 650px;
  min-width: 350px;
  z-index: 90;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%); }

div.mainvisual .news_day {
  font-weight: bold;
  display: inline-block;
  margin-right: 50px; }

div.mainvisual video {
  width: 100%; }

@media only screen and (max-width: 1922px) {
  div.mainvisual video {
    width: auto; }

  .visual {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden; }

  .visual > video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%; } }
@media only screen and (max-width: 1199px) {
  div.mainvisual div#news {
    width: 80%; }

  div.mainvisual div#title p span {
    width: 100%; } }
@media only screen and (max-width: 779px) {
  header.index-head {
    height: 60vh; }

  div.mainvisual div.visual {
    height: 100vh;
    overflow: auto; }

  div.mainvisual div.visual img {
    object-position: center; }

  div.mainvisual div#title p img {
    width: 80%; }

  div.mainvisual div.sp-news {
    height: auto;
    top: 100vh; }

  div.mainvisual div.sp-news p {
    font-size: 3.0vmin; }

  div.mainvisual div.sp-news p.sp-news-date {
    margin-right: 4.0vmin; }

  div.mainvisual div.sp-news p.sp-news-content {
    font-weight: bold; }

  #news {
    font-size: clamp(12px, 3.3vw, 14px); }

  div.mainvisual div#news {
    padding: 10px 20px; } }
@media only screen and (max-width: 460px) {
  div.mainvisual div.visual {
    height: 77vh; } }
/*contents*/
div#contents p {
  text-align: center; }

div#contents ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px; }

div#contents ul li {
  padding: 15px;
  border: 0px #ddd solid;
  border-radius: 5px;
  box-shadow: 0px 0px 7px 2px #ddd;
  transition: .4s; }

div#contents ul li img {
  width: 100%; }

div#contents ul li p {
  font-weight: bold;
  text-align: center;
  font-size: clamp(15px, 2.7vw, 17px);
  line-height: 1.5;
  margin: 5px 0 0 0; }

div#contents ul li p span {
  font-weight: normal;
  font-size: 75%; }

div#contents ul li:empty {
  box-shadow: none; }

div#contents ul li:hover {
  transform: translate(0, -10px);
  opacity: 0.8; }

@media only screen and (max-width: 979px) {
  div#contents ul {
    gap: 25px;
    grid-template-columns: repeat(2, 1fr); } }
@media only screen and (max-width: 779px) {
  div.mainvisual div#news {
    display: block; }

  div.mainvisual div#news {
    width: 90%; }

  div#contents ul li {
    padding: 13px; }

  div#contents ul {
    gap: 25px 15px; } }
@media only screen and (max-width: 490px) {
  div#contents ul {
    grid-template-columns: auto; } }
/*about*/
div#about .about_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap; }

div#about .about_box_left {
  width: 50%; }

div#about .about_box_left p {
  line-height: 1.8;
  color: #222222; }

div#about .about_box_right {
  width: 36%; }

div#about .about_box_right img {
  width: 100%; }

.about_box_left p {
  line-height: 1.8; }

@media only screen and (max-width: 779px) {
  div#about .about_box {
    display: block; }

  div#about .about_box_left {
    width: 100%;
    padding-bottom: 15px; }

  div#about .about_box_left p {
    line-height: 1.8;
    color: #222222; }

  div#about .about_box_right {
    width: 100%; }

  div#about .about_box_right img {
    width: 100%; } }
/******************************************************************
	各種ページ
******************************************************************/
.head {
  background: #ccc;
  padding: 30px;
  text-align: center; }

.head h3 {
  font-size: 2.5rem; }

div#location {
  width: 90%; }

div#location .location_main {
  position: relative;
  width: 100%;
  padding-top: calc(450 / 600 * 100%); }

div#location .location_main iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%; }

div#location .location_main_support {
  position: absolute;
  top: 81%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  width: 100%; }

div#location .location_main_support .bt_howto a {
  padding: 10px 20px;
  border: 1px #222 solid;
  color: #222;
  display: inline-block; }

div#location .location_main_support .bt_howto a:hover {
  opacity: 0.7; }

div#location .location_main_support .link_matterport {
  font-size: 14px;
  text-align: right; }

div#location dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px #222 solid;
  margin: 20px 0;
  padding-bottom: 20px; }

div#location dt {
  width: 10%;
  font-weight: bold;
  padding: 0 0 0 10px; }

div#location dl.location_detail_double dd {
  width: 25%; }

div#location dl.location_detail_single dd {
  width: 80%; }

div#location .location_move {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 10px 0 0 0; }

div#location .location_move li {
  width: 50%; }

div#location div#location_detail {
  margin-top: -8%;
  position: relative;
  z-index: 999; }

div#link {
  width: 90%; }

div#link ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px; }

div#link ul li {
  box-shadow: 0px 1px 5px 1px #ddd; }

div#link ul li a {
  transition: .4s;
  height: inherit; }

div#link ul li a:hover {
  opacity: 0.7; }

div#link ul li a img {
  width: 100%;
  display: block; }

/*you tube*/
#youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%; }

#youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 99999; }

.return {
  text-align: left; }

.next {
  text-align: right;
  margin: 0 0 0 auto; }

.icon {
  display: inline-block;
  vertical-align: middle;
  transition: .4s;
  color: #f1faff;
  border-radius: 10px;
  padding: 8px 20px;
  background: #209fdf;
  margin: -5px 0 20px 0px;
  font-weight: bold; }

.icon::before {
  content: "\f03d";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  margin-right: 0.5em; }

.icon:hover {
  opacity: 0.7; }

@media only screen and (max-width: 779px) {
  .head h3 {
    font-size: 2.0rem; }

  div#location .location_main_support {
    top: 82%; }

  div#location .location_main_support .bt_howto a {
    padding: 2px 8px;
    font-size: 13px; }

  div#location dl dt {
    width: 20%;
    margin-right: 5%; }

  div#location dl.location_detail_double dd {
    width: 70%;
    margin-bottom: 10px; }

  div#location dl.location_detail_double dd:last-child {
    margin: 0; }

  div#location dl.location_detail_single dd {
    width: 70%; }

  div#location div#location_detail {
    margin-top: -5%; }

  div#link ul {
    grid-template-columns: repeat(2, 1fr); } }
