@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@100..900&family=Zen+Kaku+Gothic+New&display=swap");
html, body, h1, h2, h3, h4, h5, h6, p,
ul, ol, li, dl, dt, dd, a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  line-height: 1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

/*a:hover { opacity:0.7;filter:alpha(opacity=70);-ms-filter: "alpha( opacity=70 )"; }*/
li {
  list-style: none;
}

img {
  max-width: 100%;
}

html {
  font-size: 62.5%;
  font-weight: 400;
  color: #333;
  -webkit-text-size-adjust: 100%;
  /*	scroll-behavior: smooth;*/
  scroll-padding-top: 90px;
}

body {
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #222;
  background: #fff;
  background: #1cb0ab;
  overflow-x: hidden;
}

.pcv {
  display: none;
}

.spv {
  display: block;
}

@media (992px <= width) {
  .pcv {
    display: block;
  }
  .spv {
    display: none;
  }
}
.floL {
  float: left;
}

.floR {
  float: right;
}

.clear {
  content: "";
  display: table;
  clear: both;
  zoom: 1;
}

.ph-img {
  width: 100%;
  height: auto;
}

.lato {
  font-family: "Lato", sans-serif;
}

.maru {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
}

.inner {
  width: auto;
  margin: 0 20px;
}
@media (768px <= width) {
  .inner {
    margin: 0 8%;
  }
}
@media (992px <= width) {
  .inner {
    max-width: 1120px;
    /*width:100%;
    width:auto;
    margin:0 10%;*/
  }
}
@media (1200px <= width) {
  .inner {
    margin: 0 auto;
  }
}
.inner::after {
  content: "";
  display: table;
  clear: both;
  zoom: 1;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
}

.l-wrap {
  background: #1cb0ab;
}

/*********************************************************************************************

	TEST

**********************************************************************************************/
@media (0 <= width) {
  .testA {
    background-color: #000;
  }
}
@media (576px <= width) {
  .testA {
    background-color: #889;
  }
}
@media (768px <= width) {
  .testA {
    background-color: #a12;
  }
}
@media (992px <= width) {
  .testA {
    background-color: #9c0;
  }
}
@media (1200px <= width) {
  .testA {
    background-color: #969;
  }
}
/*********************************************************************************************

	HEADER

**********************************************************************************************/
#header {
  /*
  background: linear-gradient(rgba(0,0,0,1),rgba(0,0,0,0));
  */
  padding: 10px 0;
}

.header-inner {
  background-color: #f63;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: center;
}

.siteid {
  background-color: #96c;
  margin-right: 30px;
}
.siteid a {
  display: block;
  text-indent: -9999px;
  background: url(../img/siteid.png) 0 0 no-repeat;
  background-size: 100%;
  width: 150px;
  height: 43px;
}

/* SP - menu button */
.l-header__btn {
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 110;
  background-color: none;
}
@media (992px <= width) {
  .l-header__btn {
    display: none;
  }
}

.l-header__btn div {
  width: 20px;
  height: 21px;
  margin: 13px 0 13px 16px;
  position: relative;
  transition: all 0.4s;
  box-sizing: border-box;
  z-index: 20;
}

.l-header__btn div span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.4s;
}

.l-header__btn div span:nth-of-type(1) {
  top: 5px;
}

.l-header__btn div span:nth-of-type(2) {
  top: 12px;
}

.l-header__btn div span:nth-of-type(3) {
  bottom: 0px;
}

.l-header__btn.is-open span {
  background-color: #fff;
}

.l-header__btn.is-open span:nth-of-type(1) {
  transform: translateY(7px) rotate(-45deg);
}

.l-header__btn.is-open span:nth-of-type(2) {
  opacity: 0;
}

.l-header__btn.is-open span:nth-of-type(3) {
  transform: translateY(-7px) rotate(45deg);
}

/* SP - overlay*/
.sp-nav {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 100vh;
  background-color: #c69;
}

.overlay {
  background-color: #000;
  cursor: pointer;
  height: 100vh;
  position: fixed;
  top: 55px;
  left: 0;
  opacity: 0.6;
  transition: all 0.4s;
  visibility: hidden;
  visibility: visible;
  width: 100vw;
  z-index: -1;
}

.js-accordion_inner {
  display: none;
}

@media (992px <= width) {
  .sp-nav {
    display: inline-block;
    position: relative;
    top: 0;
    width: auto;
    height: 100%;
  }
  .overlay,
  .js-accordion_inner {
    display: none;
  }
}
/*********************************************************************************************

	FOOTER

**********************************************************************************************/
#footer {
  background: url(../img/bg_2.jpg) 0 0 repeat;
  background-size: cover;
}

#page_top {
  display: block;
  position: fixed;
  bottom: 20%;
  right: 50px;
  opacity: 1;
  z-index: 500;
}
@media screen and (max-width: 767px) {
  #page_top {
    bottom: 15%;
  }
}

#page_top a {
  display: block;
  text-decoration: none;
  position: relative;
  color: #1cb0ab;
  font-size: 1.2rem;
}
#page_top a span {
  position: relative;
  padding: 55px 0 0 0;
}
#page_top a span::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: url(../img/pagetop.png) 0 0 no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 7px;
}

/*********************************************************************************************

	MAIN - contents

**********************************************************************************************/
#main {
  margin: 0;
  padding: 0;
}

/*
.mv-area {
  background-color: #9c0;
  text-align: center;
  padding: 80px 0;
}
*/
.junbi {
  text-align: center;
  padding-top: 8em;
}
.junbi p {
  font-size: 1.8rem;
  margin-top: 2em;
}

/*==========================================================================
grid
==========================================================================
.box-grid {
  display:flex;
  justify-content: space-between;
  flex-wrap:wrap;
}
.box-grid_c {
  display:flex;
  justify-content: center;
  flex-wrap:wrap;
}
.box-grid_s {
  display:flex;
  justify-content: start;
  flex-wrap:wrap;
}
.box-grid_e {
  display:flex;
  justify-content: end;
  flex-wrap:wrap;
}

@include base.pcView {
  .is-items { align-items:center; }
  .is-reverse { flex-direction: row-reverse; }
}

.is-column { 
  @include base.spView {
    flex-flow: column; 
  }
}
*//*# sourceMappingURL=cmn.css.map */