@charset "UTF-8";

/**
 * all css
 * #reset
 * #base
 * #style
 */

/* ==========================================================================
   #reset
========================================================================== */
/* 
  http://meyerweb.com/eric/tools/css/reset/
  v2.0 | 20110126
  License: none (public domain)
*/
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, 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,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul, li {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ==========================================================================
   #base
========================================================================== */
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	font-size: 12px;
	color: #333333;
}
body {
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, Meiryo, sans-serif;
	animation: fadeIn 3s ease 0s 1 normal;
	-webkit-animation: fadeIn 3s ease 0s 1 normal;
}
img {
	width: 100%;
	display: block;
}
a:link {
	display: block;
	opacity: 1;
	transition: all .5s ease;
}
a:hover {
	opacity: .6;
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.fade {
  transform: translateY(20px);
  transition: all .75s ease .25s;
  opacity: 0;
}
.fade.active {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   #style
========================================================================== */
.l-header, .l-content, .l-footer {
	max-width: 580px;
	margin: 0 auto;
}

/*.l-content {
	margin-top: 13.4vw;
}*/
.p-index-sec01 {
	position: relative;
}
.p-index-sec01 .s-sec01__link {
	position: absolute;
	top: 121.3333vw;
	right: 65vw;
	width: 29.3333vw;
}

.p-index-sec02 .image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  width: 100%;
  justify-items: stretch;
}

.p-index-sec02 .image-link {
  display: block;
  width: 100%;
}

.p-index-sec02 .image-link img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.p-index-sec02 .image-link img:hover {
  transform: scale(1.05); 
}

html {
  scroll-behavior: smooth;
}

.p-index-sec02 .s-sec02__link .s-sec02__linkline {
	margin-top: 1.5vw;
	margin-bottom: 5.5vw;
}

.s-sec04__link .s-sec04__linkline {
  width: calc(100% - 40px);
  margin: 0 auto;
  display: block;
}

.p-index-sec07 .s-sec07__link .s-sec07__linkline {
  width: 70%;
  margin: 0 auto;
  display: block;
}

.p-index-sec08 {
  position: relative;
}

.rotate-deco {
  position: absolute;
  top: 38%;
  left: 50%;
  width: 150px;
  animation: rotateLoop 20s linear infinite;
  pointer-events: none;
}


@keyframes rotateLoop {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.s-sec09__map {
  margin: 0;
  padding: 0;
}

.s-sec09__map-wrap {
  position: relative;
  padding-bottom: 110%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.s-sec09__map-wrap iframe {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 87%;
  height: 100%;
  border: 0;
  display: block;
}




@media screen and (min-width: 580px) {
	/*.l-content {
		margin-top: 83px;
	}*/
	
  .l-header {
    position: fixed;
    top: 20px;  
    left: 20px; 
    width: auto; 
    z-index: 9999;
  }
  .l-header .l-header__link {
    display: block; 
  }
  .l-header .l-header__link .l-header__link-item {
    width: 130px;
  }
	
  .fixed-line {
  position: fixed;
  bottom: 0px;
  right: -10px;
  z-index: 1000;
  width: 408px;
}
	
.p-index-sec01 .s-sec01__link {
	top: 714px;
	right: 378px;
	width: 150px;
}
	
.p-index-sec01 {
  position: relative;
}

.marquee {
  position: absolute;
  bottom: 856px;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.marquee__inner {
  display: flex;
  gap: 8px;
  animation: marquee 45s linear infinite;
  width: max-content;   
}

.marquee__inner img {
  height: 274px;         
  width: auto;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
	
.marquee-link {
  position: absolute;
  top: 69.2%; 
  left: 85%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: block;
  width: 120px; 
}

.marquee-link img {
  width: 100%;
  height: auto;
}
	
	.p-index-sec02 .s-sec02__link ul li a img {
	border-radius: 8px;
}
	.p-index-sec02 .s-sec02__link {
		padding: 0 35px;
	}
	.p-index-sec02 .s-sec02__link ul li:nth-child(2) {
	margin-left: 0.5vw;
}
	.p-index-sec02 .s-sec02__link .s-sec02__linkline {
	margin-top: 0.5vw;
	margin-bottom: 2.5vw;
}

.p-index-sec04 .s-sec04__link ul {
	display: flex;
}
.p-index-sec04 .s-sec04__link ul li {
	width: 50%;
}
.p-index-sec04 .s-sec04__link ul li:nth-child(2) {
	margin-left: 0.5vw;
}
.p-index-sec04 .s-sec04__link ul li a img {
	border-radius: 8px;
}
.p-index-sec04 .s-sec04__link .s-sec04__linkline {
	margin-top: 0.5vw;
	margin-bottom: 2.5vw;
}
	
.rotate-deco {
  width: 226px;
}


.s-sec09__map {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}


.s-sec09__map-wrap {
  position: relative;
  padding-bottom: 110%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.s-sec09__map-wrap iframe {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  border: 0;
  display: block;
}

#sec09 {
  margin: 0;
  padding: 0;
}

.p-index-sec10 .sec10-item {
    position: relative;
    display: inline-block;
  }

  .p-index-sec10 .sec10-tel,
  .p-index-sec10 .sec10-line,
  .p-index-sec10 .sec10-entry {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }

  .p-index-sec10 .sec10-tel { bottom: 13%; }
  .p-index-sec10 .sec10-line { bottom: 14%; }
  .p-index-sec10 .sec10-entry { bottom: 23%; }

  .p-index-sec10 .sec10-tel img,
  .p-index-sec10 .sec10-line img,
  .p-index-sec10 .sec10-entry img {
    width: 350px;
    height: auto;
  }

.l-footer {
  position: relative; 
}

.marquee-footer {
  position: absolute;
  top: 0;       
  left: 0;
  width: 100%;
  overflow: hidden;
}

.marquee-footer__inner {
  display: flex;
  gap: 0;       
  animation: marquee-footer 40s linear infinite;
  width: max-content;
}

.marquee-footer__inner img {
  height: 260px; 
  width: auto;
}

@keyframes marquee-footer {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}	
	
}

@media screen and (max-width: 579px) {
	
   .l-header {
	position: fixed;
	top: 1.5%;
	left: 52.5%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 9999;
}
.l-header .l-header__link {
	display: flex;
}
.l-header .l-header__link .l-header__link-item {
	width: 25%;
}

  .fixed-line {
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 1000;
  width: 100%;
}
	
p-index-sec01 {
  position: relative;
}

.marquee {
  position: absolute;
  bottom: 30.5%;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.marquee__inner {
  display: flex;
  gap: 8px;          
  animation: marquee 45s linear infinite; 
  width: max-content;    
}

.marquee__inner img {
  height: 207px;          
  width: auto;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
	
.marquee-link {
  position: absolute;
  top: 69.5%; 
  left: 83%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: block;
  width: 97.5px; 
}

.marquee-link img {
  width: 100%;
  height: auto;
}
	
  .p-index-sec10 .sec10-item {
    position: relative;
    display: block;
    margin-bottom: 10px;
  }

  .p-index-sec10 .sec10-tel,
  .p-index-sec10 .sec10-line,
  .p-index-sec10 .sec10-entry {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }

  .p-index-sec10 .sec10-tel { bottom: 12%; }
  .p-index-sec10 .sec10-line { bottom: 13%; }
  .p-index-sec10 .sec10-entry { bottom: 22%; }

  .p-index-sec10 .sec10-tel img,
  .p-index-sec10 .sec10-line img,
  .p-index-sec10 .sec10-entry img {
    width: 242px;
    height: auto;
  }
	
.l-footer {
  position: relative;
}

.marquee-footer {
  position: absolute;
  top: 0;           
  left: 0;
  width: 100%;
  overflow: hidden;
}

.marquee-footer__inner {
  display: flex;
  gap: 0;           
  animation: marquee-footer 40s linear infinite;
  width: max-content;
}

.marquee-footer__inner img {
  height: 180px;  
  width: auto;
}

@keyframes marquee-footer {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}	

}

































