@charset "UTF-8";
/* CSS Document */
/*========= ローディング画面のためのCSS ===============*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #a3a1a1;
	z-index: 9999999;
	text-align:center;
	color:#fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.splash_logo_img {
	justify-content: center;
	width: 100px;
}
/*========= 画面遷移のためのCSS ===============*/
/*画面遷移アニメーション*/
.splashbg{
    display: none;
}
/*bodyにappearクラスがついたら出現*/
body.appear .splashbg{
    display: block;
    content: "";
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
	left: 0;
    transform: scaleX(0);
    background-color: #e3dede;/*伸びる背景色の設定*/
	animation-name:PageAnime;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;

}/*========= ページローディング画面のためのCSS ===============*/
#splash-page {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #a3a1a1;
	z-index: 9999999;
	text-align:center;
	color:#fff;
}

#splash-logo-page {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg{
    display: none;
}


@keyframes PageAnime{
	0% {
		transform-origin:right;
		transform:scaleX(0);
	}
	50% {
		transform-origin:right;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:left;
	}
	100% {
		transform-origin:left;
		transform:scaleX(0);
	}
}

/*画面遷移の後現れるコンテンツ設定*/

#container{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  box-sizing: border-box;
}
body {
  color: #333030; /* RGB */
  font-family: "NotoSansJP Light", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
a:hover {
  opacity: 0.5;
}
/*header*/
.header a {
  text-decoration: none;
  color: #333030;
}
.header {
  heigth: 80px;
  width: 100%;
  background-color: #FFFFFF;
}
.header__logo {
  text-align: left;
  width: 50px;
  padding: 15px 5px 15px 10px;
  ;
  display: block;
  vertical-align: baseline
}
.header__tellogo {
  text-align: left;
  width: 50px;
  padding: 15px 5px 15px 0px;
  ;
  display: block;
  vertical-align: baseline
}
.header__fream-logoimg {
  display: flex;
}
.header ul li {
  display: none;
}
.header h2 {
  display: none;
}
.header__name {
  font-size: 1.3rem;
  margin-top: 15px;
  font-weight: 300;
}
.header_tel {
  font-size: 1.4rem;
  margin-top: 5px;
  margin-left: 2px;
  font-weight: 400;
}
.header__text-title {
  display: flex;
  flex-direction: column;
}
.business_hours {
  display: none;
}
.header__fream-logo {
  display: flex;
}
.header__title {
  display: none;
}
@media(min-width:560px) {
  .header__logo {
    text-align: left;
    width: 60px;
    padding: 15px 5px 15px 10px;
    ;
    display: block;
    vertical-align: baseline
  }
  .header__tellogo {
    text-align: left;
    width: 60px;
    padding: 15px 5px 15px 0px;
    display: block;
    vertical-align: baseline
  }
  .header__name {
    font-size: 1.3rem;
    margin-top: 10px;
    font-weight: 300;
  }
  .header__title {
    display: block;
    padding: 0px 0px 0px 20px;
    border: #333030 solid 1px;
    border-radius: 10px;
  }
  .header_tel {
    font-size: 1.4rem;
    margin-left: 10px;
	font-weight: 500;
  }
}
@media(max-width:960px) {
  .open-button {
    display: block;
    position: absolute;
    right: 10px;
    top: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background-color: #E3DEDE;
    border: 1px solid #E3DEDE;
    border-radius: 5px;
  }
  .open-button span {
    top: 8px;
    left: 6px;
  }
  .open-button span, .open-button span:before, .open-button span:after {
    position: absolute;
    height: 4px;
    width: 28px;
    border-radius: 8px;
    background: #8b8687;
    display: block;
    content: "";
  }
  .open-button span:before {
    bottom: -10px;
  }
  .open-button span:after {
    bottom: -20px;
  }
  .close-button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    color: #8b8687;
    font-size: 20px;
    padding: 0px;
  }
  .square_btn {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: #8b8687; /* ボタンの背景色 */
  }
  .square_btn::before, .square_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 25px;
    background: #fff; /* バツ印の色 */
  }
  .square_btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .square_btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .header ul li {
    display: block;
  }
  .header nav {
    display: none; /* ハンバーガーメニューの表示 */
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(204, 204, 204, 0.9);
    width: 80%;
    height: 100%;
    padding: 40px 0 0 30px;
    box-shadow: 10px 10px 25px rgba(000, 000, 000, 0.5)
  }
  .menu_eng {
    display: none;
  }
  .menu_jpn {
    text-align: left;
    font-weight: 400;
  }
  .header h4 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 30px 0 5px 0;
    padding: 5px;
  }
  .header h5 {
    margin: 20px 0 20px 0;
    font-size: 1.6rem;
    font-weight: 600;
  }
  .reform_search {
    margin: 40px 0 20px 0;
    font-size: 1.6rem;
    font-weight: 600;
  }
  .header nav img {
    width: 80px;
    margin: 5px 7px 5px 0;
  }
  .header nav ul li {
    border-bottom: solid 1px rgba(000, 000, 000, 0.5)
  }
  .header nav ul li:first-child {
    border-bottom: solid 1px rgba(000, 000, 000, 0.5)
  }
  .header nav ul li a {
    font-size: 300;
    font-weight: 400;
    line-height: 40px;
    vertical-align: middle;
    text-decoration: none;
    color: #333030;
  }
  .humbarger_icon {
    width: 330px;
    display: flex;
    flex-wrap: wrap;
  }
}
/*==================================================
　5-3-1 中心から外に線が伸びる（下部）
===================================*/

