@charset "UTF-8";

/*-----------共通部分----------------*/

html {
	font-size: 100%;
}

body {
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体"、"ヒラギノ角ゴ Pro W3", sans-serif;
	line-height: 1.7;
	color: #fff;
	position: relative;
}

a {
	text-decoration: none;
}

img {
	max-width: 100%;
}

#wrapper {
	position: absolute;
	width: 100%;
	


	overflow-x: hidden;
	/*画面いっぱい時のスクロール非表示*/
}

/*------------ヘッダー--------------*/


/*トップエリア*/
.top-area {
	display: flex;
	justify-content: space-around;
	background: linear-gradient(to bottom, #047e96 10%, #83ccd2 20%, #ffffff 30%);
	width: 100%;
	padding: 3px 50px 0;
}

.top-area-p {
	font-size: 90%;
	height: 28px;
	padding: 23px 50px 0 0;
	color: #1c2541;
}

.top-area-item {
	height: 28px;
	margin: 20px 50px;
	color: #fff;
	border-radius: 7px;
	padding: 3px;
}

.tel {
	width: 333px;
	background: #1c2541 url(../images/tel.png) no-repeat left 1% top 50%;
	background-size: 20px;
	padding-left: 25px;
	margin-left: 0;
}

a[href^="tel:"] {
	pointer-events:none;
	color: #fff;
}

/* moはモバイルで表示用 */
.top-area-item-mo {
	display: none;
	height: 28px;
	margin: 20px 50px;
	color: #fff;
	border-radius: 7px;
	padding: 3px;
}

.tel-mo {
	display: none;
	width: 333px;
	background: #1c2541 url(../images/tel.png) no-repeat left 1% top 50%;
	background-size: 20px;
	padding-left: 25px;
	margin-left: 0;
}

/* .mail {
	width: 180px;
	background: #494c64 url(../images/mail.png) no-repeat left 3% top 50%;
	background-size: 20px;
	padding-left: 25px;
	transition: all .6s 0s ease;
}

.mail:hover {
	background: #272936;
} */

.top-area-a {
	text-decoration: none;
	color: #fff;
}




/*ナビゲーション部分*/

#fixednav {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 0 30px;
	background: #fff;
	/* position: relative; */
}

#fixednav.fixed {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
}

#fixednav {
	display: flex;
	justify-content: space-around;
}

.nav-logo {
	max-width: 200px;
	min-width: 10%;
	position: relative;
}

.nav {
	padding-top: 40px;
	margin-left: 30px;
}

.nav ul {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
	position: relative;
	list-style: none;
}

.nav li {
	margin-right: 35px;
}

.nav a {
	color: #047e96;
	font-size: 110%;
	font-weight: bold;
	letter-spacing: 0.1em;
	position: relative;
	display: inline-block;
	text-decoration: none;
}

.nav a::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #333;
	transform: scale(0,1);
	transform-origin: center top;
	transition: transform .3s;
}

.nav a:hover {
	color: #432;
}

.nav a:hover::after {
	transform: scale(1,1);
}



.hamburger {
	display: none;
}



/*------------メイン--------------*/

.bg-sands {
	background: rgba(11, 19, 43);
	width: 100%;
	position: relative;
	margin-top: 35px;
}

/* .bg-sands::before {
	content: "";
	position: absolute;
	top: -75px;
	background: url(../images/wave-top0.2.png) center top repeat-x;
	display: block;
	height: 75px;
	left: 0;
	right: 0;
} */


.main-wrapper {
	max-width: 1100px;
	padding: 0 0 50px;
	margin: 0 auto;
}


/*メインビジュアル*/
img {
	max-width: 100%;
	padding-top: 10px;
	height: auto;
}

.keyvisual {
	margin: 0, 0, 40px, 0;
	margin-bottom: 20px;
	padding: 0;
}

/* スライドショー */
.img-frame{
	position: relative;
	width: 100%;
	height: 710px;
	overflow: hidden;
	margin: 0 auto;
   }

.img-01, .img-02, .img-03, .img-04, 
.img-05, .img-06, .img-07, .img-08{
   position: absolute;
   top:0;
   left:0;
   width: 100%;
   height: 100%;
   background-size: cover;
   background-repeat: no-repeat;
}
.img-01{
   background-image: url(../images/key01.jpg);
   animation: slide-animation-01 40s infinite;
}
.img-02{
   background-image: url(../images/key02.jpg);
   animation: slide-animation-02 40s infinite;
}
.img-03{
   background-image: url(../images/key03.jpg);
   animation: slide-animation-03 40s infinite;
}
.img-04{
   background-image: url(../images/key04.jpg);
   animation: slide-animation-04 40s infinite;
}
.img-05{
   background-image: url(../images/key05.jpg);
   animation: slide-animation-05 40s infinite;
}
.img-06{
   background-image: url(../images/key06.jpg);
   animation: slide-animation-06 40s infinite;
}
.img-07{
   background-image: url(../images/key07.jpg);
   animation: slide-animation-07 40s infinite;
}
.img-08{
   background-image: url(../images/key08.jpg);
   animation: slide-animation-08 40s infinite;
}

