﻿@charset "utf-8";
/* CSS Document */
@import url(layout.css);
@import url(font-awesome.min.css);
@import url(all.min.css);


* {
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}

i{
	font-family: Font Awesome\ 5 Free;
	font-style:normal;
}

/*----------------------------------------
共通項目は最下部▼
-----------------------------------------*/
:root {
  --min-width: 1300px;
  /*--base-width: 1300px;*/
}


/*====================================
PC版
=====================================*/
@media print, screen and (min-width: 521px) {

.sp_box {
	display: none !important;
}

body {
	font-size: 18px;
    /*font-size: 16px;*/
	line-height: 1.76;
	margin: 0;
    padding: 0;
	/*background: #F6E2FF;*/
	-webkit-text-size-adjust:100%;
	text-size-adjust:100%;

}

main {
    position: relative;
	min-width: var(--min-width);
}


/*-------------------------------------------
　レイアウト
--------------------------------------------*/
.container {
    width: 100%;
    /*min-width: var(--min-width);*/
    padding: 0 40px;
    margin: 0 auto;
    box-sizing: border-box;
    /*background: #EEE;*/
}

.wrap {
	position: relative;
	width: 100%;
    max-width: 1200px;
    margin: 0 auto;
	/*background: #DDD;*/
}

.row {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    /*background-color: #EEE;*/
}

.row96 {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    /*background-color: #EEE;*/
}



/*--------------------------------------------
　画像
---------------------------------------------*/
img {
	border: none;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
	/*width: 100%;
	height: auto;*/
}

.img_auto {
    width: 100%;
    height: auto;
}



/*--------------------------------------------
　タイトル・テキスト
---------------------------------------------*/
h1, h2, h3, h4, h5 {
    /*line-height: 1.2;*/
    position: relative;
    margin: 0;
}

h1 {
    
}

h2 {
    
}

h3 {
    
}

h4 {

}



/*--------------------------------------------
　ヘッダー
--------------------------------------------*/
header{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    width: 100%;
    height: 90px;
    background-color: #fff;
    border-top: 4px solid #c1162a;
    box-sizing: border-box;
    z-index: 999;
}

.g_menu{
    display: flex;
    height: 100%;
}

.g_menu li{
    height: 100%;
    width: 200px;
    padding: 5px 0px;
    font-size: 18px;
    transition: .3s all ease;
}
.g_menu li a{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}
.g_menu p{
    height: 40px;
    width: 100%;
    text-align: center;
    border-left: 1px solid #ccc;
    transition: .3s all ease;
}
.g_menu li:last-of-type p{
    border-right: 1px solid #ccc;
}
.g_menu li:hover p{
    color: #333;
}
#top{
    position: relative;
    top: -90px;
}





/*------------------------------------------
　フッター
-------------------------------------------*/
footer{
    width: 100%;
    min-width: 1300px;
}
.footer_top{
    width: 100%;
    padding: 100px 0 60px 0;
    background-color: #2e2b22;
}
.ft_container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.company{
    display: flex;
    align-items: center;
    font-size: 30px;
    color: #fff;
    font-family: 'A-OTF Shingo R';
}
.company span{
    position: relative;
    top: 2px;
    margin-right: 10px;
    font-size: 21px;
}

.address{
    margin-top: 30px;
    font-size: 16px;
    color: #fff;
}

.tel{
    margin: auto;
    margin-top: 25px;
    width: 330px;
    height: 60px;
    font-size: 32px;
    text-align: center;
    border-radius: 30px;
    color: #c1162a;
    border: 1px solid #c1162a;
}
.tel span{
    margin-right: 5px;
    font-size: 20px;
}
.ft_container .instagram{
    margin-top: 60px;
}
.footer_bottom{
    padding: 25px;
    background-color: #c1162a;
}
.copyright{
    text-align: center;
    font-size: 12px;
    color: #fff;
}
#about,#business,#contact{
    position: relative;
    top: -90px;
}

/*------------------------------------------
ページのトップへ
-------------------------------------------*/
.page_top{
    display: block;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
}
.page_top.active{
    opacity: 1;
    pointer-events: all;
}


}   /*  PC版ここまで  */