.menu_jpn li a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
}

.menu_jpn li.current a,
.menu_jpn li a:hover{
	color:#333030;
}

.menu_jpn li a::after{
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: -5px;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 2px;
    background: #333030;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
.menu_jpn li.current a::after,
.menu_jpn li a:hover::after{
    transform: scale(1.5, 1);/*X方向にスケール拡大*/
}
@media(min-width:960px) {
	.reform_search {
		display: none;
	}
  .humbarger_icon {
    display: none;
  }
  .header {
    height: 100px;
  }
  .header__logo img {
    width: 80px;
  }
  .header-content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
  }
  .header__tellogo {
    display: none;
  }
   .header__text-group {
    text-align: left;
	}
  .header h1 {
    font-size: 1.4rem;
    font-weight: 500;
  }
  .header__logo {}
  .header h6 {
    display: block;
  }
  .header h6 {
    font-size: 1.4rem;
    display: inline-block;
    padding-left: 0px;
  }
  .header__text-group {
    display: flex;
    flex-direction: column;
  }
  .header h2 {
	font-size: 1.4rem; 
    margin: 20px 10px 0 0;
    display: block;
	font-weight: 300;
  }
  .header h3 {
    top: 10px;
    right: 40%;
	  font-size: 1.4rem;
    position: absolute;
    display: inline-block;
    border: 1px solid #333030;
    border-radius: 15px;
    width: 280px;
    font-weight: 400;
  }
  .header_tel {
    top: 10px;
    right: 23%;
    position: absolute;
    display: inline-block;
  }
  .business_hours {
    top: 15px;
    right: 3%;
    position: absolute;
    display: inline-block;
  }
  .header nav ul li {
    position: relative;
    display: inline-block;
  }
  .menu_eng {
    margin-top: 10px;
    font-size: 1.3rem;
    top: 30px;
    right: 7%;
    display: flex;
    gap: 0px 48px;
    position: absolute;
  }
  .menu_jpn {
    margin-top: 10px;
    font-size: 1.5rem;
    top: 50px;
    right: 2%;
    display: flex;
    gap: 0px 45px;
    position: absolute;
  }
  .header h4, .header h5 {
    display: none;
  }
  .tel-number {
    display: none;
  }
  .humbarger_icon {
    display: none;
  }
  /* navigation */
  .open-button, .close-button {
    display: none;
  }
}
@media (min-width:1280px) {
   .header__logo {
	padding-right: 15px;
	}
   .header__name {
    font-size: 1.4rem;
    font-weight: 600;
  }
   .header h2 {
	font-weight: 400;
  }
  .header-content-wrapper {
    max-width: 1280px;
    margin: 0 65px;
    position: relative;
  }
  .menu_eng {
    margin-top: 10px;
    font-size: 1.3rem;
    top: 30px;
    right: 7%;
    display: flex;
    gap: 0px 50px;
    position: absolute;
  }
  .menu_jpn {
    margin-top: 10px;
    font-size: 1.5rem;
    top: 50px;
    right: 2%;
    display: flex;
    gap: 0px 50px;
    position: absolute;
  }
}
@media (min-width:1440px) {
  .header-content-wrapper {
    max-width: 1880px;
    margin: 0 65px;
    position: relative;
  }
  .header_tel {
	font-size: 1.4rem;
    right: 24%;
  }
  .business_hours {
    font-size: 1.4rem;
    right: 6%;
  }
  .menu_eng {
    margin-top: 10px;
    font-size: 1.3rem;
    top: 30px;
    right: 11%;
    display: flex;
    gap: 0px 60px;
    position: absolute;
  }
  .menu_jpn {
    margin-top: 10px;
    font-size: 1.5rem;
    top: 50px;
    right: 6%;
    display: flex;
    gap: 0px 60px;
    position: absolute;
  }
}
@media (min-width:1800px) {
  .header-content-wrapper {
    max-width: 1880px;
    margin: 0 65px;
    position: relative;
  }
  .header_tel {
	font-size: 1.4rem;
    right: 13%;
  }
  .business_hours {
    font-size: 1.4rem;
    right: 1%;
  }
  .menu_eng {
    margin-top: 10px;
    font-size: 1.3rem;
    top: 30px;
    right: 6%;
    display: flex;
    gap: 0px 65px;
    position: absolute;
  }
  .menu_jpn {
    margin-top: 10px;
    font-size: 1.6rem;
    top: 50px;
    right: 1%;
    display: flex;
    gap: 0px 65px;
    position: absolute;
  }
	 .header h3 {
	font-size: 1.8rem;
    top: 10px;
    right: 40%;
    position: absolute;
    display: inline-block;
    border: 1px solid #333030;
    border-radius: 15px;
    width: 330px;
    font-weight: 400;
  }
	.header__title {
    font-size: 1.3rem;
    display: block;
    margin: 20px 0 3px 0;
    padding: 2px 2px 2px 10px;
    border: #333030 solid 1px;
    border-radius: 10px;
  }	
}
/*footer*/
.footer {
  height: 524px;
  padding: 30px 0;
  background: #a3a1a1;
}
.footer__front img {
  width: 65px;
  display: block;
  margin: auto;
}
.footer__front h3 {
  font-size: 1.4rem;
  color: #333030;
  font-weight: 300;
  background-color: #a3a1a1;
  margin: 20px 30px 5px 30px;
  border: 1px solid #333030;
  border-radius: 15px;
}
.footer__front p {
  display: none;
}
.footer__right {
  display: none;
}
.footer a {
  color: #333030;
  text-decoration: none;
}
.footer__site-map {
  display: flex;
}
.footer__left {
  text-align: left;
  justify-content: left;
  font-size: 1.3rem;
  font-weight: 400;
}
.footer__line_m {}
.footer__center {
  text-align: left;
  justify-content: left;
  padding: 0 0 0 0px;
  font-size: 1.3rem;
  font-weight: 400;
}
.footer__center2 {
  text-align: left;
  justify-content: left;
  padding: 0 0 0 20px;
  font-size: 1.3rem;
  font-weight: 400;
}
.site-map__service-links {
  margin-left: 30px;
}
.footer {
  margin-top: 60px 0 20px 0;
}
.footer__site-map {
  margin: 40px 20px;
  line-height: 35px;
  font-weight: 600;
  text-align: left;
}
.footer__sns-img {
  display: inline-block;
  flex-wrap: wrap;
}
.footer__sns-links img {
  width: 30px;
}
.footer__sns-links ul {
  display: flex;
  gap: 0 10px;
  list-style: none;
  justify-content: center;
}
.small {
  font-weight: 400;
  display: block;
  text-align: center;
  font-size: 1.2rem;
  padding-top: 20px;
  width: 100%;
}
.footerline-pc {
  display: none;
}
/*==================================================
　5-3-5 左から右に背景が伸びる
===================================*/