@keyframes slide-animation-01 {
    0% {opacity: 1; transform: scale(1.0);}
  12% {opacity: 1;}
  15% {opacity: 0; transform: scale(1.15);}
  90% {opacity: 0}
100% {opacity: 1; transform: scale(1.0);}
}
@keyframes slide-animation-02 {
    0% {opacity: 0;}
  12% {opacity: 0; transform: scale(1.1);}
  15% {opacity: 1;}
  23% {opacity: 1;}
  28% {opacity: 0; transform: scale(1.0);}
100% {opacity: 0;}
}
@keyframes slide-animation-03 {
    0% {opacity: 0;}
  23% {opacity: 0;  transform: scale(1.2);}
  28% {opacity: 1;}
  33% {opacity: 1;}
  38% {opacity: 0; transform: scale(1.0);}
100% {opacity: 0;}
}
@keyframes slide-animation-04 {
    0% {opacity: 0;}
  33% {opacity: 0;  transform: scale(1.0);}
  38% {opacity: 1;}
  47% {opacity: 1;}
  55% {opacity: 0;}
100% {opacity: 0; transform: scale(1.2);}
}
@keyframes slide-animation-05 {
    0% {opacity: 0;}
  47% {opacity: 0;  transform: scale(1.0);}
  55% {opacity: 1;}
  60% {opacity: 1;}
  65% {opacity: 0;}
100% {opacity: 0; transform: scale(1.1);}
}
@keyframes slide-animation-06 {
    0% {opacity: 0;}
  60% {opacity: 0;  transform: scale(1.2);}
  65% {opacity: 1;}
  70% {opacity: 1;}
  78% {opacity: 0;}
100% {opacity: 0; transform: scale(1.0);}
}
@keyframes slide-animation-07 {
    0% {opacity: 0;}
  70% {opacity: 0;  transform: scale(1.0);}
  78% {opacity: 1;}
  85% {opacity: 1;}
  90% {opacity: 0;}
100% {opacity: 0; transform: scale(1.1);}
}
@keyframes slide-animation-08 {
    0% {opacity: 0;}
  85% {opacity: 0;  transform: scale(1.15);}
  90% {opacity: 1;}
  95% {opacity: 1;}
100% {opacity: 0; transform: scale(1.0);}
}

/*メイン文*/
section {
	margin: 0 5%;
}

.caption {
	position: relative;
	display: inline-block;
	padding-top: 40px;
	padding-left: 45px;
	margin-bottom: 10px;
	z-index: 2;
	letter-spacing: .05em;
}

.caption::before {
	content: '';
	background-color: rgba(4, 126, 150);
	display: block;
	position: absolute;
	left: 0;
	height: 60px;
	width: 60px;
	border-radius: 50%;
	top: 10px;
	z-index: -1;
	/*重なり調整*/
}

.caption::after {
	content: '';
	background-color: rgb(255, 255, 255, .7);
	display: block;
	position: absolute;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	left: -10px;
	top: 40px;
	z-index: -1;
	/*重なり調整*/
}


.main-p {
	line-height: 2.5em;
	margin-left: 30px;
	letter-spacing: .05em;
}

.sign {
	margin-top: 10px;
	text-align: right;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.sign img {
	margin: 0 15px 10px;
}

/*さばくり特徴*/
.index-article {
	margin: 60px 0 10px;
}

.caption-point {
	text-align: center;
	font-size: 130%;
	line-height: 43px;
	letter-spacing: .05em;
	margin: 20px auto;
	align-items: center;
	position: relative;
}

/*見出しライン*/
.caption-point::before,
.caption-point::after {
	content: '';
	background: #999;
	display: block;
	height: 1.5px;
}

.caption-point::before {
	margin-right: 1em;
}

.caption-point::after {
	margin-left: 1em;
}

.caption-point h3 {
	font-weight: 200;
}

.cp-container {
	display: flex;
	justify-content: space-around;
	margin: 50px 20px 10px auto;
}

.column {
	position: relative;
	padding-left: 2em;
	margin: 0 1em;
	line-height: 1.6;
	font-size: 120%;
}

/*チェックマーク*/
.column::before {
	font-family: "Font Awesome 5 Free";
	content: "\f138";
	font-weight: bold;
	position: absolute;
	left: 33px;
	top: 11px;
	font-size: 1.3em;
	color: #047e96;
}

.column span {
	font-weight: 600;
}

.column-a {
	margin-bottom: 5px;
	margin-left: 2em;
	color: #fff;
}

.column-b img {
	max-width: 100%;
	height: auto;
	padding-top: 10px;
}



/*------------フッター--------------*/
#footer {
	position: relative;
	padding: 50px 0;
	position: relative;
	background: linear-gradient(to top, #047e96 2%, #83ccd2 6%, #ffffff 15%);
}

/* #footer::before {
	content: "";
	position: absolute;
	top: 0;
	background: url(../images/wave-bottom0.2.png) center top repeat-x;
	display: block;
	height: 75px;
	left: 0;
	right: 0;
} */

.f-container {
	display: flex;
	justify-content: space-around;
	margin: auto 40px;
	padding: 0 15px;
}

#f-info {
	width: 600px;
	position: relative;
	bottom: -5px;
}

