﻿@charset "UTF-8";

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

 * parts style
 *
 * 1. title
 * 2. parts

******************************/
/*****
 * 1. Heading
*****/

.lowHeading {
  overflow: hidden;
  padding: 1px 0;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.555;
}
.heading__border {
  display: inline-block;
  padding-left: 3rem;
  border-left: 2px solid #0b4281;
  color: #0b4281;
}

.lowHeading + .lowTxt {
  margin-top: 5rem;
}

.lowsubHeading {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.2;
}
.lowsubHeading .square {
  display: inline-block;
  margin-right: 20px;
  padding: 0.3rem 1rem 0.6rem;
  border: solid 1px #fff;
  letter-spacing: 0.1em;
  line-height: 1;
}
.lowsubHeading + .lowTxt {
  margin-top: 3rem;
}

.lowsubHeading__small {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.55;
}
.lowsubHeading__small + .lowTxt {
  margin-top: 2rem;
}

.imgHeading {
  position: relative;
  text-align: center;
}
.imgHeading img {
}
.imgHeading:after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  margin: 15px auto 0;
  background: #83b4d2;
}
@media only screen and (max-width: 736px) {
  .lowHeading {
    font-size: 2.4rem;
  }
  .heading__border {
    padding-left: 2rem;
  }

  .lowHeading + .lowTxt {
    margin-top: 2.5rem;
  }

  .lowsubHeading {
    font-size: 2rem;
  }
  .lowsubHeading .square {
    margin-right: 0;
    padding: 0.3rem 1rem 0.4rem;
  }
  .lowsubHeading + .lowTxt {
    margin-top: 1.5rem;
  }

  .lowsubHeading__small {
    font-size: 1.4rem;
  }
}
.lowHeading::before,
.lowHeading::after,
.lowsubHeading::before,
.lowsubHeading::after,
.lowsubHeading__small::before,
.lowsubHeading__small::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.lowHeading::before {
  margin-top: calc((1 - 1.555) * 0.5em);
}
.lowHeading::after {
  margin-bottom: calc((1 - 1.555) * 0.5em);
}
.lowsubHeading::before {
  margin-top: calc((1 - 1.2) * 0.5em);
}
.lowsubHeading::after {
  margin-bottom: calc((1 - 1.2) * 0.5em);
}
.lowsubHeading__small::before {
  margin-top: calc((1 - 1.55) * 0.5em);
}
.lowsubHeading__small::after {
  margin-bottom: calc((1 - 1.55) * 0.5em);
}

.lowTxt {
  font-size: 1.4rem;
  line-height: 2;
}
.lowTxt a {
  text-decoration: underline;
  color: #1071ae;
}

.lowTxt__small {
  font-size: 1.2rem;
  line-height: 2;
}

.lowTxt__large {
  font-size: 1.8rem;
  line-height: 2.22;
}
@media only screen and (max-width: 736px) {
  .lowTxt {
    font-size: 1.2rem;
    line-height: 1.8;
  }

  .lowTxt__small {
    font-size: 1.1rem;
  }

  .lowTxt__large {
    font-size: 1.4rem;
  }
}
.lowTxt::before,
.lowTxt::after,
.lowTxt__small::before,
.lowTxt__small::after,
.lowTxt__large::before,
.lowTxt__large::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.lowTxt::before {
  margin-top: calc((1 - 2) * 0.5em);
}
.lowTxt::after {
  margin-bottom: calc((1 - 2) * 0.5em);
}

.lowTxt__small::before {
  margin-top: calc((1 - 2) * 0.5em);
}
.lowTxt__small::after {
  margin-bottom: calc((1 - 2) * 0.5em);
}

.lowTxt__large::before {
  margin-top: calc((1 - 2.22) * 0.5em);
}
.lowTxt__large::after {
  margin-bottom: calc((1 - 2.22) * 0.5em);
}
@media only screen and (max-width: 736px) {
  .lowTxt::before {
    margin-top: calc((1 - 1.8) * 0.5em);
  }
  .lowTxt::after {
    margin-bottom: calc((1 - 1.8) * 0.5em);
  }
}

/*****
 * 2. Parts
*****/
[data-color="red"] {
  color: #c80e47;
}

/* flex */
.flex {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /*
		flex-direction: column;
*/
  justify-content: space-between;
}
.is-reverse {
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.is-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.is-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex > div {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.clm2__item {
  width: calc(496 / 1024 * 100%);
}
@media screen and (max-width: 767px) {
  .clm2__item {
    width: 100%;
  }
}

/* imgWrap */
.imgWrap {
  position: relative;
}

.imgWrap .caption {
  position: absolute;
  padding: 5px;
}

.caption--inLeft {
  bottom: 0;
  left: 0;
  text-align: left;
}

.caption--inUpLeft {
  top: 0;
  left: 0;
  text-align: left;
}
.caption--outLeft {
  top: 100%;
  left: 0;
  text-align: left;
}

.caption--inRight {
  bottom: 0;
  right: 0;
  text-align: right;
}
.caption--inUpRight {
  top: 0;
  right: 0;
  text-align: right;
}
.caption--outRight {
  top: 100%;
  right: 0;
  text-align: right;
}

.caption-white-shadow {
  color: #fff;
  text-shadow: 0px 0px 6px #000, 0px 0px 6px #000, 0px 0px 6px #000;
}

.color-white {
  color: #fff;
}
.color-black {
  color: #000;
}