/*背景の設定*/

.footer__left li a{
    /*背景色の基点とするためrelativeを指定*/
	position: relative;
}

.footer__left li a::after {
	content: '';
    /*絶対配置で線の位置を決める*/
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 0;
    /*背景の形状*/
	width: 0;
	height:100%;
	background:#362F2D;
    /*アニメーションの指定*/
	transition:all 0.8s;
	opacity: 0;/*はじめは透過0*/
}

/*現在地とhoverの設定*/
.footer__left li.current a::after,
.footer__left li a:hover::after {
    /*背景の形状*/
	width: 100%;/*横幅を伸ばす*/
	opacity: 1;/*不透明に*/
}

.footer__left li.current a,
.footer__left li a:hover{
  	color: #fff;
}
.footer__center li a{
    /*背景色の基点とするためrelativeを指定*/
	position: relative;
}

.footer__center li a::after {
	content: '';
    /*絶対配置で線の位置を決める*/
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 0;
    /*背景の形状*/
	width: 0;
	height:100%;
	background:#362F2D;
    /*アニメーションの指定*/
	transition:all 0.8s;
	opacity: 0;/*はじめは透過0*/
}
/*現在地とhoverの設定*/
.footer__center li.current a::after,
.footer__center li a:hover::after {
    /*背景の形状*/
	width: 100%;/*横幅を伸ばす*/
	opacity: 1;/*不透明に*/
}