.f-logo {
	max-width: 180px;
	height: auto;
}

#f-info p {
	font-size: 90%;
	line-height: 1;
	margin-left: 35px;
	color: #1c2541;
}

#f-contact {
	width: auto;
	position: relative;
	bottom: -30px;
}

.f-button {
	display: inline-block;
	width: 230px;
	height: 60px;
	border-radius: 28px;
	background: #1c2541;
	text-align: center;
	margin: 0 auto;
	color: #fff;
	line-height: 60px;
	/*文字を中央へ*/
	border: none;
	transition: all .6s 0s ease;
	/*transition-property: all;
	transition-duration: 0.6s;
	transition-delay: 0s;
	transition-timing-function: ease;*/
	box-shadow: 3px 3px 0 #272936;
}

.f-button:hover {
	background: #272936;
}

#copyright {
	margin-top: 20px;
	text-align: center;
	color: #1c2541;
}

/*------------トップページ完--------------*/




/* コンタクトーーーーーーーーーーーーーーーーーーーーーー */
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

.c-section {
	width: 600px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 50px;
}

img.post {
	max-width: 200px;
	height: auto;
	vertical-align: middle;
	margin-left: 15px
}

/*電話での問い合わせ*/
.contact-container {
	padding: 20px 0 0;
}

.inner {
	max-width: 1040px;
	height: auto;
	width: 100%;
	margin: 0 auto;
}

.clearfix {
	min-height: 0px;
}

.title-box {
	padding: 0 0 8px;
	margin: 0 0 50px;
	position: relative;
}

.title-box02 {
	margin: 0 0 10px;
}

.cc-wrapper {
	display: flex;
	flex-wrap: wrap;
	background: rgba(4, 126, 150, .9);
	padding: 30px 50px 20px;
	justify-content: space-between;
}

.cc-item-top {
	width: 100%;
	box-sizing: border-box;
	background: rgba(255, 255, 255, .9);
}

.cc-message {
	text-align: center;
	font-size: 20px;
	line-height: 45px;
	color: #1c2541;
	padding: 0;
}

.cc-item-info {
	width: 100%;
	display: flex;
	margin: 20px auto;
	box-sizing: border-box;
}

.cc-number {
	display: block;
	padding-top: 13px;
}

.cc-number h4 {
	position: relative;
	display: inline;
	font-size: 58px;
	width: 60%;
	color: #fff;
	margin: 30px auto 0;
	text-align: center;
	text-shadow: 0 5px 5px #1c2541;
	padding-left: 70px;
	
}

.cc-number h4::before {
	content: '';
	display: inline-block;
	width: 60px;
	height: 60px;
	background-image: url(../images/tel03.png);
	background-size: contain;
	position: absolute;
	left: 0px;
	margin: 0 auto;
	top: -1px;
	box-shadow: 0 3px 5px black;
}

.cc-number p {
	font-size: 130%;
    text-align: center;
}

.cc-time {
	font-size: 18px;
	width: 35%;
	max-width: 500px;
	padding: 0;
	color: #fff;
	text-align: center;
	line-height: 100px;
	font-weight: bold;
	background: rgba(28, 37, 65, .8);
	margin: 40px 10px 10px 50px;
}

/*メール問合せ*/

.maillink {
	width: 60%;
	margin: 0 auto;
}

.contact-caution {
	padding: 20px 0;
	font-size: 90%;
}

.form-wrapper {
	background: rgba(4, 126, 150, .9);
}

.form-container {
	padding: 20px 30px;
}

form div {
	margin-bottom: 14px;
}

label {
	font-size: 1.125rem;
	margin-bottom: 10px;
	display: block;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
	width: 100%;
	max-width: 240px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
	background: rgba(255, 255, 255, .9);
	border: 1px #fff solid;
	border-radius: 5px;
	padding: 10px;
	font-size: 1rem;
}

textarea {
	width: 100%;
	max-width: 480px;
	height: 6rem;
}

input[type="submit"] {
	border: none;
	cursor: pointer;
	line-height: 1;
}

.contact-button {
	font-size: 1.375rem;
	background: #1c2541;
	color: #fff;
	border-radius: 5px;
	padding: 18px 32px;
	margin-top: 35px;
	letter-spacing: 0.15em;
	box-shadow: 0px 0px 8px;
}
/*------------お問合せページ完--------------*/


/* お店・オーナー紹介ーーーーーーーーーーーーーーーーーーー */
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
.main-wrapper2 {
	padding: 10px 0 40px;
}

.owner-container {
	display: flex;
	justify-content: space-around;
}

.owner-name {
	margin-bottom: 40px;
}

.owner-img img {
	max-width: 450px;
	height: auto;
	margin: 30px 0 0;
}

.owner-name p {
	text-align: center;
    background: rgb(4, 126, 150, .8);
    color: #fff;
    max-width: 700px;
    margin: 0;
}

