@charset "utf-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	background: #fffffe;
	color: #000000;
	font-family: "游明朝", "YuMincho", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-weight: 400;
	line-height: 1.6;
	overflow-x: hidden;
}

body.m_fixed_sns {
	padding-bottom: 75px;
}

article,
aside,
footer,
header,
nav,
section,
main {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	border: 0;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	margin-block-start: 0;
	margin-block-end: 0;
}

a {
	color: inherit;
	outline: none;
	text-decoration: none;
}

img {
	border: none;
	height: auto;
	max-width: 100%;
	vertical-align: top;
}

code,
kbd,
pre,
samp {
	font-family: monospace, sans-serif;
	font-size: inherit;
}

ul,
ol {
	list-style: none;
}

table {
	border: 1px solid #eee;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
	width: 100%;
}

th,
td {
	border: 1px solid #eee;
	padding: 4px 6px;
	text-align: left;
	vertical-align: top;
}

blockquote,
q {
	quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
	content: "";
	content: none;
}

html{
	font-size: 67.5%;
}
body{
	font-size:1.6rem;
}

/* content1, content2 */
.inner {
	max-width: 1280px;
	margin: 0 auto;
}
.content1 {
	padding-top: 50px;
	padding-bottom: 60px;
}
.content1 h2, .content2 h2, .content3 h2 {
	font-size: 4rem;
	text-align: center;
}
.content1 .buttons {
	margin-top: 60px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}
.content1 .buttons li {
	font-size: 2rem;
	color: #BF8A55;
	border: 1px solid #BF8A55;
	border-radius: 5px;
	padding: 5px 20px;
	text-align: center;
	margin-right: 20px;
	width: calc( (100% / 8) );
}
.content1 .buttons li:last-child {
	margin-right: 0;
}
.content1 .buttons li.active {
	background: #BF8A55;
	color: #fff;
}

.animate {
	animation: .8s zoom-in;
}

/* モーダル */
.modal{
	display: none;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}
