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

body{
	font-family: YakuHanJP, "Helvetica Neue", Arial, "BIZ UDPGothic", "BIZ UDGothic", 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 15px;
	letter-spacing: 0.1em;
	color: #333;
	-webkit-font-smoothing: antialiased;
}
a{
	color: #333;
	text-decoration: none;
	font-family: YakuHanJP, "Helvetica Neue", Arial, "BIZ UDPGothic", "BIZ UDGothic", 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    cursor: pointer;
}
img{
	vertical-align: bottom;
}
li{
	list-style: none;
}
p{
	line-height: 2em;
}
.pc_none{
	display: none;
}
.extra_small{
	display: none;
}


/*ロード完了でふわっとフェードイン表示-------------------------------------------------------*/
body {
    animation: fadeIn 1.5s ease-in 0s 1 normal;
}
@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}


/*--スクロールでフェードイン--*/
.fadein {
  opacity: 0.05;
  transform : translate(0, 50px);
  transition : all 1200ms;
}

.fadein.scrollin{
  opacity: 1;
  transform: translate(0, 0);
}
.fadein_02{
  opacity: 0.05;
  transform : translate(0, 80px);
  transition : all 2100ms;
}

.fadein_02.scrollin{
  opacity: 1;
  transform: translate(0, 0);
}
.fadein_03{
  opacity: 0.05;
  transform : translate(0, 110px);
  transition : all 2900ms;
}

.fadein_03.scrollin{
  opacity: 1;
  transform: translate(0, 0);
}


/*WEB予約こちらから------------------------------*/
.scroll_contact{
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
}
.scroll_contact a{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FF892C;
    color: #fff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    font-size: 13px;
    border: solid 10px #FDAC69;
    transition: .35s;
}
.scroll_contact a:hover{
    opacity: .7;
}
.scroll_contact a p{
    line-height: 1.8em;
}
.scroll_contact a p span{
    font-size: 20px;
}


/*padding------------------------------*/
.pb_10{
	padding-bottom: 10px;
}