.profile {
	margin-left: 20px;
}

.profile-list {
	margin-top: 10px;
	margin-bottom: 40px;
	margin-left: 10px;
	padding-left: 15px;
}

.profile-list p {
	position: relative;
}

.profile-list p::before {
	display: block;
	content: '';
	position: absolute;
	top: .7em;
	left: -1em;
	width: 10px;
	height: 2px;
	background-color: #fff;
	border: 2px solid rgb(0, 129, 194);
	border-radius: 50%;
}



.owner-profile {
	margin-top: 40px;
}

/* テーブル */
.company {
	max-width: 700px;
	margin-top: 20px;
	border-collapse: collapse;
	border-spacing: 0;
}

.company th,
.company td {
	border: 2px solid #047e96;
	padding: 20px;
}

.company th {
	font-weight: bold;
	background: rgb(4, 126, 150, .7);
    color: #fff;
}

/*------------お店・オーナー紹介完-------------*/


/* 各種サービスーーーーーーーーーーーーーーーーーーーーーー */
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
.service-bigcontainer {
	padding: 20px 20px 10px;
    margin-top: 20px;
}

.service-container {
	margin: 10px 0 60px;
}

.service-column {
	position: relative;
	padding-left: 4em;
	margin-left: 3em;
	font-size: 120%;
}

.service-column::before {
	font-family: "Font Awesome 5 Free";
	content: "\f138";
	font-weight: bold;
	position: absolute;
	left: 33px;
	top: -2.5px;
	font-size: 1.3em;
	color: rgb(4, 126, 150);
}

.red-line a {
	color: #fff;
	line-height: 1.8;
}

.red-line a:hover {
	text-decoration: underline  #ec0404;
}

.service-column-a {
	/* position: relative; */
	margin-top: 70px;
	padding: 0 5%;
	line-height: 1.8;
	font-size: 120%;
}



.sc {
	color: #fff;
	font: bold;
	padding: .5em;
	position: relative;
}

.sc::after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5px;
	border-radius: 5px;
	background-image: -webkit-gradient(linear, right top, left top, from(#0b132b), to(#047e96));
	background-image: -webkit-linear-gradient(right, #0b132b 0%, #047e96 100%);
	background-image: linear-gradient(to left, #0b132b 0%, #047e96 100%);
}


.service-column-a p {
	padding-left: 2%;
	font-size: 85%;
	color: #fff;
	letter-spacing: 0.4;
}

.bottom_space {
	margin-bottom: 3%;
}

.photobox-display {
    display: flex;
	flex-direction: row; /* 横並びを指定 */
    flex-wrap: wrap; /* 画面幅に応じて折り返し */
    justify-content: space-around; /* 水平中央配置 */
}

.photobox {
	width: calc(100% / 4); /* 必要に応じて調整 */
    margin: 0 5px; /* 水平マージンを調整 */
    flex: 1 1 auto; /* 幅を自動調整 */
}

.photobox img {
    width: 100%; /* 画像を`.photobox`内で調整 */
    height: auto;
	padding-top: 8px;
}



/* ヘッダー固定のためのずれ調整 */

#sc01 {
	/* display: block; */
	margin-top: -220px;
	padding-top: 220px;
}

#sc02 {
	margin-top: -220px;
	padding-top: 220px;
}

#sc03 {
	margin-top: -220px;
	padding-top: 220px;
}

#sc04 {
	margin-top: -220px;
	padding-top: 220px;
}

#sc05 {
	margin-top: -220px;
	padding-top: 220px;
}

#sc06 {
	margin-top: -220px;
	padding-top: 220px;
}

#sc07 {
	margin-top: -220px;
	padding-top: 220px;
}

#sc08 {
	margin-top: -220px;
	padding-top: 220px;
}

#sc09 {
	margin-top: -220px;
	padding-top: 220px;
}

#sc10 {
	margin-top: -220px;
	padding-top: 220px;
}

#sc11 {
	margin-top: -220px;
	padding-top: 220px;
}



/*------------各種サービス完--------------*/





/* アクセスマップーーーーーーーーーーーーーーーーーーーーー */
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
.map-info {
	max-width: 700px;
	margin-top: 20px;
	border-collapse: separate;
	border-spacing: 2px;
}

.map-info th,
.map-info td {
	border: 1px solid #047e96;
	padding: 20px;
}

.map-info th {
	background: rgb(34, 78, 138);
	font-weight: bold;
    color: #fff;
}

.map {
	margin-top: 40px;
}
/*------------アクセスマップ完--------------*/














/* ケータイ対応（1024~768pxタブレット）ーーーーーーーーーーーーーーーーーーーーー */
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
@media screen and (max-width: 1024px) {

/* ヘッダー */
.header {
	display: flex;
	flex-flow: column;
	align-items: center;
	margin-bottom: 0;
}

.top-area {
	display: flex;
	flex-flow: column;
	align-items: center;
	background: linear-gradient(to bottom, #047e96 2%, #83ccd2 4%, #ffffff 7%);
}

.top-area-p {
    font-size: 87%;
    height: 28px;
    padding: 15px 50px 0 0;
}

.tel {
	font-size: 90%;
	width: 295px;
}

a[href^="tel:"] {
	pointer-events:auto;
}

#fixednav {
	justify-content: space-between;
}

#fixednav.fixed {
	position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    padding-bottom: 0;
}

