@charset "UTF-8";
/* Scss Document */
/*=============================================================
 共通【Reset】
=============================================================*/
body {
  margin: 0;
  padding: 0;
  font-weight: bold; }

.reset p {
  margin: 0;
  padding: 0; }
.reset header, .reset ul, .reset ol, .reset li, .reset dl, .reset dt, .reset dd, .reset figure, .reset figcaption, .reset span, .reset table, .reset th, .reset td, .reset address {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  list-style: none;
  font-style: normal;
  font-size: 100%; }
.reset table {
  border-collapse: collapse;
  border-spacing: 0; }
.reset img {
  border: none;
  margin: 0px;
  padding: 0px;
  vertical-align: bottom; }

.ico_link:before {
  content: "";
  display: inline-block;
  font-weight: bold;
  background-image: url(../images/common/ico_exlink.svg);
  background-repeat: no-repeat;
  background-position-y: 3px;
  color: #009B6F;
  margin-right: 0.5em;
  position: absolute;
  height: 20px;
  width: 15px;
  left: 0; }
  @media screen and (min-width: 760px) {
    .ico_link:before {
      background-position-y: 6px; } }

/*=============================================================
 共通BOX
=============================================================*/
.com_col2 {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap; }
  .com_col2 .left_box,
  .com_col2 .right_box {
    box-sizing: border-box;
    position: relative;
    width: 100%; }
    @media screen and (min-width: 760px) {
      .com_col2 .left_box,
      .com_col2 .right_box {
        width: 48%; } }

.com_col3 {
  display: flex;
  justify-content: flex-start;
  flex-flow: row wrap;
  width: 100%;
  box-sizing: border-box; }
  .com_col3 .colBox {
    box-sizing: border-box;
    margin-bottom: 3vw; }
    @media screen and (min-width: 760px) {
      .com_col3 .colBox:nth-child(3n-1) {
        margin: 3vw 3% 0 3%; } }
    @media screen and (min-width: 760px) {
      .com_col3 .colBox {
        width: 31.33%; } }

/*=============================================================
 共通ブラウザ型BOX
=============================================================*/
.com_winBox {
  border: 2px solid #000;
  background-color: #fff;
  position: relative;
  margin-top: 32px;
  box-sizing: border-box; }
  .com_winBox:before {
    content: "";
    display: block;
    background-color: #EEEEEF;
    border-radius: 10px 10px 0 0;
    border: 2px solid #000;
    height: 30px;
    position: absolute;
    top: -32px;
    left: -2px;
    width: 100%; }
  .com_winBox:after {
    content: "";
    display: block;
    width: 20%;
    height: 30px;
    background: url("../images/common/ico_win.svg");
    background-size: 80% auto;
    background-position: left center;
    background-repeat: no-repeat;
    position: absolute;
    top: -30px;
    left: 10px; }
  .com_winBox a {
    display: block;
    text-indent: 20px;
    position: relative; }
  .com_winBox .tit {
    position: absolute;
    top: -30px;
    width: 100%;
    line-height: 30px;
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 80%; }
    .com_winBox .tit.spg img {
      width: 1vw;
      max-width: 13px;
      min-width: 10px;
      vertical-align: middle;
      margin-right: 4px;
      margin-top: -2px; }

/*=============================================================
 共通ボタン
=============================================================*/
.com_btn01 a {
  display: block;
  background-color: #009B6F;
  color: #fff;
  border: 2px #231815 solid;
  position: relative;
  text-align: center;
  padding: 0;
  height: 60px;
  display: flex !important;
  justify-content: center;
  align-items: center; }
  @media screen and (min-width: 760px) {
    .com_btn01 a {
      display: inline-block;
      min-width: 300px; } }
  .com_btn01 a:hover {
    color: #fff;
    opacity: 0.7;
    -webkit-transition: all .3s;
    transition: all .3s; }
  .com_btn01 a:after {
    content: "";
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    background: url("../images/common/btn_arrow.svg");
    background-size: auto 100%;
    background-repeat: no-repeat;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -0.7em; }

/*=============================================================
 モーダルウィンドウ設定
=============================================================*/
.modal-content {
  width: auto;
  max-width: 800px;
  margin: 0;
  position: fixed;
  display: none;
  z-index: 102; }
  @media screen and (max-width: 760px) {
    .modal-content {
      overflow-y: scroll;
      overflow-x: hidden;
      max-height: 100%; } }

#modal-overlay {
  z-index: 100;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9); }
