@charset "utf-8";
/* CSS Document */

* {
	line-height: 1;
}

html {
  scroll-padding-top:0px;
	scroll-behavior: smooth;
}

img {
    border: 0;
    vertical-align: top;
	object-fit: cover;
}


/*clearfix*/
.clearfix:after{
	content: " ";
	display: block;
	visibility: hidden;
	clear: both;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
}
* html .clearfix{
	display: inline-block;
}
/* no ie mac \*/
* html .clearfix{
	height: 1%;
}
.clearfix{
	display: block;
}
.clearfix{
  overflow:hidden;
}
/* Hides from IE-mac \*/
* html .clearfix{
  height:1%;
	overflow-x : hidden;
}

* {
	box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
word-wrap: break-word;
}

/*body*/

body {
width: 100%;
	-webkit-text-size-adjust: 100%;
	}


li {
	list-style-type: none;
}

a {
	text-decoration: none;
	transition: .5s;
}

a:hover {
	opacity: 0.75;
	transition: .5s;
}


.contents-box {
	clear: both;
	margin-right: auto;
	margin-left: auto;
    font-family: var(--base-font);
	color : var(--color-base);
	font-size: var(--base-font-size);
    font-weight: var(--base-weight);
	line-height: 1;
}

.contents-box p {
    font-family: var(--base-font);
	color : var(--color-base);
    font-size: var(--base-font-size);
    font-weight: var(--base-weight);
	line-height: 1.8;
	letter-spacing: 0.05em;
}


.contents-box a {
	color : var(--color-main);
}

.contents-box p a {
	color : var(--color-main);
}

/* basefont */
:root {
  --base-font: "Noto Sans JP", sans-serif;
  --title-font: "Zen Maru Gothic", sans-serif;
  --subtitle-font: "Josefin Sans", sans-serif;
  --number-font: "M PLUS Rounded 1c", sans-serif;
	
  --base-font-size: 16px;
	
  --base-weight: 400;
  --base-weight2: 500;
  --base-weight3: 600;
	
  --color-base: #000;
  --color-base2: #666666;
  --color-main: #f29600;
  --color-sub: #ceb197;
  --color-back01: #fef8ef;
  --color-back02: #f2f1f1;
  --color-back03: rgba(122,99,86,0.15);
  --color-back04: rgba(254,242,220,0.55);
}

/* animation_box */

.animation_box {
  transition: 1s ease;
	opacity: 0;
	transition-delay: .5s;
	transform: translate(0px, 0px);
}

.animation_box2 {
	transition-delay: 1s;
}

.animation_box3 {
	transition-delay: 1.5s;
}

.animation_box4 {
	transition-delay: 2s;
}

.animation_box-top {
	transform: translateY(50px);
}

.animation_box-bottom {
	transform: translateY(-50px);
}

.animation_box-left {
	transform: translateX(-50px);
}

.animation_box-right {
	transform: translateX(50px);
}

.animation_box.effect {
	opacity: 1;
	transform: translate(0px, 0px);
}


/*header*/

.header {
	width: 100%;
	position: relative;
}

.header h1 {
	position: absolute;
left: 20px;
top: 20px;
}

/*banner-digisma*/

#banner-digisma {
        position: fixed;
        top: 0px;
        right: 0px;
        display: flex;
        justify-content: flex-end;
        z-index: 999;
    }

#banner-digisma .box02 {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}


/*メニュー部分*/
nav{
	display: none;
	position: fixed; 
    top: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    left: 0;
    text-align: center;
	}

nav div {
		width: 100%;
		height:100%;
    display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
    flex-direction: column;
    gap:50px;
	}

.contents-box nav h2 {
    width: 200px;
}

.contents-box nav h2 img{
    width: 100%;
height: auto;
}

nav ul {
    gap: 15px 10px;
    width: 350px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}

nav ul li a {
color: var(--color-main);
font-weight: var(--base-weight);
    line-height: 1.2;
    letter-spacing: 0.1em;
    width: 100%;
    padding: 15px 0px;
    display: block;
    border-style: solid;
	border-radius: 5px;
    border-color: var(--color-main);
    border-width: 1px;
    transition: .5s;
    text-align: center;
}

nav ul li a:hover {
background-color: var(--color-main);
   color: #FFF;
}