.nav-logo {
	max-width: 170px;
}

.nav {
	position: fixed;
	right: -320px;
	top: 0;
	width: 300px;
	height: 100vh;
	padding-top: 40px;
	transition: all .6s;
	z-index: 200;
}

/* nav ul {
    padding-top: 10px;
    margin-bottom: 22px;
    float: left;
    text-align: center;
    width: 100%;
  }

  nav ul li {
    width: 100%;
    padding: 7px 0;
    margin: 0;
  } */

.hamburger {
	display : block;
	z-index : 3;
	right : 13px;
	top   : 12px;
	width : 42px;
	height: 42px;
	cursor: pointer;
	text-align: center;


	/* display: block;
	position: relative;
	right: -10px;
	top: 0; */
	/* background: -moz-linear-gradient(65deg, #047e96, #83ccd2);
	background: -webkit-linear-gradient(65deg, #047e96, #83ccd2);
	background: linear-gradient(25deg, #047e96, #83ccd2); */
	/* width: 50px;
	height: 50px;
	cursor: pointer;
	border-radius: 5px;
	z-index: 300; */

}

.hamburger span {
	display : block;
	position: absolute;
	width   : 32px;
	height  : 4px ;
	left    : 6px;
	border-radius: 2px;
	background: -moz-linear-gradient(65deg, #047e96, #83ccd2);
	background: -webkit-linear-gradient(65deg, #047e96, #83ccd2);
	background: linear-gradient(25deg, #047e96, #83ccd2);
	-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: 10px;
  }
  .hamburger span:nth-child(2) {
	top: 20px;
  }
  .hamburger span:nth-child(3) {
	top: 30px;
  }

  .hamburger.active span:nth-child(1) {
	top : 16px;
	left: 6px;
	background :#fff;
	-webkit-transform: rotate(-45deg);
	-moz-transform   : rotate(-45deg);
	transform        : rotate(-45deg);
  }
  
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
	top: 16px;
	background :#fff;
	-webkit-transform: rotate(45deg);
	-moz-transform   : rotate(45deg);
	transform        : rotate(45deg);
  }

  nav.nav {
	position: fixed;
	z-index : 3;
	top  : 0;
	left : 0;
	color: #fff;
	background: rgba(0,0,0,0.7);
	text-align: center;
	width: 100%;
	height: auto;
	opacity: 0;
	transition: opacity .6s ease, visibility .6s ease;
	visibility: hidden;
  }
  
  nav.nav ul {
	margin: 80px 0;
	padding: 50px 60px 0 100px;
	width: 100%;
	display: block;
	text-align-last: right;
  }
  
  nav.nav ul li {
	list-style-type: none;
	padding: 0;
	width: 100%;
	transition: .4s all;
  }
  nav.nav ul li:last-child {
	padding-bottom: 0;
  }
  nav.nav ul li:hover{
	background :#ddd;
  }
  
  nav.nav ul li a {
	display: block;
	color: #fff;
	padding: 1em 0;
	text-decoration :none;
  }
  
  /* このクラスを、jQueryで付与・削除する */
  nav.nav.active {
	opacity: 100;
	visibility: visible;
  }
  
.fas {
	display: none;
}



.open-nav .hamburger {
	transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	margin-top: 17px;
}

.sticky {
	background: rgba(255, 255, 255, 0.93);
	opacity: 1;
	top: 0px;
}


/* 電話マークの表示について */
.top-area-item {
	display: none;
	height: 28px;
	margin: 20px 50px;
	color: #fff;
	border-radius: 7px;
	padding: 3px;
}

.tel {
	width: 333px;
	display: none;
	background: #1c2541 url(../images/tel.png) no-repeat left 1% top 50%;
	background-size: 20px;
	padding-left: 25px;
	margin-left: 0;
}

.top-area-item-mo {
	display: block;
	height: auto;
	margin: 35px 0px 0px;
	color: #fff;
	border-radius: 7px;
	padding: 3px;
}

.tel-mo {
	display: block;
	width: auto;
	background: #1c2541 url(../images/tel.png) no-repeat left 3% top 50%;
	background-size: 23px;
	padding-left: 25px;
}

a[href^="tel:"] {
	margin: 5px;
}

.main-wrapper {
    padding: 0 0 30px;
}

.bg-sands::before {
	display: none;
}

.bg-sands {
	margin-top: 0;
}

.img-frame{
	width: 100%;
	height: 600px;
 }

/* ホーム */
article {
    margin: 60px 10px 10px;
}

.cp-container {
	display: flex;
	justify-content: space-around;
	margin: 40px 10px 10px auto;
}

.column {
	position: relative;
	padding: 0em;
	margin: 0 1em;
	line-height: 1.6;
	font-size: 103%;
}

.column::before {
	left: -8px;
	top: -15px;
	font-size: 1.4em;
	z-index: 2;
}


.column-a {
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin: 0;
	padding: 0;
	z-index: 1;
	background: rgb(225, 225, 225, .8);
    width: 100%;
	text-align: center;
	font-size: 95%;
	color: #4c5454;
}

.column-b {
	background: #fff;
	display: inline-block;
	z-index: auto;

}

.column-b img {
	/* max-width: 100%; */
	width: auto;
	height: auto;
	padding: 0;
	display: block;
}


/* フッター */
#footer {
	background: linear-gradient(to top, #047e96 2%, #83ccd2 5%, #ffffff 10%);
	padding: 30px 0 50px 0;
}

#footer::before {
	display: none;
}

.f-container {
    padding: 0 50px;
}

#copyright {
    font-size: 90%;
}

