/* sass layout */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  overscroll-behavior-y: none;
  line-height: 1;
  font-family: fot-tsukuardgothic-std, sans-serif;
  min-width: 1300px !important;
}

@media screen and (max-width: 768px) {
  body {
    min-width: 100% !important;
  }
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}


/* text：
テキストスタイル
------------------------------------- */
h1.h1-cmn01{
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  padding-top: 22px;
}

@media screen and (max-width: 768px) {
  h1.h1-cmn01 {
    font-size: 20px;
    font-size: 5.33333vw;
    padding-top: 5.33vw;
  }
}



h2.h-cmn01{
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  h2.h-cmn01 {
    font-size: 20px;
    font-size: 5.33333vw;
  }
}
h2.h-cmn01:after {
  content: "";
  display: block;
  width: 2px;
  height: 25px;
  background: #333;
  margin: 28px auto 35px;
}

@media screen and (max-width: 768px) {
  h2.h-cmn01:after {
    margin: 5.52% auto 6.13%;
    height: 6.66vw;
    width: 1px;
  }
}

h3{
    font-size: 22px;
    font-weight: bold;
    margin-top: 43px;
    margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 16px;
    font-size: 4.26667vw;
    margin-top: 6.93vw;
  }
}

h4{
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 17px;
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 16px;
    font-size: 4.26667vw;
  }
}
p{
    font-size: 17px;
    line-height: 1.76;
    text-align: justify;
    margin-bottom: 17px;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 14px;
    font-size: 3.73333vw;
    line-height: 1.71;
  }
}
p.p-cmn01 {
    line-height: 1.52;
    text-align: center;
}
@media screen and (max-width: 768px) {
  p.p-cmn01 {
    font-size: 14px;
    font-size: 3.73333vw;
    line-height: 1.85;
  }
}


/* color：
background
------------------------------------- */
.bg-blue{
  background-image: radial-gradient(circle farthest-corner at 10% 20%, rgba(234, 249, 249, 0.67) 0.1%, rgba(239, 249, 251, 0.63) 90.1%);
}



/* layout：
container
------------------------------------- */
.l-inner{
    width: 1300px;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-inner {
    width: 86.66%;
  }
}


.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

/* box：
３列ボックス　画像+見出し+p
------------------------------------- */


ul.imgbox-clm3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 96px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  ul.imgbox-clm3{
    margin-top: 10.66vw;
  }
}

ul.imgbox-clm3 li {
  width: 404px;
}

@media screen and (max-width: 768px) {
  ul.imgbox-clm3 li {
    width: 100%;
  }
}

ul.imgbox-clm3 li img {
  display: block;
  width: 100%;
}

ul.imgbox-clm3 li h3 {
    text-align: center;

}


ul.imgbox-clm3 li p {
  width: 360px;
  margin: 0 auto;
  text-align: justify;
  font-size: 15px;
  line-height: 1.73;
}

@media screen and (max-width: 768px) {
  ul.imgbox-clm3 li p {
    font-size: 14px;
    font-size: 3.73333vw;
    width: 100%;
    line-height: 1.71;
  }
}

@media screen and (max-width: 768px) {
  ul.imgbox-clm3 li + li {
    margin-top: 13.33vw;
  }
}



/* box：
５列ボックス　アイコン画像+見出し
------------------------------------- */

ul.iconbox-clm5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin-top: 117px;
}