/*開閉ボタン*/
#nav_toggle{
		display: fixed;
		width: 80px;
		height: 80px;
		top: 0px;
		right: 0px;
		z-index: 10000000;
		background-color: var(--color-main);
		padding: 26px 20px;
		
	}

#nav_toggle div {
		position: relative;
	}
#nav_toggle span{
		display: block;
		height: 1px;
		background: #FFF;
		position:absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;	
	}
	#nav_toggle span:nth-child(1){
		top:0px;
	}
	#nav_toggle span:nth-child(2){
		top:12px;
	}
	#nav_toggle span:nth-child(3){
		top:24px;
	}
	
	/*開閉ボタンopen時*/
	.open #nav_toggle span:nth-child(1) {
			top: 12px;
		   -webkit-transform: rotate(135deg);
			-moz-transform: rotate(135deg);
			transform: rotate(135deg);
		}
		.open #nav_toggle span:nth-child(2) {
			width: 0;
			left: 50%;
		}
		.open #nav_toggle span:nth-child(3) {
			top: 12px;
			-webkit-transform: rotate(-135deg);
			-moz-transform: rotate(-135deg);
			transform: rotate(-135deg);
		}



/* lay */


.lay-1200 {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.lay-85 {
    width: 85%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.lay-90 {
    width: 90%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/*pagetop_btn*/

.pagetop_btn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 15px;
    z-index: 100;
}

.pagetop_btn a {
    display: block;
    background : #666;
    text-align: center;
    color: #FFF;
    font-size: 24px;
    text-decoration: none;
    padding: 10px 10px;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
	border-radius: 5px;
}

.pagetop_btn a:hover {
	filter: alpha(opacity=75);
    -moz-opacity: 0.75;
    opacity: 0.75;
}


/*footer-link*/

.footer-link {
	width: 100%;
	text-align: center;
	background-color: #FFF;
	position: fixed;
	left: 0px;
	bottom: 0px;
	display: none;
}

.footer-link ul {
	display: flex;
  justify-content: center;
align-items: center;
    text-align: center;
}

.footer-link ul li {
	width: 42.5%;
}

.footer-link ul li:last-child {
	width: 15%;
}

.footer-link ul li a {
	display: block;
}

.footer-link ul li:nth-child(1) a {
	background-color: #ff7789;
}

.footer-link ul li:nth-child(2) a {
	background-color: var(--color-main);
}

.footer-link ul li:nth-child(3) a {
	background-color: #585858;
}

.footer-link ul li img {
	width: 100%;
height: auto;
    max-width: 158px;
}

.footer-link ul li:last-child img {
    max-width: 55px;
}


/*foter*/

footer {
	width: 100%;
	text-align: center;
	padding-top: 50px;
}

footer h2 img {
	height: 170px;
	width: auto;
}

/*footer-guide*/

.footer-guide {
	width: 650px;
	display: flex;
  justify-content: space-between;
flex-wrap: wrap;
	align-items: center;
	padding: 50px 0px;
}

.footer-guide img {
	width: 100%;
height: auto;
}

.footer-guide .box01 {
	flex: 1;
	text-align: left;
}

.footer-guide .box02 {
	width: 180px;
}

.footer-guide h5, .footer-guide h5 a {
	font-family: var(--number-font);
    color: var(--color-main);
    font-weight: var(--base-weight);
	font-size: 31px;
	line-height: 1.2;
	letter-spacing: 0.05em;
}

.footer-guide h5 {
	display: inline-block;
	padding-left: 100px;
	position: relative;
}

.footer-guide h5:not(:last-child) {
	margin-bottom: 10px;
}

.footer-guide h5 a {
	opacity: 1;
}

.footer-guide h5::before {
	content: "";
	position: absolute;
left: 0px;
top: 8px;
    font-family: var(--base-font);
	font-size: 18px;
}

.footer-guide h5:nth-child(1)::before {
	content: "電話番号";
}

.footer-guide h5:nth-child(2)::before {
	content: "FAX番号";
}

/*subcontents-map*/

.subcontents-map {
	width: 100%;
}

.map-address {
	padding: 20px 0px;
	display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
	gap:0px 40px;
	background-color : var(--color-back04);
}

.map-box, .map-box iframe {
	width: 100%;
	height: 400px;
}

.subcontents-map h4 {
color: var(--color-base2);
font-weight: var(--base-weight);
line-height: 1.2;
    letter-spacing: 0.05em;
}

/*footer*/

.footer p {
	font-size: 11px;
color: var(--color-base2);
line-height: 1.2;
	padding: 20px 0px;
}

/*group01*/
.group01 { 
    width: 100%;
    clear: both;
    text-align: center;
    padding: 70px 0px 0px;
}


.group01 p{
     font-family: var(--title-font);
     color: var(--color-main);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
	font-size: 36px;
}

.box-link {
	display: flex;
	justify-content: center; /* 中央寄せ */
	gap: 30px;               /* バナー間の隙間 */
	width: 100%;
	margin-bottom: 50px;
	text-align: center;
}


.box02 .box-link.contents-box:nth-of-type(2) {
    margin-bottom: 0px;
}


/**
 * for SmartPhone
 */
@media screen and (min-width: 768px) {
	
	body {
	min-width: 1280px;
	}
	
a[href^="tel:"] {
    pointer-events: none;
}

#header .sp-view {
	display: none;
}
	

}
@media screen and (max-width: 767px) {
   
html {
  scroll-padding-top:0px;
}

/* basefont */
:root {
  --base-font-size: 14px;
}
    
.contents-box p br.sp-view {
	display: inline-block;
}


/*header*/

	
.header h1 {
left: 10px;
top: 10px;
}
	
.header h1 img {
	height: 43px;
	width: auto;
}


	
/*開閉ボタン*/
#nav_toggle{
		width: 48px;
		height: 48px;
		padding: 16px 10px 0px;
		margin-right: 0px;
		margin-top: 0px;
	}
	#nav_toggle span:nth-child(1){
		top:-2px;
	}
	#nav_toggle span:nth-child(2){
		top:7px;
	}
	#nav_toggle span:nth-child(3){
		top:16px;
	}
    
    /*開閉ボタンopen時*/
	.open #nav_toggle span:nth-child(1) {
			top: 7px;
		}
		.open #nav_toggle span:nth-child(3) {
			top: 7px;
		}
	