#f-info p {
	margin-left: 0px;
}

/* -----------オーナー、お店紹介------------------- */
.main-wrapper2 {
	padding: 0 0 40px;
}

.caption {
	letter-spacing: .2em;
	font-size: 140%;
}

.owner-img img {
	max-width: 350px;
	margin: 30px 15px 0 0;
}

.owner-name p {
	margin-right: 15px;
}


/* -----------------各種サービス-------------------- */

.photobox img {
	padding-top: 3px;
}



/* -----------------アクセス-------------------- */
.map {
    margin: 70px auto 20px;
    max-width: 960px;
    max-height: 500px;

	padding-bottom: 30px;
}

.map iframe {
	padding-right: 5px;
	width: 100%;
}

/* -----------------コンタクト-------------------- */
.c-section {
	padding-top: 40px;
}

.contact-container {
	margin: 30px 10px 10px;
}

.title-box {
	margin: 0;
}

.cc-wrapper {
	max-width: 800px;
    margin: 10px auto;
}

.cc-message {
	font-size: 110%;
}

.cc-item-info {
	margin: 20px 0px;
	justify-content: space-between;
}

.cc-number {
    padding-top: 23px;
	padding-left: 7px;
}

.cc-number h4 {
	font-size: 220%;
	margin: 40px auto 0;
}

.cc-number h4::before {
    width: 50px;
    height: 50px;
    left: 6px;
    top: -7px;
}

.cc-number p {
    font-size: 115%;
    padding: 10px;
    margin-left: 45px;
}

.cc-time {
    font-size: 100%;
    line-height: 90px;
	width: 40%;
	margin: 40px 10px 10px 22px;
}

.title-box02 {
	margin-top: 30px;
}

label {
	font-size: 1rem;
}

.contact-button {
	font-size: 1.2rem;
	margin: 10px 0;
}


.inner {
	max-width: 800px;
}

}


/* ケータイ対応（835~768pxタブレット）ーーーーーーーーーーーーーーーーーーーーー */
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
@media screen and (max-width: 835px) {
  .img-frame {
	width: 100%;
	height: 450px;
	}

}

/* ケータイ対応（767~481px）ーーーーーーーーーーーーーーーーーーーーー */
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
@media screen and (max-width: 767px) {

/* ヘッダー */

#fixednav {
	/* position: fixed; */
	left: 0;
	top: 0;
	align-items: center;
	padding: 0 auto;
	width: 100%;
}

.top-area {
	background: linear-gradient(to bottom, #047e96 2%, #83ccd2 4%, #ffffff 0%);
}

.top-area-p {
    font-size: 80%;
    height: 20px;
    padding: 10px 0 43px;
}

.top-area-item-mo {
	display: block;
	height: auto;
	margin: 20px 0px 0px;
	color: #fff;
	border-radius: 7px;
	padding: 3px;
}

.tel-mo {
	display: block;
	width: auto;
	background: #1c2541 url(../images/tel.png) no-repeat left 2% top 50%;
	background-size: 25px;
	padding-left: 25px;
}

a[href^="tel:"] {
	margin: 5px;
}

.hamburger span {
	height: 3px;
}

/* ホーム */
.caption {
	padding-top: 20px;
	margin-bottom: 10px;
	text-align: center;
	letter-spacing: 1em;
}

.caption::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	height: 50px;
	width: 50px;
	border-radius: 50%;
	top: 13px;
	z-index: -1;
	/*重なり調整*/
}

.caption::after {
	content: '';
	display: block;
	position: absolute;
	left: 30px;
	height: 30px;
	width: 30px;
	border-radius: 50%;
	top: 42px;
	z-index: -1;
	/*重なり調整*/
}

.main-p {
	line-height: 2em;
	margin: 15px 20px;
	letter-spacing: .05em;
}

.sign {
	font-size: .9rem;
}

.sign img {
	width: 90px;
	height: auto;
}

.caption-point {
	text-align: center;
	font-size: 115%;
	line-height: 40px;
	letter-spacing: .05em;
	margin: 17px auto;
	align-items: center;
	position: relative;
}

.cp-container {
	display: flex;
	flex-direction: column;
	margin: 40px 10px 10px auto;
}