/*headerナビゲーション------------------------------*/
.sp_nav{
	display: none;
}
.ichikichi_logo{
	width: 95px;
	height: auto;
	display: inline-block;
	padding-left: 20px;
}
.plus{
	color: #39a2d4;
	font-weight: bold;
	display: inline-block;
	padding-left: 5px;
}
.nav{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
	width: 100%;
	z-index: 1000;
	position: fixed;
    top: 0;
	background-color: rgba(255,255,255,1);
	border-bottom: solid 1px #e6e7ee;
	font-weight: bold;
}
.nav_menu_wrapper{
	display: flex;
	align-items: center;
	padding: 0 15px;
}
.nav_menu_wrapper>li{
	padding: 15px;
}
.nav_menu_wrapper>li a:hover{
	opacity: .6;
}
.nav_menu_wrapper>li a{
	padding: 10px 0;
	transition: .3s;
}
.sub_menu{
	position: absolute;
    left: 0;
    width: 100%;
    top: 70px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
	opacity: 0;
	pointer-events: none;
	background: #e9f6fc;
	transition: 0.5s;
}
.sub-menu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*#menu:checked + .sub_menu_1{
	display: flex;
	opacity: 1;
	pointer-events: auto;
}
#menu2:checked + .sub_menu_2 {
	display: flex;
	opacity: 1;
	pointer-events: auto;
}
#menu3:checked + .sub_menu_3 {
	display: flex;
	opacity: 1;
	pointer-events: auto;
}*/
#menu:hover + .sub_menu_1{
	display: flex;
	opacity: 1;
	pointer-events: auto;
}
#menu2:hover + .sub_menu_2 {
	display: flex;
	opacity: 1;
	pointer-events: auto;
}
#menu3:hover + .sub_menu_3 {
	display: flex;
	opacity: 1;
	pointer-events: auto;
}
#menu:focus + .sub_menu_1{
	display: flex;
	opacity: 1;
	pointer-events: auto;
}
#menu2:focus + .sub_menu_2 {
	display: flex;
	opacity: 1;
	pointer-events: auto;
}
#menu3:focus + .sub_menu_3 {
	display: flex;
	opacity: 1;
	pointer-events: auto;
}
.sub_menu_1:hover{
	display: flex;
	opacity: 1;
	pointer-events: auto;
}
.sub_menu_2:hover{
	display: flex;
	opacity: 1;
	pointer-events: auto;
}
.sub_menu_3:hover{
	display: flex;
	opacity: 1;
	pointer-events: auto;
}
.nav_menu_wrapper input[type="checkbox"]{
  display:none;
}
.dropdown-btn{
	padding: 28px 0;
}
.dropdown-btn:hover{
	cursor: pointer;
}
.sub_menu_box{
	position: relative;
	width: 100%;
    height: 300px;
}
.menu_close{
	position: absolute;
	top: 30px;
	right: 30px;
	width: 40px;
	height: 40px;
	background-color: #fff;
	border-radius: 50%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.menu_close:hover{
	cursor: pointer;
}
.fa-times{
	color: #39a2d4;
	font-size: 26px;
}
.sub_menu_box ul{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 300px;
}
.sub_menu_box ul li{
	padding: 0 25px;
}
.sub_menu_box ul li a{
	display: block;
	padding: 18px 35px 18px 0;
	background-image: url("../img/common/menu_arrow.png");
	background-size: 20px auto;
	background-position: right 2px center;
	background-repeat: no-repeat;
	transition: .4s;
}
.sub_menu_box ul li a:hover{
	background-image: url("../img/common/menu_arrow_blue.png");
	opacity: 1;
	color: #39a2d4;
}
.sub_menu_ttl{
	font-size: 18px;
	color: #18A4E6;
	line-height: 1.7em;
	border-right: solid 1px #18A4E6;
	padding-right: 20px;
	margin-right: 30px;
	min-height: 60px;
	display: flex;
    align-items: center;
}
:hover sub_menu,
.sub_menu.focused {
  opacity: 1;
  visibility: visible;
}


/*btn------------------------------*/
.btn{
	color: #fff;
	font-weight: bold;
	padding: 15px 20px 15px 35px;
	height: 50px;
	box-sizing: border-box;
	border-radius: 25px;
	position: relative;
	line-height: 1.4em;
	display: block;
}
.btn span{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    right: 7px;
    z-index: 0;
    transform: translateY(-50%);
    border-radius: 50%;
    transition: right .4s ease;
}
.btn span::after{
	content: "";
    background: url("../img/common/btn_arrow.png") no-repeat center / contain;
    width: 14px;
    height: 11px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.orange{
	background-color: #FF892C;
	transition: .3s;
}
.orange span{
	background: #FDAC69;
}
.orange:hover{
	background: #FDAC69;
	transition: .3s;
}
.blue{
	background: #18A4E6;
	transition: .3s;
}
.blue span{
	background-color: #58BDED;
}
.blue:hover{
	background: #58BDED;
	transition: .3s;
}
.header_contact{
	width: 170px;
	height: 44px;
	box-sizing: border-box;
	border-radius: 22px;
	display: block;
	transition: .3s;
	line-height: 1em;
	padding-left: 20px;
}
.header_contact:hover{
	background: #FDAC69;
	transition: .3s;
}
.move_right{
	transition: .25s;
}
.header_contact:hover .move_right{
	right: 0;
}
.btn:hover .move_right{
	right: 0;
}
.header_contact span{
	width: 34px;
	height: 34px;
	background: #FDAC69;
}
.header_contact_wrapper{
	margin-right: 20px;
}


/*ページタイトル------------------------------*/
.page_ttl{
	margin-top: 71px;
	margin-bottom: 40px;
	position: relative;
}
.page_ttl::before {
    content: "";
    width: 90%;
    height: 80%;
    background: #EFF2F9;
    position: absolute;
    left: 0;
    top: 0;
    transform-origin: left bottom;
    transform: rotate(-30deg);
	z-index: 1;
}
.page_ttl_flex{
	padding: 5% 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-height: 500px;
	min-height: 350px;
	width: 80%;
	margin: 0 auto;
	position: relative;
    z-index: 5;
	max-width: 1500px;
}
.page_ttl_flex>p{
	display: block;
	width: 22%;
	height: auto;
	max-width: 400px;
}
.page_ttl_flex>p img{
	width: 100%;
	height: auto;
}
.page_ttl_flex h1{
	padding-right: 5%;
	color: #18A4E6;
	font-size: 48px;
	text-align: right;
	line-height: 1.4em;
}
.page_ttl_flex h1 span{
	display: block;
	font-size: 20px;
	padding-bottom: 30px;
}
.brackets{
	display: inline-block!important;
	font-size: 28px!important;
	padding-bottom: 0!important;
	padding-left: 5px;
}


/*パンくず------------------------------*/
.pankuzu{
	padding: 30px 0 30px 4%;
	font-size: 14px;
}
.pankuzu span{
	color: #18A4E6;	
}
.pankuzu a{
	transition: .3s;
}
.pankuzu a:hover{
	color: #FF892C;
}


/*footer------------------------------*/
.footer_contact{
	padding: 60px;
	background-color: #f8f8f8;
	margin-bottom: 60px;
}
.footer_contact>p{
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 25px;
	position: relative;
	line-height: 1em;
	margin-bottom: 30px;
}
.footer_contact>p::after{
	position: absolute;
	content: '';
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 64px;
	height: 3px;
	background-color: #18A4E6;
}
.footer_contact_btn{
	display: block;
	max-width: 490px;
	margin: 0 auto;
	position: relative;
	color: #fff;
	font-size: 24px;
}
.footer_contact_btn a{
	display: block;
	color: #fff;
	height: 84px;
	border-radius: 42px;
	width: 100%;
	box-sizing: border-box;
	font-weight: bold;
	transition: .35s;
    padding-top: 16px;
}
.footer_contact_btn:last-of-type a{
	line-height: 84px;
    padding-top: 0;
}
.footer_contact_btn a:hover{
	opacity: .7;
}
.footer_contact_btn a span{
    display: block;
    font-size: 16px;
    padding-bottom: 10px;
}
.footer_contact_btn p{
	position: absolute;
	width: 16%;
	height: auto;
	bottom: 0;
	left: 10%;
}
.footer_contact_btn:first-of-type p{
	width: 22%;
	height: auto;
	bottom: 0;
	right: 10%;
	left: auto;
}
.footer_contact_btn:last-child p{
	width: 27%;
	height: auto;
	bottom: 0;
	right: 4%;
	left: auto;
}
.footer_contact_btn p img{
	width: 100%;
	height: auto;
}
.footer_contact_reservation{
	background-color: #18A4E6;
	text-align: right;
	padding-right: 70px;
	margin-top: 70px;
}
.footer_contact_mailform{
	background-color: #FF892C;
	padding-left: 50px;
	margin-top: 60px;
}
.footer_contact_mailform:first-of-type{
    padding-left: 70px;
}
.footer_sitemap{
	color: #444;
}
.footer_sitemap_flex{
	display: flex;
	justify-content: space-between;
	width: 75%;
	margin: 0 auto;
	max-width: 900px;
	margin-bottom: 50px;
}
.bold{
	font-weight: bold;
	margin-bottom: 10px;
}
.footer_sitemap_flex ul li a{
	line-height: 1.6em;
	padding: 5px 0;
	display: inline-block;
	transition: .3s;
}
.footer_sitemap_flex ul li a:hover{
	opacity: .6;
}
.footer_info{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	width: 75%;
	margin: 0 auto;
	max-width: 900px;
	margin-bottom: 30px;
}
.footer_logo{
	width: 100px;
	height: auto;
	padding-right: 25px;
}
.footer_info_left{
	display: flex;
	align-items: flex-end;
}
.footer_info_left>p{
	font-size: 14px;
	line-height: 1.6em;
}
.privacy{
	font-size: 13px;
	transition: .3s;
}
.privacy:hover{
	opacity: .6;
}
.footer_copyright{
	background-color: #858c8f;
	color: #fff;
	text-align: center;
	font-size: 12px;
	padding: 12px 0;
}
.sp_footer_sitemap{
	display: none;
}
@media screen and (max-width:1400px){
.ttl_font_size{
    padding-right: 0!important;
    font-size: 37px!important;
}
}

@media screen and (max-width:1500px){
.ttl_font_size_small{
	font-size: 32px!important;
}	
}

@media screen and (max-width:1200px){
.nav_menu_wrapper>li {
    padding: 10px 6px;
    font-size: 14px;
}
.ichikichi_logo{
    width: 75px;
}
.footer_sitemap_flex{
	font-size: 14px;
}
}


@media print, screen and (max-width: 970px) {
body{
	font-size: 16px;
}

.pc_none{
	display: block;
}
.sp_none{
	display: none;
}

	
/*--スクロールでフェードイン--*/
.fadein {
  opacity: 0.05;
  transform : translate(0, 40px);
  transition : all 1200ms;
}
.fadein_02{
  opacity: 0.05;
  transform : translate(0, 40px);
  transition : all 1200ms;
}
.fadein_03{
  opacity: 0.05;
  transform : translate(0, 40px);
  transition : all 1200ms;
}

	
/*headerナビゲーション------------------------------*/
.sp_nav{
	display: block;
	width: 100%;
	height: 66px;
	position: fixed;
	background-color: rgba(255,255,255,1);
	z-index: 100;
	border-bottom: solid 1px #e6e7ee;
}
.nav{
	display: none;
}
.sp_nav_logo{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 15px;
	width: 80px;
}
.ichikichi_logo {
    width: 100%;
    padding-left: 0px;
}
/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 13px;
  top   : 9px;
  width : 48px;
  height: 48px;
  cursor: pointer;
  text-align: center;
  background-color: #FF892C;
  border-radius: 50%;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 18px;
  height  : 2px ;
  left    : 50%;
	transform: translateX(-50%);
  background : #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 18px;
}
.hamburger span:nth-child(2) {
  top: 24px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 24px;
  left: 15px;
  background: #FF892C;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
  display: none;
}

.hamburger.active span:nth-child(3) {
  top: 24px;
  left: 15px;
  background: #FF892C;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}
.hamburger.active {
	background-color: transparent;
	border: solid 2px #FF892C;
}
nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #333;
  background: rgba(255,255,255,0.96);
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s ease, visibility .6s ease;
  height: 100%;
  overflow-y: scroll;  
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 80px 0 60px 8%;
  width: 100%;
	box-sizing: border-box;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
  font-size: 17px;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #333;
  padding: 1.2em 0;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    opacity: 1;
    pointer-events: auto;
}	
	
.acd-check{
    display: none;
}
.acd-label{
    display: block;
    margin-bottom: 1px;
    padding: 1em 0;
	width: max-content;
	position: relative;
	transition: .3s;
}
.acd-label::after{
    box-sizing: border-box;
    content: '＋';
    display: block;
    font-family: "";
    position: absolute;
    right: -24px;
    top: 15px;
	font-weight: bold;
	color: #18A4E6;
	transition: .3s;
}
.acd-check:checked + .acd-label::after{
    content: '−';
}
.acd-content{
    height: 0;
    opacity: 0;
    padding: 0 5px;
    transition: .5s;
    visibility: hidden;
}
.acd-check:checked + .acd-label + .acd-content{
    height: auto;
    opacity: 1;
    visibility: visible;
}	
nav.globalMenuSp ul li .header_contact {
    width: 250px;
    height: 60px;
    box-sizing: border-box;
    border-radius: 30px;
    display: block;
    transition: .3s;
    line-height: 1em;
    padding-left: 30px;
	margin-top: 10px;
	color: #fff;
}	
nav.globalMenuSp ul li .header_contact span {
    width: 48px;
    height: 48px;
    background: #FDAC69;
}
nav.globalMenuSp ul li .header_contact span::after {
    content: "";
    background: url(../img/common/btn_arrow.png) no-repeat center / contain;
    width: 20px;
    height: 17px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.acd-content a{
	font-size: 15px;
	padding: 0.8em 0!important;
}
	
	
/*btn------------------------------*/
.btn{
	padding: 15px 20px 15px 35px;
	height: 56px;
	border-radius: 28px;
	line-height: 1.9em;
}
.btn span{
    width: 44px;
    height: 44px;
    right: 8px;
}
.btn span::after{
    width: 18px;
    height: 14px;
}
	
	
/*パンくず------------------------------*/
.pankuzu{
	padding: 25px 0 25px 5%;
	font-size: 14px;
}
	
	
/*footer------------------------------*/
.footer_contact {
    padding: 45px 6%;
    margin-bottom: 40px;
}	
.footer_contact>p {
    font-size: 16px;
    padding-bottom: 25px;
    margin-bottom: 0;
}	
.footer_contact_btn a {
    height: 76px;
    border-radius: 50px;
}	
.footer_contact_btn{
	font-size: 18px;
	max-width: 350px;
}	
.footer_contact_reservation {
    padding-right: 10%;
    margin-top: 50px;
}	
.footer_contact_btn p{
	width: 20%;
}	
.footer_contact_mailform {
    padding-left: 10%;
    margin-top: 35px;
}	
.footer_contact_mailform:first-of-type {
    padding-left: 40px;
}
.footer_contact_btn:last-child p {
    width: 30%;
    right: 1%;
    left: auto;
}	
.footer_contact_btn:last-of-type a {
    line-height: 76px;
}
.footer_sitemap_flex{
	display: none;
}	
.sp_footer_sitemap{
	display: block;
	padding-bottom: 30px;
}
.footer_sitemap{
	padding: 0 8%;
}	
footer .acd-label{
    display: block;
    margin-bottom: 1px;
    padding: 0.7em 0;
    width: max-content;
    position: relative;
    transition: .3s;
}	
.sp_footer_sitemap>li{
	font-size: 14px;
	font-weight: normal;
}	
.sp_footer_sitemap>li>a{
	padding: 0.7em 0;
	display: block;
}	
footer .acd-label::after {
    box-sizing: border-box;
    content: '＋';
    display: block;
    font-family: "";
    position: absolute;
    right: -24px;
    top: 9px;
    font-weight: bold;
    color: #18A4E6;
    transition: .3s;
}	
footer .acd-content a {
    font-size: 14px;
    padding: 0.6em 0!important;
	display: block;
	font-weight: normal!important;
}
footer .acd-content{
	padding-left: 10px;
}
.footer_info {
    display: block;
    width: 100%;
    margin: 0 auto;
    max-width: 900px;
    margin-bottom: 30px;
}	
.footer_info_left {
    display: block;
}	
.footer_logo {
    width: 38%;
    height: auto;
    padding-right: 0;
    padding-bottom: 20px;
	max-width: 120px;
}	
.footer_info_left>p{
	padding-bottom: 20px;
}	
.footer_copyright{
	font-size: 10px;
	letter-spacing: 0.02em;
}
	
	
/*ページタイトル------------------------------*/
.page_ttl{
	margin-top: 0;
	margin-bottom: 12%;
}
.page_ttl::before {
    content: "";
    width: 100%;
    height: 60%;
    top: 67px;
    transform: rotate(-40deg);
}
.page_ttl_flex{
	padding: 67px 10% 0 10%;
	display: block;
	max-height: none;
	min-height: auto;
	width: 100%;
	box-sizing: border-box;
}
.page_ttl_flex>p{
	display: block;
	width: 42%;
	height: auto;
	max-width: 200px;
	padding-top: 10%;
	padding-bottom: 0;
}
.page_ttl_flex>p img{
	width: 100%;
	height: auto;
}
.page_ttl_flex h1{
	padding-right: 0;
	font-size: 32px;
}
.page_ttl_flex h1 span{
	font-size: 16px;
	padding-bottom: 10px;
}
.ttl_font_size {
    font-size: 28px!important;
}	
.ttl_font_size_small{
    font-size: 19px!important;
}
.ttl_font_size_small span{
	line-height: 1.4em;
	padding-top: 15px;
}
.brackets {
    padding-left: 0;
	display: block!important;
	padding-top: 5px!important;
	font-size: 18px!important;
}	
	
	
/*こちらからもご予約可能です------------------------------*/
.scroll_contact {
    right: auto;
    left: 10px;
    bottom: 10px;
}
.scroll_contact a{
    width: 100px;
    height: 100px;
    border: solid 6px #FDAC69;
}
.scroll_contact a p{
    line-height: 1.6em;
    letter-spacing: 0.05em;
}
.scroll_contact a p span{
    font-size: 15px;
}
	
	
	
	
	
	










































}

@media print, screen and (max-width: 365px){
.ttl_font_size_small {
    font-size: 16px!important;
}
.extra_small{
	display: block;
}
nav.globalMenuSp ul li {
    font-size: 15px;
}
nav.globalMenuSp ul li .header_contact{
	line-height: 60px;
	padding: 0 0 0 30px;
}
.acd-content a {
    font-size: 13px;
    padding: 0.8em 0!important;
}	
.footer_contact_btn {
    font-size: 16px;
}	
footer .acd-content a{
	font-size: 13px;
}	
.footer_contact>p {
    line-height: 1.4em;
}
.pankuzu {
    line-height: 1.4em;
}	
	
}