#banner-digisma nav div h2 img{
	height: 100px;
	width: auto;
	}
    

nav div {
    padding-top: 60px;
    gap:40px;
  justify-content: flex-start;
	}

nav ul{
width: 280px;
}
	
nav ul li a {
		font-size: 14px;
	}
	
	nav ul li a {
		padding: 10px 15px;
	}

	

/*lay*/


.lay-1200, .lay-85, .lay-90 {
    width: 88%;
}
    
/*footer-link*/

.footer-link {
	display: block;
}
	
	

/*btn-top*/
	
	.pagetop_btn {
		bottom: 65px;
		right: 10px;
	}


/*foter*/

footer {
    padding-top: 40px;
}

footer h2 img {
	height: 120px;
}

/*footer-guide*/

.footer-guide {
	width: 92%;
  justify-content: center;
	padding: 40px 0px;
	gap:20px;
}

.footer-guide .box01 {
	width: 100%;
	text-align: center;
}
    
.footer-guide .box02 {
	width: 100%;
}
    
.footer-guide .box02 img {
	width: 140px;
}

.footer-guide h5, .footer-guide h5 a {
	font-size: 27px;
}

.footer-guide h5 {
	padding-left: 80px;
    text-align: left;
    width: 330px;
}

.footer-guide h5::before {
top: 8px;
	font-size: 15px;
}


/*subcontents-map*/

.map-address {
	padding: 20px 0px;
	gap:10px 40px;
	flex-direction: column;
}

.map-box, .map-box iframe {
	width: 100%;
	height: 200px;
}

.subcontents-map h3 {
	border-right-style : none;
	padding-right: 0px;
}

.subcontents-map h4 {
line-height: 1.6;
}

/*footer*/
	
.footer {
	padding-bottom: 60px;
}

.footer p {
	font-size: 10px;
}
	
/*group01*/
.group01 { 
    padding: 40px 0px 0px;
}

.group01 p{
	font-size: 24px;
    margin-bottom: 8px;
}
	
.box-link {
    display: flex;              /* 念のため指定 */
    flex-direction: column;     /* 縦並び */
    align-items: center;        /* 中央寄せ */
    gap: 16px;                  /* 縦の余白 */
    width: 90%;
    margin: 0 auto 30px;
  }
	
.box02 .box-link.contents-box:nth-of-type(2) {
    margin-bottom: 0px;
}
	
.box-link img {
        width: 100%;
        height: auto;
    }			
	


      
}