.column {
	position: relative;
	padding: 0 1em 1em;
	margin: auto;
	line-height: 2;
	font-size: 140%;
}

.column::before {
	left: 2px;
	top: 90px;
	font-size: 1.4em;
}


.column-a {
	position: absolute;
	top: 60%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -100%);
	margin: 0;
	padding: 0;
	z-index: 1;
	width: 80%;
}

/* .column-b {
	background: #fff;
	display: inline-block;
	z-index: auto;

} */

.column-b img {
	width: 100%;
	height: 250px;
	opacity: .8;
	padding: 0;
	display: block;
	object-fit: cover;
}

/* フッター */
#footer {
    background: linear-gradient(to top, #047e96 1%, #83ccd2 3%, #ffffff 0%);
	padding: 20px 0 40px 0;
}


.f-container {
	padding: 0 25px;
	margin: auto 35px;
}

.f-logo {
	max-width: 150px;
}

#f-info {
	bottom: -10px;
}

#f-info p {
    font-size: 80%;
    line-height: 1.3;
	margin-left: 0px;
}

.f-button {
	width: 150px;
	height: 70px;
	line-height: 70px;
}

#copyright {
    margin-top: 20px;
	font-size: 75%;
}


/* -----------オーナー、お店紹介------------------- */

.caption {
	letter-spacing: .2em;
	font-size: 140%;
}

.owner-container {
	display: block;
}

.owner-img {
	max-width: 330px;
	margin: 30px auto 10px;
	line-height: 0;
}

.owner-img img {
	max-width: 100%;
	height: auto;
}

.owner-name p {
	max-width: 330px;
	margin: 0 auto;
}

.company {
	margin: 20px auto;
	width: 80%;
}

.company,
.company tr,
.company td,
.company th {
	display: block;
}

.company th,
.company td {
	/* border: 2px solid #047e96; */
	padding: 10px;
	font-size: 95%;
}

.company th {
	width: auto;
	font-weight: bold;
    color: #fff;
	letter-spacing: .5rem;
}


/* -----------------各種サービス------------------ */
.service-bigcontainer {
	padding: 20px 20px 55px;
    margin-top: 20px;
}

.service-container {
	margin: 20px auto;
	width: 80%;
}

.service-column {
	padding-top: 5px;
	margin-left: 1em;
}

.service-column::before {
	top: .5px;
}



/* -----------------アクセス------------------ */
.map-info {
	margin: 20px auto;
	border-spacing: 1px;
}

.map-info th {
	padding: 10px;
}

.map iframe {
	padding-right: 5px;
	width: 100%;
}


/* -----------------コンタクト-------------------- */
.cc-item-top {
	font-size: 96%;
}

.cc-item-info {
	flex-direction: column;
	align-items: center;
}

.cc-text {
	display: inline-block;
}

.cc-number h4 {
	width: 800px;
	font-size: 200%;
	margin: 20px 0;
	padding-left: 25px;
	position: relative;
}

.cc-number h4::before {
	position: absolute;
    width: 35px;
    height: 35px;
    left: -20px;
    top: -3px;
}

.cc-number p {
    font-size: 100%;
    margin-left: 0px;
}

.cc-time {
	font-size: 95%;
    line-height: 60px;
	width: 90%;
	max-width: 300px;
	margin: 15px 0 0;
}

.contact-caution {
    padding: 5px 0 20px;
    font-size: 90%;
}

}

/* ケータイ対応（550~480px）ーーーーーーーーーーーーーーーーーーーーー */
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
@media screen and (max-width: 550px) {

.img-frame {
	width: 100%;
	height: 320px;
	}

}

/* ケータイ対応（480px以下）ーーーーーーーーーーーーーーーーーーーーー */
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
@media screen and (max-width: 480px) {
/* ヘッダー */
.top-area-item {
	margin: 0;
}

.top-area {
	padding: 3px 10px;
	margin-bottom: 5px;
}

.top-area-p {
    font-size: 75%;
	padding: 10px 0 10px;
    /* height: 25px; */
    margin: 0;
}



#fixednav {
	padding: 0 15px;
}

.nav-logo {
	max-width: 140px;
}

.hamburger {
	width: 50px;
	height: 42px;
}

.hamburger span {
	width: 28px;
	height: 3px;
}

.top-area-item-mo {
	display: block;
	height: auto;
	margin: 40px 0px 0px;
	color: #fff;
	border-radius: 7px;
	padding: 3px;
    }
	
.tel-mo {
	display: block;
	width: auto;
	background: #1c2541 url(../images/tel.png) no-repeat left 5% top 48%;
	background-size: 21px;
	padding-left: 25px;
	font-size: 95%;
	}
	
	a[href^="tel:"] {
		margin: 6px;
	}
	


/* ----------ホーム------------ */

.caption {
    padding-top: 25px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: .4em;
}

.caption::before {
	top: 18px;
    left: 5px;
    height: 35px;
    width: 35px;
}

.caption::after {
    top: 38px;
    left: 24px;
    height: 23px;
    width: 23px;
}