@media screen and (max-width: 768px) {
  ul.iconbox-clm5 {
    margin-top: 12.57%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

ul.iconbox-clm5 li {
  width: 207px;
}

@media screen and (max-width: 768px) {
  ul.iconbox-clm5 li {
    width: 30.67%;
    position: relative;
  }
}

ul.iconbox-clm5 li img {
  display: block;
  width: 182px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  ul.iconbox-clm5 li img {
    width: 100%;
  }
}

ul.iconbox-clm5 li p {
  margin-top: 34px;
  font-weight: bold;
  font-size: 22px;
  text-align: center;
  line-height: 1.36;
}

@media screen and (max-width: 768px) {
  ul.iconbox-clm5 li p {
    font-size: 14px;
    font-size: 3.73333vw;
    position: absolute;
    bottom: 0;
    margin-bottom: -50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 120%;
  }
}



ul.iconbox-clm5 li + li {
  margin-left: 57px;
}

@media screen and (max-width: 768px) {
  ul.iconbox-clm5 li + li {
    margin-left: 3.27%;
  }
}

@media screen and (max-width: 768px) {
  ul.iconbox-clm5 li:nth-of-type(n+4) {
    margin-top: 23.4%;
  }
}

@media screen and (max-width: 768px) {
  .ul.iconbox-clm5 li:nth-of-type(2) p {
    margin-bottom: -40%;
  }
}



/* box：
ボックス１
------------------------------------- */

.readbox01 {
  background: url(../images/common/point.svg) no-repeat;
  width: 646px;
  padding-top: 260px;
  background-size: 100% auto;
  position: relative;
  margin: 120px auto 0;
}

.readbox01 > div {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: 70px;
  width: 517px;
}

@media screen and (max-width: 768px) {
  .readbox01{
    width: 100%;
    padding-top: 70.32%;
    background: url(../images/common/point_sp.svg) no-repeat;
    background-size: 100% auto;
  }

  .readbox01 > div {
    width: 84.35%;
    margin-top: 10.17%;
  }
}


/* box：
ボックス２
------------------------------------- */
.readbox02 {
  background: url(../images/common/point02.svg) no-repeat;
  width: 842px;
  background-size: 100% auto;
  margin: 120px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 76px 0 55px;
}

@media screen and (max-width: 768px) {
  .readbox02 {
    width: 100%;
    background: url(../images/common/point02_sp.svg) no-repeat;
    background-size: 100% 100%;
    display: block;
    margin: 12.26vw auto 0;
    padding: 12.26vw 0 0;
  }
}

.readbox02:before {
  content: "";
  display: block;
  width: 166px;
  padding-top: 166px;
  background-size: 100% auto !important;
}

@media screen and (max-width: 768px) {
  .readbox02:before {
    width: 26.66vw;
    padding-top: 26.66vw;
    margin: 0 auto;
  }
}

.readbox02 > div {
  width: 440px;
  margin-left: 70px;
}

@media screen and (max-width: 768px) {
  .readbox02 > div {
    margin-left: 0;
    width: 100%;
  }
}


@media screen and (max-width: 768px) {
  .readbox02 h3 {
    text-align: center;
    font-size: 16px;
    font-size: 4.26667vw;
    margin-top: 4.53vw;
  }
}

.readbox02 p {
  font-size: 17px;
  line-height: 1.76;
  margin-top: 17px;
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .readbox02 p {
    width: 73.6vw;
    margin: 4.8vw auto 0;
    font-size: 14px;
    font-size: 3.73333vw;
    padding-bottom: 7.46vw;
  }
}




/* btn：
大きめの白ボタン
------------------------------------- */
.btn-cmn01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 294px;
  background: #fff;
  border-radius: 25px;
  border: solid 1px #333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  padding: 18px 0;
  margin-top: 46px;
  position: relative;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .btn-cmn01 {
    width: 65.6vw;
    font-size: 14px;
    font-size: 3.73333vw;
    margin: 8vw auto 0;
    border-radius: 10vw;
  }
}

.btn-cmn01:after {
  content: "";
  display: block;
  background: url(../images/common/icon_arrow.svg) no-repeat;
  width: 17px;
  padding-top: 11px;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  margin-right: 25px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 768px) {
  .btn-cmn01:after {
    width: 4.53vw;
    padding-top: 1.86vw;
    margin-right: 4.53vw;
  }
}

.btn-cmn01:hover {
  background: #D8EFEF;
}

@media screen and (max-width: 768px) {
  .btn-cmn01:hover {
    background: #fff;
  }
}

.btn-cmn01:hover:after {
  -webkit-transition: .3s;
  transition: .3s;
  margin-right: 15px;
}

@media screen and (max-width: 768px) {
  .btn-cmn01:hover:after {
    margin-right: 4.53vw;
  }
}



/* btn：
小さめの白ボタン
------------------------------------- */
.btn-cmn01-sm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 150px;
  text-decoration: none;
  font-weight: bold;
  font-size: 12px;
  color: #333;
  border: solid 1px #333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px 0;
  margin: 26px auto 0;
  border-radius: 30px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .btn-cmn01-sm {
    margin-top: 9.55%;
    font-size: 10px;
    font-size: 2.66667vw;
    padding: 4.45% 0;
    width: 64.96%;
  }
}

.btn-cmn01-sm:after {
  content: "";
  display: block;
  width: 11px;
  padding-top: 8px;
  background: url(../images/top/icon/icon_arrow02.svg) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-right: 14px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 768px) {
  .btn-cmn01-sm:after {
    width: 7.84%;
    padding-top: 4.9%;
    margin-right: 8.82%;
  }
}

.btn-cmn01-sm:hover {
  background: #D8EFEF;
  -webkit-transition: .3s;
  transition: .3s;
}

.btn-cmn01-sm:hover:after {
  margin-right: 10px;
  -webkit-transition: .3s;
  transition: .3s;
}




/* btn：
大きめのオレンジボタン
------------------------------------- */
.btn-cmn02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 294px;
  border: solid 1px #333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 15px;
  color: #000;
  padding: 18px 0;
  font-weight: bold;
  text-decoration: none;
  border-radius: 25px;
  margin: 30px auto 0;
  position: relative;
  background: #FFCC7B;
}

@media screen and (max-width: 768px) {
  .btn-cmn02 {
    font-size: 14px;
    font-size: 3.73333vw;
    width: 65.6vw;
    padding: 3.7vw 0;
    border-radius: 10vw;
  align-items: center;
    -webkit-box-pack: center;
    margin: 4.53vw auto 0;
  }
}

.btn-cmn02:after {
  content: "";
  display: block;
  background: url(../images/common/icon_arrow.svg) no-repeat;
  width: 17px;
  padding-top: 16px;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  margin-right: 35px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 768px) {
  .btn-cmn02:after {
    content: "";
    display: block;
    width: 4.53vw;
    height: 1.86vw;
    background: url(../images/common/icon_arrow.svg) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    right: 0;
    margin-right: 4.53vw;
  }
}

.btn-cmn02:hover {
  background: #D8EFEF;
}

@media screen and (max-width: 768px) {
 .btn-cmn02:hover {
    background: #FFCC7B;
  }
}

.btn-cmn02:hover:after {
  margin-right: 25px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 768px) {
  .btn-cmn02:hover:after {
    margin-right: 4.53vw;
  }
}





/* btn：
アンダーラインボタン
------------------------------------- */
.btn-cmn03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
    color: #333;
    text-decoration: none;
}


.btn-cmn03:after {
  content: "";
  display: block;
  background: url(../images/top/icon/icon_arrow02.svg) no-repeat;
  width: 17px;
  padding-top: 11px;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.btn-cmn03:hover:after {
  right: -5px;
  -webkit-transition: .3s;
  transition: .3s;
}

.btn-cmn03 {
  width: 105px;
  font-weight: bold;
  text-align: center;
  margin-top: 26px;
  margin-left: auto;
  border-bottom: solid 1px #333;
  padding-bottom: 10px;
}

/*# sourceMappingURL=common.css.map */