@charset "UTF-8";
@import url("/css/root.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@900&display=swap');

.main .maxbold {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
}

.main h2.maxbold{
  margin-top: 40px;
}

.main .title_style1 {
  margin-top: 30px;
  background-color: var(--main-color);
  color: #fff;
  border: none;
}

.main .title_style2 {
  font-size: 1.2em;
  border-color: #dcdcdc;
  color: var(--main-text-color);
}

.main .sample {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

.main .sample .caption {
  margin-top: 10px;
  font-size: .9em;
  background-color: var(--sub-color);
  color: #fff;
  padding: 10px;
  text-align: center;
}

.main .sample .zoom {
  text-align: center;
  margin-top: 10px;
  font-size: .9em;
}

.main .sample .zoom span:hover {
  cursor: pointer;
}

.main .shadow {
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}

.main .highlight_block {
  position: relative;
  background: var(--gray-color);
  border: solid 1px #ddd;
}

.main .highlight_block .label {
  position: relative;
  background-color: #000;
  color: #fff;
  border-radius: 5px;
  padding: 5px 15px;
  margin-right: 5px;
  position: absolute;
  left: 10px;
  top: -10px;
  font-weight: bold;
}

.main .highlight_block .label:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top: 5px solid #000000;
}

.main .list li {
  list-style-type: disc;
  margin-left: 1em;
  margin-left: 1em;
  margin-bottom: 0.1em;
}

.main .highlight_block .title {
  margin-bottom: 5px;
}

@media (min-width: 480px) {
  .main .highlight_block .title {
    font-size: 1.1em;
  }
}

.main .btn_cta {
  text-align: center;
}

.main .btn_cta a {
  font-size: 2rem;
  font-weight: bold;
}

.main .btn_flex_free {
  border-top: solid 1px var(--gray-border-color);
  padding-top: 30px;
}

/*---------------------------------------
  intro
--------------------------------------- */
.intro h2 {
  text-align: center;
  color: var(--main-text-color);
  font-size: 1.6em;
  margin-bottom: 20px;
  font-feature-settings: "palt";
  letter-spacing: 1px;
}

@media screen and (min-width:768px) {
  .intro h2 {
    font-size: 2.2em;
  }
}

/*---------------------------------------
  compi
--------------------------------------- */

.main .compi .sample {
  max-width: 300px;
  margin: auto;
}

.main .compi .sample img {
  display: block;
  /* border: solid 2px var(--gray-border-color); */
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
  background-color: #fff;
}

.main .compi .grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
}

@media screen and (max-width:768px) {
  .main .compi .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/*---------------------------------------
  column
--------------------------------------- */
.main .column ul li{
  text-align: center;
}


/*---------------------------------------
  overlay
--------------------------------------- */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
  overflow: scroll;
  width: 100%;
  height: calc(100vh);
  background: rgba(50, 50, 50, 0.8);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.overlay::-webkit-scrollbar {
  display: none;
}

.overlay .close {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 999;
  color: #fff;
  font-size: 4rem;
}

.ovelray_block {
  position: absolute;
  top: 5.5rem;
  left: 50%;
  z-index: 100;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  text-align: center;
  width: 85vw;
}

.ovelray_block img {
  max-width: none;
}

#modal_sample_compi img {
  background-color: #fff;
  padding: 10px;
  box-sizing: border-box;
}