.main-p {
	font-size: .85rem;
	line-height: 1.3em;
	margin: 15px 20px;
	letter-spacing: .2em;
}

.caption-point {
	text-align: center;
	font-size: 90%;
	line-height: 35px;
	margin: 14px auto;
	align-items: center;
	position: relative;
}

.column::before {
	display: none;
	/* left: 2px;
	top: 40px;
	font-size: 1.2em; */
}

.column-a {
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -100%);
	margin: 0;
	padding: 0;
	font-size: 1rem;
	line-height: 1.8;
}

.column-b img {
	height: 130px;
}


/* フッター */

#footer {
    padding: 0 0 40px 0;
}

.f-container {
	padding: 0 2px;
	margin: 0 20px;
}


#f-info {
	width: 300px;
	bottom: -18px;
}

.f-logo {
	max-width: 110px;
}

#f-info p {
    font-size: 65%;
    line-height: 1.5;
}

#f-contact {
	padding-left: 3px;
	bottom: -40px;
}

.f-button {
    width: 100px;
    height: 40px;
    line-height: 40px;
    font-size: 85%;
}

#copyright {
	margin-top: 20px;
}

/* -----------オーナー、お店紹介------------------- */
.caption {
	font-size: 1.2rem;
	margin: 10px 0 0;
}

.owner-name {
	margin: -50px auto;
}

.owner-img img {
    width: 100%;
	object-fit: cover;
	height: 200px;
}

.owner-name p {
	font-size: 90%;
}

.profile {
	font-size: 95%;
	padding-top: 20px;
}

.profile-list {
	margin-bottom: 20px;
	font-size: 90%;
}

.company th,
.company td {
	border: 1px solid #047e96;
	padding: 5px;
	font-size: 85%;
	line-height: 1.2;
}


/* -----------------各種サービス------------------ */
.caption {
	font-size: 1rem;
}

.service-container {
	margin: 0 auto;
	width: 100%;
}

.service-column {
	padding-top: 5px;
	margin-left: 0.2em;
	font-size: 95%;
}

.service-column-a {
	margin-left: 0.5em;
	line-height: 1.7;
    font-size: 95%;
}

.photobox img {
	padding-top: 5px;
}

/* -----------------アクセス--------------------- */
.map-info,
.map-info tr,
.map-info td,
.map-info th {
	display: block;
	line-height: 1.2;
}

.map-info td {
	font-size: 90%;
}

.map iframe {
	width: 100%;
	height: auto;
}



/* -----------------コンタクト--------------------- */
.c-section {
	padding-top: 0;
	max-width: 200px;
	display: block;
}

.caption {
	font-size: 1.1rem;
    margin: 10px 0 25px;
}

img.post {
	margin-left: 0;
}

.cc-wrapper {
    padding: 30px 0px 20px;
}

.cc-message {
    font-size: 90%;
	line-height: 2;
	padding: 5px 3px;
}

.cc-number h4 {
    font-size: 170%;
    margin: 15px 0;
    padding-left: 20px;
}

.cc-number h4::before {
    width: 30px;
    height: 30px;
    left: -20px;
    top: -2px;
}

.cc-time {
    font-size: 90%;
    line-height: 55px;
}


.contact-caution {
	font-size: 80%;
	line-height: 1.3;
}

.form-container {
    padding: 20px 15px;
}

form div {
    margin-bottom: 10px;
}

label {
    font-size: .9rem;
}

.button_wrapper {
	text-align: center;
}

input[type="text"], input[type="tel"], input[type="email"], textarea {
    padding: 7px;
    font-size: .9rem;
}

input[type="submit"] {
    line-height: .9;
}

.contact-button {
    font-size: 1rem;
    margin: 20px 0;
}

}

/* ケータイ対応（450px以下）ーーーーーーーーーーーーーーーーーーーーー */
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
@media screen and (max-width: 450px) {

.img-frame {
	width: 100%;
	height: 260px;
	}

.top-area-item-mo {
	display: block;
	height: auto;
	margin: 40px 0px 0px;
	color: #fff;
	border-radius: 7px;
	padding: 3px;
    }
	
.tel-mo {
	display: block;
	width: auto;
	background: #1c2541 url(../images/tel.png) no-repeat left 5% top 48%;
	background-size: 21px;
	padding-left: 25px;
	}
	
	a[href^="tel:"] {
		margin: 6px;
	}
	
}

/* ケータイ対応（350px以下）ーーーーーーーーーーーーーーーーーーーーー */
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
@media screen and (max-width: 350px) {

.img-frame {
	width: 100%;
	height: 220px;
	}

.top-area-item-mo {
	display: block;
	height: auto;
	margin: 40px 0px 0px;
	color: #fff;
	border-radius: 7px;
	padding: 3px;
	}
			
.tel-mo {
	display: block;
	width: auto;
	background: #1c2541 url(../images/tel.png) no-repeat left 5% top 48%;
	background-size: 21px;
	padding-left: 25px;
	font-size: 80%;
	}
	
	a[href^="tel:"] {
		margin: 6px;
	}

		
}
	