/*===================================
スマホ版
===================================*/
@media only screen and (max-width : 520px ) {

.pc_box {
	display: none !important;
}

.sp_non {
	display: none;
}


body {
	margin: 0;
	padding: 0;
    /*font-size: 0.875rem;*/
	/*font-size: 16px;*/
    /*font-size: 3.8vw;*/
	line-height: 1.74;
}

main {
	/*margin-top: 70px;*/
}


/*------------------------------------------------
　ヘッダー&ナビ
------------------------------------------------*/
header{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    width: 100%;
    height: 48px;
    background-color: #fff;
    border-top: 4px solid #c1162a;
    box-sizing: border-box;
    z-index: 999;
}
.header_logo{
    position: relative;
    height: 22px;
}
.header_logo img{
    position: absolute;
    top: 0;
    width: auto;
    height: 21px;
}

.bar{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    cursor: pointer;
}
.bar span{
    width: 100%;
    height: 3px;
    background-color: #000;
    transition: .3s all ease;
}
.bar.active span:nth-of-type(1){
    transform: rotate(45deg);
    position: absolute;
    top: 10px;
}
.bar.active span:nth-of-type(2){
    opacity: 0;
    position: absolute;
    top: 10px;
}
.bar.active span:nth-of-type(3){
    transform: rotate(-45deg);
    position: absolute;
    top: 10px;
}

.sp_header{
    position: fixed;
    top: -100vh;
    width: 100%;
    height: calc(100vh - 48px);
    background-image: url(../common/menu_base.png);
    background-size: cover;
    z-index: 100;
    transition: .3s all ease;
}
.sp_header.active{
    top: 48px;
}
.sp_header ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    margin-top: 30px;
}
.sp_header li{
    width: 48%;
    margin-bottom: 12px;
    transition: .3s all ease;
}
.sp_header li:hover{
    opacity: 0.8;
}
.sp_header .instagram{
    margin-top: 20px;
    /* width: 10%; */
}
.sp_header .instagram:hover{
    opacity: 0.8;
}
#about,#business,#contact{
    position: relative;
    top: -48px;
}
#top{
    position: relative;
    top: -48px;
}


/*-------------------------------------------
　レイアウト
--------------------------------------------*/
.container {
    width: 100%;
    margin: 0 auto;
}

.wrap {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 0 5%;
	/*background: #C0D1FF;*/
}

.row {
    width: 100%;
    position: relative;
    margin: 0;
    /*background-color: #EEE;*/
}




/*--------------------------------------------
　画像
---------------------------------------------*/
img {
	border: none;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
	width: 100%;
	height: auto;
}



/*--------------------------------------------
　タイトル・テキスト
---------------------------------------------*/
h1, h2, h3, h4, h5 {
    line-height: 1.2;
    position: relative;
    margin: 0;
}

h1 {
    
}

h2 {
    
}

h3 {
   
}

h4 {

}


/*------------------------------------------
　フッター
-------------------------------------------*/
footer{
    width: 100%;
}
.footer_top{
    width: 100%;
    padding: 60px 0 50px 0;
    background-color: #2e2b22;
}
.ft_container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.company{
    display: flex;
    align-items: center;
    font-size: 28px;
    color: #fff;
    font-family: 'A-OTF Shingo R';
}
.company span{
    margin-right: 10px;
    font-size: 21px;
}

.address{
    margin-top: 25px;
    font-size: 16px;
    color: #fff;
}

.tel{
    margin: auto;
    margin-top: 30px;
    width: 330px;
    height: 60px;
    font-size: 32px;
    text-align: center;
    border-radius: 30px;
    color: #c1162a;
    border: 1px solid #c1162a;
}
.tel span{
    margin-right: 5px;
    font-size: 20px;
}
.ft_container .instagram{
    margin-top: 40px;
}
.footer_bottom{
    padding: 5%;
    background-color: #c1162a;
}
.copyright{
    text-align: center;
    font-size: 11px;
    color: #fff;
}



/*------------------------------------------
ページのトップへ
-------------------------------------------*/
.page_top{
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 10;
    width: 40px;
    height: 40px;
    opacity: 0;
    pointer-events: none;
}

.page_top.active{
    opacity: 1;
    pointer-events: all;
}



}  /*  スマホ版ここまで  */










/*---------------------------------------
　共通
---------------------------------------*/


input[type="button"],
input[type="submit"],
input[type="reset"] {
    -webkit-appearance: none;
}

#textarea,
#textfield,
#textfield1,
#textfield2,
#textfield3 {
    border-radius: 4px;
    border: 1px solid #999999;
    padding: 0.32rem 0.4rem 0.2rem 0.4rem;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-feature-settings: "palt";
}

#select {
    border-radius: 4px;
    border: 1px solid #999999;
    /* padding: 0.32rem 0.4rem 0.2rem 0.4rem; */
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-feature-settings: "palt";
}




body {
	font-family: 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt";
}

textarea,input {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-feature-settings: "palt";
}

p, ul, li {
	padding: 0;
	margin: 0;
	list-style: none;
}

p, ul, li {
	text-align: justify;
}

dl, dt, dd {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
	color: #000000;
	text-decoration: none;
	transition: .3s all;
    margin: 0;
    padding: 0;
}

table {
	/*border-collapse: collapse;*/
}


span,
div {
	margin: 0;
	padding: 0;
}

.order01 {
	order: 1;
}

.order02 {
	order: 2;
}

.order03 {
	order: 3;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
}

.none {
    display: none;
}

.no_scroll{
    height: 100vh;
    overflow-y: hidden;
}


