@charset "utf-8";

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
}
body {
  color: #383e45;
  font-size: 1.2rem;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

li {
  list-style: none;
}

.slider {
  position: relative;
  height: 100vh; /* 全画面の高さ */
  overflow: hidden;
  margin-bottom: 70px;
}

.slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slider img.active {
  opacity: 1;
}

.site-title {
  width: 400px;
  line-height: 1px;
  padding: 10px auto;
}

.site-title a {
  display: block;
}
.section-title a {
  display: inline-block;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 60px;
  border-bottom: solid 1px #383e45;
}

.content-title {
  font-size: 2rem;
  margin: 10px auto;
}

.wrapper {
  /* max-width:90% ; */
  margin: 0 auto 100px auto;
  padding: 0 4%;
  text-align: center;
}

/* Header */
#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}

#header ul {
  display: flex;
  padding: 10px auto;
}

header li {
  margin-left: 30px;
}

header li a {
  color: #24292e;
  font-size: 1.3rem;
}

header li a:hover {
  opacity: 0.7;
}

.sns-btn {
  margin-top: 20px;
}


/* ヘッダー */
.header {
  background-color: white;
  width: 100%;
  height: 110px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.header__inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}

/* ヘッダーのロゴ部分 */
.header__title {
  width: 230px;
}

@media screen and (min-width: 960px) {
  .header__title {
    width: 220px;
  }
}

.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #fff;
  transition: ease 0.4s;
}

/* -----------------------------------------------------------
	image_box
----------------------------------------------------------- */
.price {
  width: 130px;
  text-align: left;
  margin: 0 auto;
}
.image_box {
  display: flex;
  flex-flow: row nowrap;
  gap: 30px;
  width: 90%;
  margin: 100px auto;
}

/* -----------------------------------------------------------
	txt_box / Priceテキスト版
----------------------------------------------------------- */
.txt_box {
  display: flex;
  flex-flow: row nowrap;
  gap: 30px;
  width: 90%;
  margin: 10px auto;
}
.table_design06 {
  border-collapse: collapse;
  width: 95%;
  max-width: 700px;
  margin: 0 auto 50px auto;
}
.table_design06 th, .table_design06 td {
  padding: 1em;
}
.table_design06 th {
  font-weight: bold;
  text-align: left;
  width: 68%;
  min-width: 4em;
  padding-right: 3em;
  position: relative;
}
.table_design06 th::after {
  content: '・・・';
  color: #4d9bc1;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.table_design06 td {
  font-weight: normal;
  text-align: right;
  width: 40%;
  min-width: 4em;
  /*padding-right: 3em;*/
  position: relative;
}



@media screen and (min-width: 960px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 50%;
  }
}

@media screen and (min-width: 960px) {
  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: space-between;
  }
}

.nav-items {
  padding-top: 250px;
  padding-bottom: 200px;
}

@media screen and (min-width: 960px) {
  .nav-items {
    padding-top: inherit;
    padding-bottom: inherit;
  }
}

/* ナビのリンク */
.nav-items__item a {
  color: black;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 20px;
  margin-bottom: 24px;
}
.nav-items__item:last-child a {
  margin-bottom: 0;
}

@media screen and (min-width: 960px) {
  .nav-items__item a {
    margin-bottom: 0;
  }
}

/* ハンバーガーメニュー */
.header__hamburger {
  width: 48px;
  height: 100%;
}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}
@media screen and (min-width: 960px) {
  .hamburger {
    display: none;
  }
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #000;
  position: relative;
  transition: ease 0.4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}

.sns-btn {
  display: flex;
  margin-top: 10px;
}
.sns-btn li {
  width: 30px;
  margin: auto;
}
* {
  margin: 0;
  padding: 0;
}

#news {
  padding-top: 110px;
  margin-top: -110px;
}
.news-list {
  list-style: none outside;
  margin: 50px auto;
  padding: 1rem;
}
.news-list .item a {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #ccc;
  padding: 20px 20px;
}
.news-list .item:first-child a {
  border-top: 1px solid #ccc;
}
.news-list .item .date {
  margin: 0;
  min-width: 140px;
  font-size: 16px;
  color: #999;
  padding: 0 20px 0 0;
}
.news-list .item .category {
  margin: 0;
  min-width: 140px;
  padding: 0 20px 0 0;
}
.news-list .item .category span {
  background: #999;
  color: #fff;
  text-align: center;
  display: inline-block;
  padding: 5px 20px;
  font-size: 12px;
  line-height: 1;
}
.news-list .item .title {
  margin: 0;
  width: 100%;
  text-align: left;
}
.news-list .item a:hover .title {
  color: #00f;
}

@media screen and (max-width: 767px) {
  .news-list .item a {
    flex-wrap: wrap;
  }
  .news-list .item .date {
    min-width: 100px;
  }
  .news-list .item .title {
    margin-top: 10px;
  }
}

/* 装飾 */

* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
body {
  margin: 20px;
}
/* About */
#about {
  padding-top: 110px;
  margin-top: -110px;
}
#about .content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
#about img {
  width: 500px;
  height: auto;
  border: 100%;
  margin: 50px 30px 0 0;
}
#about .text {
  text-align: left;
}

/* Menu */
#menu {
  padding-top: 110px;
  margin-top: -110px;

}
#menu ul {
  display: flex;
  justify-content: flex-start;

}
#menu li {
  width: 32%;
}

/* access */
#access {
  padding-top: 110px;
  margin-top: -110px;
}
#access .content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}
#access img {
  width: 500px;
  height: auto;
  border: 100%;
  margin: 50px 30px 0 0;
}
#access .text {
  text-align: left;
  font-size: 1.5rem;
  line-height: 1.7;
  height: auto;
  margin-bottom: 50px;
}

/* アクセスマップボタン */
.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #eb6100;
  padding: 10px 20px;
  margin: 0 auto;
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #f56500;
}
a.btn--radius {
   border-radius: 100vh;
}

/* footer */
#footer {
  font: size 0.8em;
  padding: 10px auto;
  text-align: center;
}

/* PageTop */
#page-top {
  width: 70px;
  height: 70px;
  line-height: 1.1;
  position: fixed;
  right: 25px;
  bottom: 50px;
  background-color: #000;
  color: #fff;
  border: 1px solid #524f4f;
  border-radius: 10%;
  text-align: center;
  padding-top: 13px;
}
#page-top a {
  color: #fff;
}


/*---------------------
レイアウト切り替え
---------------------*/

@media screen and (max-width: 1000px) {
  /* mainvisual */

  #mainvisuai img {
    height: calc(100vh -60px);
  }
  .content-title {
    font-size: 2rem;
    margin: 10px auto;
    text-align: center;
  }

  /* About */
  #about .content {
    flex-direction: column;
  }
  #about img {
    margin-right: 0;
    width: 90%;
  }

  /* menu */
  #menu ul {
    flex-direction: column;
  }
  #menu li {
    width: 100%;
  
  }

  #access .content {
    flex-direction: column;
  }
  #access img {
    margin-right: 0;
    width: 70%;
  }

  a.btn-c {
  font-size: 1.8rem;
  position: absolute;
  padding: 1.5rem 2rem 1.5rem 2rem;
  border-radius: 100vh;
  right: 40%;
  bottom: -15%;
  }
  #access .text {
    margin-top: 40px;
  }
  
}





