@charset "utf-8";
/* common.css */

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* reset    　　　　　　　　　                                            */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
body, div, textarea, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
dl, dt, dd, ol, ul, li, form, label, table, tr, th, td {
	padding: 0;
	font-weight: normal;
	font-size: 100%;
	margin-bottom: 0px;
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
}
body {
	-webkit-text-size-adjust: 100%;
}
img {
	vertical-align: bottom;
	border: 0;
}
ol,
ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
p,li,th,td,dt,dd,span,a {
	font-weight: 500;
}
*, *::before, *::after {
  box-sizing: border-box;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* clear fix 　　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.row:before,
.doc_set:before,
.inner:before,
.cf:before,
.row:after,
.doc_set:after,
.inner:after,
.cf:after {
	content: "";
	display: table;
}

.row:after,
.doc_set:after,
.inner:after,
.cf:after {
	clear: both;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 基本あれこれ　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
html { 
	scroll-behavior: smooth;
}
body {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.8em;
	color: #4a5d4d;
	background-color: #fffdea;
}

/* -- ボックス ----------------------------------------------- */
.doc_set {
	padding-top: 100px;
	padding-left: 30px;
	padding-right: 30px;
}
.doc_set_02 {
	padding-left: 30px;
	padding-right: 30px;
}

/* -- リスト ----------------------------------------------- */
.list_nomal {
	margin-left: 1.2em;
	list-style-type: disc;
}

/* -- フォント ----------------------------------------------- */
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;/*100 to 900*/
  font-style: normal;
}
.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;/*100 to 900*/
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
.m-plus-rounded {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;/*100 to 900*/
  font-style: normal;
}

/* -- フェードイン ----------------------------------------------- */
/* 下から上 */
.fadein_up {
    opacity : 0;
    transform : translate(0px, 100px);
    transition : all 500ms;
}
.fadein_up.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

/* その場で */
.fadein_stay {
    opacity : 0;
    transition : all 1000ms;
}
.fadein_stay.scrollin {
    opacity : 1;
}

/* -- 画面開いてすぐにフェードイン ----------------------------------------------- */
/* その場で */
.op_fadeIn{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */
.op_fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 上から */
.op_fadeDown{
animation-name:fadeDownAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 左から */
.op_fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* 右から */
.op_fadeRight{
animation-name:fadeRightAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* -- PC・スマホ 表示、非表示 ----------------------------------------------- */
.pc_none {
	display: none;	
}
.sp_none {	
}

/* -- TELリンクをカーソルに ----------------------------------------------- */
a[href^="tel:"] { 
    cursor: default;
} 

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* container　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#container {
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* ヘッダー　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#header {
	width: 650px;
}
#header_contents {
	width: 650px;
	position: fixed;
	padding-right: 50px;
	top: 30%;
}

/* -- ロゴ ----------------------------------------------- */
#logo {
	width: 440px;
	margin-bottom: 60px;
	margin-left: auto;
	margin-right: auto;
}
#logo img {
	width: 100%;
	height: auto;
}

/* -- ナビ内ロゴ ----------------------------------------------- */
#nav_logo {
	display: none;
}
/* -- ナビ ----------------------------------------------- */
#nav-items {
	display: flex;
	width: 100%;
}
#nav-items li {
	flex: 1;
	text-align: center;
	border-left: 1px solid #4a5d4d;
}
#nav-items li:last-child {
	border-right: 1px solid #4a5d4d;
}
#nav-items li a {
	display: block;
	text-decoration: none;
	color: #4a5d4d;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
#nav-items li a:hover {
	color: #263028;
}

/* -- ハンバーガーメニュー ----------------------------------------------- */
.hamburger {
    display: none;
}	

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 電話番号表示　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#tel_area {
	text-align: left;
	position: fixed;
	bottom: 20px;
	display: flex;
}

/* -- アイコン ----------------------------------------------- */
#tel_icon {
	width: 39px;
}
#tel_icon img {
	width: 100%;
	height: auto;
}

/* -- テキスト ----------------------------------------------- */
#tel_text {
	padding-left: 20px;
}

/* 連絡先名 */
#tel_about {
	font-size: 14px;
	line-height: 1em;
	margin-bottom: 4px;
	font-weight: 700;
}

/* 電話番号 */
#tel_number {
	font-family: "Roboto", sans-serif;
	font-size: 32px;
	line-height: 1em;
	font-weight: 700;
	margin-bottom: 2px;
}
#tel_number a {
	color: #4a5d4d;
	text-decoration: none;
}

/* 受付時間 */
#tel_open {
	font-size: 14px;
	line-height: 1em;
	display: flex;
    align-items: center;
}
#tel_open span {
	font-size: 11px;
	background-color: #4a5d4d;
	color: #FFFFFF;
	padding-left: 5px;
	padding-right: 5px;
	border-radius: 3px;
	margin-right: 10px;
	padding-bottom: 3px;
	padding-top: 1px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* コンテンツエリア　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#contents {
	width: 550px;
	display: block;
	background-color: #FFFFFF;
	border-right: 1px solid #4a5d4d;
	border-left: 1px solid #4a5d4d;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* footer　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#footer {
	width: 548px;
	color: #FFFFFF;
	overflow: hidden;
}
#footer_data {
	background-color: #4A5D4D;
	border-top-left-radius: 1000px 300px;
	border-top-right-radius: 1000px 300px;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
	margin-top: 100px;
	margin-right: -50px;
	margin-left: -50px;
	padding-top: 65px;
	padding-right: 30px;
	padding-left: 30px;
	padding-bottom: 30px;
	text-align: center;
	font-size: 14px;
}
#ft_logo {
	margin-bottom: 40px;
	margin-left: auto;
	margin-right: auto;
	width: 300px;
}
#ft_logo img {
	width: 100%;
	height: auto;
}
#ft_contact {
	margin-top: 40px;
	margin-bottom: 40px;
}
#ft_contact h3 {
	font-size: 18px;
	font-weight: 500;
}
#copy {
	font-size: 12px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* PAGE TOP            　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#page_top {
	position: fixed;
	bottom: 50px;
	right: 50px;
	z-index: 100;
}
#page_top img {
	width: 80px;
	height: auto;
}
#page_top:hover {
	animation: poyo .6s ease 0s 1 normal running none;
}
@keyframes poyo {
	from, to { transform: none; }
	10% { transform: scale(1.2); }
	40% { transform: scale(.9); }
	60% { transform: scale(1.04); }
	80% { transform: scale(.98); }
}
#page_top:active {
	animation: push .6s;
}
@keyframes push {
	from, to { transform: none; }
	10% { transform: scale(.8); }
	40% { transform: scale(1.1); }
	60% { transform: scale(.96); }
	80% { transform: scale(1.02); }
}










