<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&amp;display=swap");

/*----------------------------------------
共通
----------------------------------------*/

html {
  scroll-behavior: smooth;
}

img {
  vertical-align: bottom;
}

@media screen and (min-width: 769px) {
  .sp-view {
    display: none !important;
  }
  a:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 768px) {
  img {
    width: 100%;
  }
  .pc-view {
    display: none !important;
  }
}

/*----------------------------------------
header【ヘッダーレイアウト】
----------------------------------------*/

header {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 120px;
  background-color: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

header .hdr_wrap {
  position: relative;
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

header .hdr_wrap .hdr_logo {
  width: 240px;
  margin-right: 210px;
}

header .hdr_wrap .hdr_btn ol {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

header .hdr_wrap .hdr_btn ol li {
  width: 300px;
  height: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 14px;
}

header .hdr_wrap .hdr_btn ol li img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  header {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: calc(60 * (100vw / 375));
    background-color: #fff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  }

  header .hdr_wrap {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
  }

  header .hdr_wrap .hdr_logo {
    width: calc(130 * (100vw / 375));
    margin: 0 calc(50 * (100vw / 375)) 0 calc(15 * (100vw / 375));
  }

  header .hdr_wrap .hdr_btn ol {
    display: flex;
    flex-wrap: wrap;
    gap: calc(20 * (100vw / 375));
  }

  header .hdr_wrap .hdr_btn ol li {
    width: calc(120 * (100vw / 375));
    height: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 14px;
  }
}

/*----------------------------------------
.burgermenu【ドロワー＞ボタン】
----------------------------------------*/
.burgermenu {
  position: absolute;
  z-index: 99999;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 120px;
  height: 120px;
  background-color: #fff;
}

.burgermenu span {
  display: inline-block;
  transition: all 0.2s;
  position: absolute;
  left: 40px;
  height: 3px;
  border-radius: 2px;
  background-color: #333;
  width: 40px;
}

.burgermenu span:nth-of-type(1) {
  top: 43px;
}

.burgermenu span:nth-of-type(2) {
  top: 58px;
}

.burgermenu span:nth-of-type(3) {
  top: 73px;
}

.burgermenu.active span:nth-of-type(1) {
  top: 58px;
  left: 40px;
  transform: translateY(0) rotate(-45deg);
  width: 40px;
}

.burgermenu.active span:nth-of-type(2) {
  opacity: 0;
}

.burgermenu.active span:nth-of-type(3) {
  top: 58px;
  left: 40px;
  transform: translateY(0) rotate(45deg);
  width: 40px;
}

/*for SP*/
@media screen and (max-width: 768px) {
  .burgermenu {
    position: absolute;
    z-index: 99999;
    top: 0;
    right: 0;
    cursor: pointer;
    width: calc(60 * (100vw / 375));
    height: calc(60 * (100vw / 375));
    background-color: #fff;
  }

  .burgermenu span {
    display: inline-block;
    transition: all 0.2s;
    position: absolute;
    left: calc(16 * (100vw / 375));
    height: calc(3 * (100vw / 375));
    border-radius: calc(3 * (100vw / 375));
    background-color: #333;
    width: calc(30 * (100vw / 375));
  }

  .burgermenu span:nth-of-type(1) {
    top: calc(19 * (100vw / 375));
  }

  .burgermenu span:nth-of-type(2) {
    top: calc(29 * (100vw / 375));
  }

  .burgermenu span:nth-of-type(3) {
    top: calc(39 * (100vw / 375));
  }

  .burgermenu.active span:nth-of-type(1) {
    top: calc(28 * (100vw / 375));
    left: calc(16 * (100vw / 375));
    transform: translateY(0) rotate(-45deg);
    width: calc(33 * (100vw / 375));
  }

  .burgermenu.active span:nth-of-type(2) {
    opacity: 0;
  }

  .burgermenu.active span:nth-of-type(3) {
    top: calc(28 * (100vw / 375));
    left: calc(16 * (100vw / 375));
    transform: translateY(0) rotate(45deg);
    width: calc(33 * (100vw / 375));
  }
}

/*----------------------------------------
#menu【ドロワー＞中身】
----------------------------------------*/

#menu {
  position: absolute;
  z-index: 9999;
  top: 120px;
  right: 0;
  width: 600px;
  height: calc(100vh - 120px);
  margin: 0;
  padding: 0;
  background: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  display: none;
  opacity: 0;
}

#menu.panelactive {
  display: block;
  opacity: 1;
}

#menu::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

#menu::-webkit-scrollbar-track {
  background: #fdeee6;
}

#menu::-webkit-scrollbar-thumb {
  background: #ff9861;
  border-radius: 5px;
}

#menu ul {
  border-top: solid 1px #eee;
}