.footer__center li.current a,
.footer__center li a:hover{
  	color: #fff;
}
/*背景の設定*/

.footer__center2 li a{
    /*背景色の基点とするためrelativeを指定*/
	position: relative;
}

.footer__center2 li a::after {
	content: '';
    /*絶対配置で線の位置を決める*/
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 0;
    /*背景の形状*/
	width: 0;
	height:100%;
	background:#362F2D;
    /*アニメーションの指定*/
	transition:all 0.8s;
	opacity: 0;/*はじめは透過0*/
}

/*現在地とhoverの設定*/
.footer__center2 li.current a::after,
.footer__center2 li a:hover::after {
    /*背景の形状*/
	width: 100%;/*横幅を伸ばす*/
	opacity: 1;/*不透明に*/
}

.footer__center2 li.current a,
.footer__center2 li a:hover{
  	color: #fff;
}
@media(min-width:560px) {
  .footer__front img {
    width: 80px;
    display: block;
    margin: auto;
  }
  .footer__front h3 {
    font-size: 1.5rem;
    color: #333030;
    font-weight: 300;
    background-color: #a3a1a1;
    padding: 5px;
    margin: 20px 110px 5px 110px;
    border: 1px solid #333030;
    border-radius: 15px;
  }
  .footer__front p {
    display: none;
  }
  .footer__right {
    display: none;
  }
  .footer a {
    color: #333030;
    text-decoration: none;
  }
  .footer__site-map {
    display: flex;
  }
  .footer__left {
    text-align: left;
    margin: 0 0 0 30px;
    justify-content: left;
    font-size: 1.4rem;
    font-weight: 300;
  }
  .footer__line_m {}
  .footer__center {
    text-align: left;
    justify-content: left;
    padding: 0 0 0 30px;
    font-size: 1.4rem;
    font-weight: 300;
  }
  .footer__center2 {
    text-align: left;
    justify-content: left;
    padding: 0 0 0 20px;
    font-size: 1.4rem;
    font-weight: 300;
  }
  .site-map__service-links {
    margin-left: 30px;
  }
  .footer {
    margin-top: 60px 0 20px 0;
  }
  .footer__site-map {
    margin: 40px 20px;
    line-height: 35px;
    font-weight: 600;
    text-align: left;
  }
  .footer__sns-img {
    display: inline-block;
    flex-wrap: wrap;
  }
  .footer__sns-links img {
    width: 30px;
  }
  .footer__sns-links ul {
    display: flex;
    gap: 0 10px;
    list-style: none;
    justify-content: center;
  }
  .small {
    font-weight: 400;
    display: block;
    text-align: center;
    font-size: 1.2rem;
    padding-top: 20px;
    width: 100%;
  }
  .footerline-pc {
    display: none;
  }
}
@media(min-width: 960px) {
  .footer {
    height: 400px;
    padding: 30px 0;
    background: #a3a1a1;
  }
  .footer__front img {
    display: none;
  }
  .footer__front h3 {
    display: none;
  }
  .footer__site-map ul li {
    font-size: 1.4rem;
    margin-left: 20px;
  }
  .footerline-m {
    display: none;
  }
  .footerline-pc {
    display: block;
  }
  .footer__front p {
	  font-size: 1.4rem;
    display: none;
  }
  .footer__left {
    text-align: left;
    margin: 0 0 0 0;
    font-size: 1.4rem;
    font-weight: 400;
  }
  .footer__center {
    text-align: left;
    justify-content: left;
    font-size: 1.4rem;
    font-weight: 400;
    padding: 0 0 0 15px;
  }
  .footer__center2 {
    text-align: left;
    justify-content: left;
    font-size: 1.4rem;
    font-weight: 400;
  }
  .footer__right {
    display: block;
    text-align: left;
    justify-content: left;
    padding: 0 0 0 100px;
    font-size: 1.3rem;
    font-weight: 500;
  }
  .footer__right h3 {
    border: 1px solid #333030;
    border-radius: 20px;
    font-size: 1.5rem;
    width: 270px;
    height: 30px;
    margin-bottom: 30px;
    padding: 1px 5px 3px 10px;
  }
  .footer__right p {
    font-size: 1.4rem;
    font-weight: 300;
    margin-top: 5px;
    line-height: 1.3rem;
  }
  .footer__line_m {}
  .site-map__service-links {
    margin-left: 30px;
  }
  .footer {
    margin-top: 60px 0 20px 0;
  }
  .footer__site-map {
    margin: 40px 20px;
    line-height: 35px;
    font-weight: 600;
    text-align: left;
  }
  .footerlogo {
    width: 60px;
    margin: 10px 15px 10px 0;
    display: inline-block;
  }
  .footer__logo {
    align-items: center;
    display: flex;
  }
  .footer__logo img {
    vertical-align: middle;
  }
  .footer__logo h2 {
    ;
    font-size: 3.2rem;
    font-weight: 500;
  }
  .footer__sns-links {
    display: none;
  }
  .footer__sns-img-pc {
    display: inline-block;
    flex-wrap: wrap;
  }
  .footer__sns-links-pc img {
    width: 30px;
  }
  .footer__sns-links-pc {
    display: flex;
    column-gap: 20px;
    justify-content: left;
    margin: 20px 20px 20px 5px;
  }
}
@media(min-width: 1280px) {
  .footer__site-map {
    padding: 0px 80px;
  }
  .footer__right {
    padding: 0 0 0 250px;
  }
}
@media(min-width: 1440px) {
  .footer__site-map {
    padding: 0px 80px;
  }
  .footer__right {
    padding: 0 0 0 350px;
  }
}
@media(min-width: 1800px) {
  .footer__site-map {
    padding: 0px 80px;
  }
  .footer__right {
    padding: 0 0 0 700px;
  }
}
/* return to top */
#scroll-top {
  background-color: #e3dede;
  opacity: 0.6;
  bottom: 20px;
  border-radius: 3px;
  padding: 10px;
  position: fixed; /* 画面の位置固定 */
  right: 20px;
}
#scroll-top a {
  text-decoration: none;
  color: #333030;
}