/* ↓↓↓↓↓↓↓↓↓↓ ---以下スマホ--- ↓↓↓↓↓↓↓↓↓↓ */


@media screen and (max-width: 768px) {
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 基本あれこれ　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
body {
	font-size: 14px;
	line-height: 1.8em;
}
	
/* -- ボックス ----------------------------------------------- */
.doc_set {
	padding-top: 80px;
	padding-left: 20px;
	padding-right: 20px;
}
.doc_set_02 {
	padding-left: 20px;
	padding-right: 20px;
}
	
/* -- PC・スマホ 表示、非表示 ----------------------------------------------- */
.pc_none {
	display: inherit;
}
.sp_none {
	display: none;
}
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* container　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#container {
	width: 100%;
	display: inherit;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* ヘッダー　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#header {
	width: 100%;
	height: 60px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	padding-right: 0px;
	background-color: #fffdea;
	border-bottom: 1px solid #4a5d4d;
}
#header_contents {
	width: 100%;
	height: 60px;
	position: relative;
	padding-right: 0px;
	top: 0px;
}

/* -- ロゴ ----------------------------------------------- */
#logo {
	width: auto;
	height: 40px;
	position: absolute;
	left: 10px;
	top: 5px;
	margin-bottom: 0px;
}	
#logo img {
	width: auto;
	height: 50px;
}
	
/* -- ナビ内ロゴ ----------------------------------------------- */
#nav_logo {
	display: inherit;
	text-align: center;
	margin-top: 50px;
}
#nav_logo img {
	width: 120px;
	height: auto;
}
	
/* -- ナビ ----------------------------------------------- */
.header_nav {
	position: absolute;
	right: 0;
	top: 0;
	width: 70%;
	height: 100vh;
	transform: translateX(100%); 
	background-color: #303c32;
	transition: ease .4s;
}
#nav-items {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 0;
	display: inherit;
}
#nav-items li {
	float: none;
	border-left-style: none;
	margin-bottom: 30px;
}
#nav-items li:last-child {
	border-right-style: none;
}
#nav-items li a {
	height: auto;
	line-height: normal;
	color: #FFFFFF;
	display: block;
}
#nav-items li a:hover {
	color: #FFFFFF;
}
	
/* -- ハンバーガーメニュー ----------------------------------------------- */
.hamburger {
	display: block;
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 9999;
	background-color: #303c32;
	border-style: none;
}	
.header__hamburger {
	width: 60px;
	height: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-left: 15px;
	padding-right: 15px;
}

/* ハンバーガーメニューの線 */
.hamburger span {
	width: 100%;
	height: 1px;
	background-color: #FFFFFF;
	position: relative;
	transition: ease .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;
}

/* ハンバーガーメニュークリック後のスタイル */
.hamburger.active {
	background-color: #303c32;
}
.header_nav.active {
  transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -10px;
  transform: rotate(-45deg);
}
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 電話番号表示　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#tel_area {
	position: absolute;
	bottom: 20px;
	left: 20px;
}

/* -- アイコン ----------------------------------------------- */
#tel_icon {
	width: 30px;
}

/* -- テキスト ----------------------------------------------- */
#tel_text {
	padding-left: 10px;
	color: #FFFFFF;
}

/* 連絡先名 */
#tel_about {
	font-size: 12px;
	line-height: 1em;
	margin-bottom: 2px;
}

/* 電話番号 */
#tel_number {
	font-size: 24px;
	line-height: 1em;
}
#tel_number a {
	color: #FFFFFF;
}
	
/* 受付時間 */
#tel_open {
	font-size: 12px;
	line-height: 1em;
}
#tel_open span {
	font-size: 10px;
	padding-left: 3px;
	padding-right: 3px;
	border-radius: 3px;
	margin-right: 10px;
	padding-bottom: 1px;
	padding-top: 0px;
	background-color: #FFFFFF;
	color: #303c32;
}
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* コンテンツエリア　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#contents {
	width: calc(100% - 40px);
	margin-left: 20px;
	margin-right: 20px;
	margin-top: 60px;
}
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* footer　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#footer {
	width: 100%;
}
#ft_logo {
	margin-bottom: 30px;
	width: 240px;
}
#ft_contact {
	margin-top: 30px;
	margin-bottom: 30px;
}
#ft_contact h3 {
	font-size: 16px;
}
#copy {
	font-size: 12px;
}
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* PAGE TOP            　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#page_top {
	bottom: 50px;
	right: 10px;
}
#page_top img {
	width: 50px;
}
}