.modal__bg{
	background: rgba(255,255,255,0.8);
	height: 100vh;
	position: absolute;
	width: 100%;
}
.print_inner{
	background: #F4EEE8;
	padding: 70px 60px 40px;
	border: 2px solid #BF8A55;
  position: relative;
}
.print_inner h3 {
	text-align: center;
	/* margin-bottom: 10px; */
	font-size: 2.5rem;
}
.print_inner > p {
	text-align: center;
	margin-bottom: 30px;
	font-size: 1.8rem;
}
.print_inner .card p {
	margin-top: 30px;
}
.print_inner .card {
	background: #F0D8C0;
	padding: 40px;
	position: relative;
}
.print_inner .card > div{
  text-align: center;
}
.thumbtack {
	position: absolute;
	top: -20px;
	left: 44%;
	width: 25px;
	/* transform: translateX(-50%) rotate(10deg); */
}
.print_inner .card .thumbtack {
  left: 47%;
}
.print_inner .map {
	margin-top: 40px;
	background: #B2B2B2;
	height: 200px;
	line-height: 200px;
	text-align: center;
	font-size: 2rem;
  margin-bottom: 30px;
}
p.point_text{
  margin-bottom: 10px;
  text-align: center;
}
.modal-close {
	position: fixed;
  top: 8%;
  right: 21%;
  width: 25px;
  height: 25px;
  overflow: hidden;
  z-index: 111;
}
.modal-close::before, .modal-close::after {
	content: "";
	position: absolute;
	right: -3px;
	top: 12px;
	background: #9f9f9f;
	width: 25px;
	height: 3px;
}
.modal-close::before {
	transform: rotate(45deg);
}
.modal-close::after {
	transform: rotate(-45deg);
}
.modal-print_btn {
  margin-bottom: 30px;
}
.modal-print_btn a{
  display: block;
  font-size: 16px;
  width: 300px;
  text-align: center;
  background-color: #ffffff;
  color: #BF8A55;
  font-weight: bold;
  padding: 3px;
  border-radius: 5px;
  border: solid 2px #BF8A55;
  margin: 20px auto 0;
  padding: 13px;
}
.modal-print_btn a img{
  display: inline-block;
  width: 30px;
  margin: -3px 5px;
}
.info_wrapper .info_inner{
  margin-bottom: 30px;
}
.info_wrapper .info_name_01,
.info_wrapper .info_name_02{
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.info_inner > figure{
  width: 230px;
  margin: 15px 0;
}
.info_inner > figure img{
  max-width: 100%;
  height: auto;
}
.info_wrapper .info_link_01 a,
.info_wrapper .info_link_02 a{
	word-break: break-all;
  color: #BF8A55;
}
.info_wrapper .info_link_01 a::after,
.info_wrapper .info_link_02 a::after{
  content: ">";
  display: inline-block;
  margin-left: 10px;
}

.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sp_only{
  display: none;
}


@media screen and (max-width: 768px) {
	header {
		justify-content: space-between;
	}
  .pc_only{
    display: none;
  }
  .sp_only{
    display: block;
  }
  .inner{
    width: 90%;
  }
	.content1, .content2 {
		padding-top: 60px;
		padding-bottom: 40px;
	}
	.content1 h2, .content2 h2 {
		font-size: 3rem;
	}
	.content1 .buttons {
		flex-wrap: wrap;
	}
	.content1 .buttons li {
		padding: 5px 10px;
		margin-right: 10px;
		width: calc( (100% / 4) - 10px );
		margin-bottom: 15px;
	}
	.content1 .buttons li:first-child {
		line-height: unset;
	}
	.content1 .buttons li:nth-of-type(4n) {
		margin-right: 0;
	}
	.print_inner {
		padding: 50px 40px;
	}
	.print_inner h3 {
		font-size: 2rem;
	}
	.print_inner .card p {
		font-size: 1.2rem;
	}
	.print_inner .card {
		padding: 30px;
	}
  .modal-print_btn{
    position: relative;
    margin: 0 auto 10px;
  }
  .modal-print_btn a{
    width: 130px;
  }
  .modal-print_btn a img{
    display: inline-block;
    width: 20px;
    margin: 1px 5px;
  }
}

@media screen and (max-width: 500px) {

    .content1, .content2 {
      	padding-top: 30px;
      	padding-bottom: 20px;
    }
    .content1 h2, .content2 h2, .content3 h2 {
      	font-size: 2rem;
    }
    .content1 .buttons {
      	margin-top: 30px;
	}
	.content1 .buttons li {
		font-size: 1rem;
		margin-right: 5px;
		width: calc( (100% / 4) - 5px );
		margin-bottom: 10px;
	}
	.print_inner {
		padding: 30px 20px;
	}
	.print_inner h3 {
		font-size: 1.6rem;
	}
	.print_inner .card {
		padding: 20px;
	}
	.thumbtack {
		width: 20px;
	}
	.print_inner .card p {
		font-size: .8rem;
	}
	.print_inner .map {
		margin-top: 20px;
		height: 100px;
		line-height: 100px;
		font-size: 1.4rem;
	}
	.modal-close::before, .modal-close::after {
		width: 20px;
		right: 2px;
		top: 10px;
	}
}

/* print setting */
@media print {
  body {
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    top:0 !IMPORTANT;
    left:0 !IMPORTANT;
    /* width:200mm !IMPORTANT;
    height:290mm !IMPORTANT; */
  }
  .inner{
    position: relative;
  }
  .print_inner{
    width: 90%;
    margin: 0 auto;
    background: #F4EEE8;
  	padding: 40px 60px;
  	border: 2px solid #BF8A55;
    overflow: visible;
  }
  .print_inner .card{
    background: #F0D8C0;
  	padding: 40px;
  	position: relative;
  }
  /* .gm-style div > img {
    position: absolute;
  } */
  .modal-print_btn,
  p.point_text{
    display: none;
  }
}
.print_inner h4 {
    margin: 20px 0 10px;
    font-size: 2rem;
}