<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");

/*--------------------------------------------------------------------------------
header／footer／pagetop／cta_fixed
--------------------------------------------------------------------------------*/

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

html {
  scroll-behavior: smooth;
  font-size: 62.5%; /*1rem=10px*/
}

body {
  font-size: 1.6rem; /*指定がない場合16pxに調整*/
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #444;
}

img {
  vertical-align: bottom;
}

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

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

/*----------------------------------------
.pagetop【ページトップに戻るボタン】
----------------------------------------*/
.pagetop {
  position: fixed;
  z-index: 999;
  bottom: 50px;
  right: 50px;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

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

header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  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: 200px;
  margin-right: 140px;
}

header .hdr_wrap .hdr_btn {
  position: absolute;
  right: 0px;
  /* right: 120px; */
}

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

header .hdr_wrap .hdr_btn ol li {
  height: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 5px;
  font-size: 1.4rem;
}

header .hdr_wrap .hdr_btn ol li.col1 {
  width: 260px;
}

header .hdr_wrap .hdr_btn ol li.col2 {
  width: 200px;
}

@media screen and (max-width: 768px) {
  header {
    /* position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 999; */
    position: relative;
    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;
    justify-content: space-between;
    align-items: center;
    padding: 0 calc(20 * (100vw / 375));
    box-sizing: border-box;
  }

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

  header .hdr_wrap .hdr_btn {
    position: relative;
  }

  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: 1.4rem;
  }
}

/*----------------------------------------
.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: 4px;
  border-radius: 2px;
  background-color: #444;
  width: 40px;
  transform: translateX(-50%);
  left: 50%;
}

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

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

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

.burgermenu.active span {
  top: 50%;
}

.burgermenu.active span:nth-of-type(1) {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

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

.burgermenu.active span:nth-of-type(3) {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

/*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: #444;
    width: calc(30 * (100vw / 375));
    transform: translateX(-50%);
    left: 50%;
  }

  .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 {
    top: 50%;
  }

  .burgermenu.active span:nth-of-type(1) {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }

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

  .burgermenu.active span:nth-of-type(3) {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
}

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

#menu {
  position: absolute;
  z-index: 9999;
  top: 120px;
  right: 0;
  width: 600px;
  height: fit-content;
  /* height: calc(100vh - 80px); */
  margin: 0;
  padding: 0;
  background: #f2f2f2;
  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 li {
  list-style: none;
}

#menu ul li.ttl {
  font-size: 2rem;
  padding: 20px;
  color: #968c6c;
}

#menu ul,
#menu ul li + li {
  border-top: solid 1px #ddd;
}

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

#menu ul li a span {
  display: block;
  font-size: 1.2rem;
}

#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: #f2f2f2;
    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;
    height: fit-content;
  }

  #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 #ddd;
  }

  #menu ul li.ttl {
    font-size: 1.4rem;
    padding: calc(10 * (100vw / 375));
    color: #968c6c;
  }

  #menu ul li a {
    display: block;
    width: 100%;
    font-size: 1.4rem;
    text-align: left;
    box-sizing: border-box;
    color: #444;
    background: #f2f2f2;
    text-decoration: none;
    padding: calc(10 * (100vw / 375));
  }

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

  #menu ul li a span {
    font-size: 1.2rem;
  }

  #menu ol {
    background-color: #fff;
    text-align: center;
    padding: calc(20 * (100vw / 375)) 0;
    display: flex;
    flex-direction: inherit;
    flex-wrap: wrap;
    gap: calc(15 * (100vw / 375));
    justify-content: center;
    font-size: 1.2rem;
  }

  #menu ol li.col1,
  #menu ol li.col1 img {
    width: calc(335 * (100vw / 375));
  }

  #menu ol li.col2,
  #menu ol li.col2 img {
    width: calc(160 * (100vw / 375));
  }
}

/*----------------------------------------
footer【フッターレイアウト】
----------------------------------------*/
footer {
  width: 100%;
  height: auto;
  color: #001e45;
  font-size: 1.4rem;
}

.ftr01 {
  padding: 80px 0;
  background-color: #fff;
}

.ftr02 {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.ftr03 {
  padding: 10px 0;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  background-color: #001e45;
}

footer .heading {
  width: 1000px;
  margin: 0 auto 20px;
  font-size: 2.4rem;
  font-weight: 500;
}

footer ul {
  width: 1000px;
  margin: 0 auto;
  padding: 0 0 0 2em;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer ul li {
  list-style: disc;
}

/*for SP*/
@media screen and (max-width: 768px) {
  footer {
    margin-bottom: calc(100 * (90vw / 375));
  }

  .ftr01 {
    padding: calc(40 * (100vw / 375)) 0;
  }

  .ftr02 {
    padding: calc(40 * (100vw / 375)) 0;
  }

  .ftr03 {
    padding: calc(10 * (100vw / 375)) 0;
  }

  footer .heading {
    width: calc(335 * (100vw / 375));
    margin: 0 auto calc(20 * (100vw / 375));
    font-size: 1.8rem;
  }

  footer ul {
    width: calc(335 * (100vw / 375));
    gap: calc(10 * (100vw / 375));
  }
}
</pre></body></html>