#menu ul li {
  background-color: #fff;
  border-bottom: solid 1px #eee;
  list-style: none;
}

#menu ul li a {
  display: block;
  width: 100%;
  font-size: 20px;
  text-align: center;
  box-sizing: border-box;
  color: #484848;
  text-decoration: none;
  padding: 20px;
}

#menu ul li a:hover {
  color: #eb5505;
  opacity: 1;
}

#menu ul li a span {
  font-size: 12px;
}

#menu ol {
  background-color: #fff;
  text-align: center;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

#menu ol li img {
  width: 400px;
}

/*for SP*/
@media screen and (max-width: 768px) {
  #menu {
    position: absolute;
    z-index: 9999;
    top: calc(60 * (100vw / 375));
    right: 0;
    width: 100%;
    height: calc(100vh - (60 * (100vw / 375)));
    margin: 0;
    padding: 0;
    background: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    display: none;
    opacity: 0;
  }
  
  #menu.panelactive {
    display: block;
    opacity: 1;
  }
  
  #menu::-webkit-scrollbar {
    width: calc(10 * (100vw / 375));
    height: calc(10 * (100vw / 375));
  }
  
  #menu::-webkit-scrollbar-track {
    background: #fdeee6;
  }
  
  #menu::-webkit-scrollbar-thumb {
    background: #ff9861;
    border-radius: calc(5 * (100vw / 375));
  }
  
  #menu ul {
    border-top: solid 1px #eee;
  }
  
  #menu ul li {
    background-color: #fff;
    border-bottom: solid 1px #eee;
    list-style: none;
  }
  
  #menu ul li a {
    display: block;
    width: 100%;
    font-size: calc(14 * (100vw / 375));
    text-align: center;
    box-sizing: border-box;
    color: #484848;
    text-decoration: none;
    padding: calc(10 * (100vw / 375)) 0;
  }
  
  #menu ul li a:hover {
    color: #eb5505;
    opacity: 1;
  }
  
  #menu ul li a span {
    font-size: calc(12 * (100vw / 375));
  }
  
  #menu ol {
    background-color: #fff;
    text-align: center;
    padding: calc(20 * (100vw / 375)) 0;
    display: flex;
    flex-direction: column;
    gap: calc(20 * (100vw / 375));
    justify-content: center;
  }
  
  #menu ol li img {
    width: calc(300 * (100vw / 375));
  }
}

/*----------------------------------------
footer【フッターレイアウト】
----------------------------------------*/
footer {
  width: 100%;
  height: auto;
}

footer p,
footer ul {
  width: 1000px;
  margin: 0 auto;
  font-size: 14px;
}

footer ul li {
  list-style-type: disc;
  margin-left: 2em;
}

footer .ftr01 p:nth-of-type(1),
footer .ftr01 p:nth-of-type(2) {
  font-size: 18px;
}

footer .ftr01 {
  background-color: #e8e8dd;
  padding: 60px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer .ftr02 {
  background-color: #f2f2ed;
  padding: 60px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer .copy {
  background-color: #fff;
  padding: 15px 0;
  text-align: center;
  font-size: 12px;
}

/*for SP*/
@media screen and (max-width: 768px) {
  footer p,
  footer ul {
    width: calc(335 * (100vw / 375));
    font-size: calc(12 * (100vw / 375));
  }

  footer .ftr_ttl {
    font-size: calc(16 * (100vw / 375));
  }

  footer .ftr01 {
    padding: calc(30 * (100vw / 375)) 0;
    gap: calc(10 * (100vw / 375));
  }

  footer .ftr02 {
    padding: calc(30 * (100vw / 375)) 0;
    gap: calc(10 * (100vw / 375));
  }

  footer .copy {
    padding: calc(10 * (100vw / 375)) 0;
    font-size: calc(10 * (100vw / 375));
  }
}

/*----------------------------------------
.pagetop【ページトップに戻るボタン】
----------------------------------------*/
.pagetop {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.pagetop a::after {
  content: "";
  width: 15px;
  height: 15px;
  border: 0;
  border-top: solid 3px #fff;
  border-left: solid 3px #fff;
  position: absolute;
  top: 35px;
  left: 30px;
  transform: rotate(45deg);
}

/*for SP*/
@media screen and (max-width: 768px) {
  .pagetop {
    bottom: calc(10 * (100vw / 375));
    right: calc(10 * (100vw / 375));
    width: calc(40 * (100vw / 375));
    height: calc(40 * (100vw / 375));
    border-radius: calc(20 * (100vw / 375));
  }

  .pagetop a::after {
    width: calc(10 * (100vw / 375));
    height: calc(10 * (100vw / 375));
    border-top: solid 3px #fff;
    border-left: solid 3px #fff;
    top: calc(16 * (100vw / 375));
    left: calc(13 * (100vw / 375));
  }
}
</pre></body></html>