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

html {
    overflow-y: scroll;
	overflow-x: hidden;
	font-size: 62.5%;
}

@media print{
   /*アニメーションOFF*/
	
	.fadeUpTrigger{
        opacity: 1.0 !important;
	}

	.fadeUp{
        opacity: 1.0 !important;
	}

    
   /*印刷用CSSで適用させる定義を記述*/
    html {
        transform: scale(0.8);
        transform-origin: left top;
        width: calc(100% / 0.8);
        height: calc(100% / 0.8);
        overflow-y: auto;
    }  
}

/*
@media screen and (max-width: 1700px) {
  html {
	font-size:90%;
	}
}

@media screen and (max-width: 1400px) {
  html {
	font-size:87.5%;
	}
}

@media screen and (max-width: 1300px) {
  html {
	font-size:85%;
	}
}

@media screen and (max-width: 1200px) {
  html {
	font-size:72.5%;
	}
}
*/

body {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 1.6rem;
	-webkit-text-size-adjust: 100%;
	/*-webkit-text-size-adjust: none;*/
	line-height: 1.5;
	color: #000000;
	overflow: hidden;
}

html.is-open {
	overflow: hidden;
}

.noto-sans-jp-400 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.noto-sans-jp-500 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.noto-sans-jp-700 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.audiowide-regular {
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
}


*{
	margin: 0;
	padding: 0;
    word-break: break-all;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: top;
	vertical-align: bottom;
}
.pc_hide {
	display: none !important;
}

.sp_hide {
}

a {
	outline: none;
	color: #000000;
	text-decoration:none;	
	opacity: 1;
    transition: all 0.5s;
}

a:hover {
	opacity: 0.6;
}

a.disabled{
    pointer-events: none;
}

h1,
h2,
h3,
h4{
	font-size: 100%;
	font-weight: 500;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"], input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}


select::-ms-expand {
    display: none;
}

a.tel-link{
	pointer-events: none;
}

ol, ul {
    list-style: none;
	box-sizing: border-box;
}

/*===================================
	仕様
=====================================*/

.down-to-top02 {
	opacity: 0;
	transform: translateY(100px);
	transition: all 1s;
}

.down-to-top02.scrollin {
	opacity: 1;
	transform: translateY(0);
}

/* 下から */

.fadeUpTrigger{
	opacity: 0;
}


.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

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

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

/*===================================
	#header_wrap
=====================================*/

#header_wrap{
	width: 100%;
	height: 100px;
	background: rgba(255,255,255,0.85);
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

#header_wrap h1{
	width: 28.4459%;/*421*/
	margin-left: 3.5135%;/*52*/
}

#header_wrap h1 img{
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: calc(100px * 0.82 );
	object-fit: contain;
}

#header_wrap .head_contact{
	width: 8.8513%;/*131*/
	height: 100%;
}

#header_wrap .head_contact a{
	display: flex;
	justify-content: center;
	align-items: flex-end;
	width: 100%;
	height: 100%;
	background: url("images/common/mail_ico.webp")no-repeat #e81c24 center top 15px;
	font-size: min(1.08vw, 1.6rem);
	line-height: 1;
	letter-spacing: 0.1em;
	color: #fff;
	padding-bottom: 17px;
	box-sizing: border-box;
}

.gtranslate_wrapper{
	margin-top: 25px;
	position: absolute;
	right: 10.8108%;/*160*/
}

/*===================================
	#footer_wrap
=====================================*/

#footer_wrap{
	padding: 55px 0 58px;
	background: #edf2f4;
}

#footer_wrap .foot_logo{
	width: 28.4459%;/*421*/
	margin: 0 auto;
}

#footer_wrap .foot_logo a{
	display: flex;
	justify-content: center;
	width: 100%;
}

#footer_wrap .foot_logo img{
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: calc(100px * 0.82 );
	object-fit: contain;
}

#footer_wrap p.copy_txt{
	padding-top: 65px;
	font-size: min(0.88vw, 1.3rem);
	line-height: 1;
	color: #000;
	text-align: center;
}

/*===================================
	#footer_wrap
=====================================*/

.totop{
	display: none;
	width: 69px;
	position: fixed;
	bottom: 39px;
	right: 3px;
	z-index: 100;
}

.totop img{
	width: 100%;
	height: auto;
}