@charset "UTF-8";
/*---------------------
	01.def
	02.base
-----------------------*/
/*---------------------
	01.def.css
 CSS初期化のスタイルを記載
-----------------------*/
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;500;700&display=swap');

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
section,
article,
aside,
hgroup,
header,
footer,
nav,
dialog,
figure,
menu,
video,
audio,
mark,
time,
canvas,
details,
summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 300;
  background: transparent;
  box-sizing: border-box;
  color: #2b2b2b;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-size: inherit;
  line-height: 1.8;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

section,
article,
aside,
hgroup,
header,
footer,
nav,
dialog,
figure,
figcaption {
  display: block;
}

*::before,
*::after {
  box-sizing: border-box;
}

input,
select,
textarea {
  vertical-align: middle;
  -webkit-appearance: none;
}

img {
  vertical-align: bottom;
}

ul,
li,
dl,
dt,
dd,
form {
  margin: 0px;
  padding: 0px;
  border: 0px;
  list-style: none;
  letter-spacing: normal;
  /* For IE 6/7 */
  *display: inline;
  *zoom: 1;
}

summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

ins {
  /* remember to highlight inserts somehow! */
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  /* markup tables with 'cellspacing="0"' */
  border-collapse: collapse;
  border-spacing: 0;
}

/*Clearfix*/
.clr:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
}

/*---------------------
	02.base
-----------------------*/
body {
  width: 100%;
  position: relative;
  line-height: 1.8em;
  font-weight: 400;
  font-size: 14px;
  font-style: normal;
  color: #2b2b2b;
  background: #fff;
  padding: 0;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}

a,
a:link {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  opacity: 0.5;
  transition: all 0.35s ease-in;
}

main {
  background: #fff;
  max-width: 640px;
  margin: 0 auto;
}

.textlink_box {
  background: #d0dee5;
  padding: 0 clamp(13px, calc(30/750*100vw), 26px);
}

.textlink_box span {
  display: block;
  background: #fff;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  font-size: 12px;
  color: #7f7f59;
}

.textlink_box span a {
  text-decoration: underline;
}
.cta_block {
	position: relative;
}

.cta_block a {
	position: absolute;
  display: block;
	width: 100%;
	width: calc(100% - 60px);
	left: 50%;
	transform: translateX(-50%);
	z-index: 0;
}

.cta_block a.cta_btn01{
	top: calc(276/750 *100vw);
	z-index: 10;
}
.cta_block a.cta_btn02{
	bottom: calc(50/750 *100vw);
	z-index: 10;
}

@media only screen and (min-width: 768px) {
	.cta_block a.cta_btn01{
		top:226px;
	}
	.cta_block a.cta_btn02{
		bottom:40px;
	}
}



.acd_block {
  background: #d0dee5;
  padding: 0 0 60px;
}

.acd_block details {
  width: calc(100% - 60px);
  margin: 32px auto 0;
}

.modal_block {
  position: relative;
}

/* モーダル */
.modal-overlay {
  align-items: center;
  background: rgba(0, 0, 0, .6);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

.modal-container {
  background-color: #fff;
  max-height: 90vh;
  max-width: 580px;
  overflow-y: auto;
  padding: 36px 0;
  width: 92%;
  position: relative;
}

.modal-header {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  width: 100%;
  height: 30px;
  top: 6px;
  left: 0;
  padding: 0 10px;
}

.modal-close {
  background: transparent;
  border: 0;
}

.modal-header .modal-close::before {
  content: "\2715";
  font-size: 24px;
}

.modal-content {}

.modal-open {
  display: block;
  border: 0;
  width: calc(100% - 140px);
  position: absolute;
  bottom: clamp(100px, calc(110/750*100vw), 135px);
  left: 50%;
  transform: translateX(-50%);
	opacity: .7;
}

.modal-open:hover {
	opacity: 1;
	transition: all 0.35s ease-in;
}



/* モーダルアニメーション */
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal-overlay {
  animation: mmfadeIn .3s cubic-bezier(.0, .0, .2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal-container {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal-overlay {
  animation: mmfadeOut .3s cubic-bezier(.0, .0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal-container {
  animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal-container,
.micromodal-slide .modal-overlay {
  will-change: transform;
}


.gmap {
	width: calc(100% - 30px);
height: 0;
overflow: hidden;
	margin: 0 auto;
padding-bottom: 73.33%;
position: relative;
}
.gmap iframe {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
}
.map_access {
	width: calc(100% - 30px);
	margin: 0 auto;
	padding: 3vw 0 5vw;
}

@media only screen and (min-width: 768px) {
  body {
    background-color: #d0dee5;
  }

  main {
    border-radius: 30px;
    box-shadow: 5px 5px 12px rgba(25, 25, 25, .45);
    overflow: hidden;
    margin: 60px auto;
  }
	.gmap {
		width: calc(100% - 60px);
	}
	.map_access {
	width: calc(100% - 60px);
	margin: 0 auto;
	padding: 15px 0 30px;
}
}

.map_area {
	background: #e9e8e6;
}

