@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Noto Sans CJK JP"), local("Noto Sans JP"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Light.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Light.woff) format("woff"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Light.otf) format("opentype");
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Noto Sans CJK JP"), local("Noto Sans JP"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.woff) format("woff"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.otf) format("opentype");
}

/* colors */
/*--------------------------------------------/
                    common
/--------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  height: 100%;
  -webkit-overflow-scrolling: touch;
}

html {
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0;
  color: #272727;
  padding: 0;
  margin: 0;
  background: white;
}

section {
  padding-bottom: 28px;
}

.inner {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 900px;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

strong {
  font-weight: 500;
}

h2 {
  margin-top: 0;
  margin-bottom: 2em;
  padding: 0.5em 0;
}

h2 span {
  display: block;
}

a,
a:visited {
  color: inherit;
  -webkit-transition: .25s linear;
  transition: .25s linear;
}

a:hover,
a:visited:hover {
  opacity: .6;
}

ul, ol {
  font-weight: 500;
  letter-spacing: 1px;
}

ul li, ol li {
  margin-bottom: 10px;
}

ul li:last-child, ol li:last-child {
  margin-bottom: 0;
}

.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 910px;
  margin: 0 10px;
  padding: 0;
  list-style: none;
}

.gallery li {
  width: 50%;
  padding: 5px;
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 920px;
  margin: auto;
}

i {
  font-style: normal;
}

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

img,
video {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.youtube {
  display: block;
  max-width: 720px;
  margin: auto;
  border: 2px solid #efefef;
}

.photo {
  max-width: 400px;
}

.button {
  display: block;
  margin: auto;
  max-width: 480px;
  outline: none;
  margin-top: 70px;
  overflow: hidden;
  position: relative;
}

.button::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
  position: absolute;
  bottom: 0;
  left: -100%;
  -webkit-animation: shine 4s linear  2s infinite;
          animation: shine 4s linear  2s infinite;
}

@-webkit-keyframes shine {
  0% {
    left: -100%;
  }
  10% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }
  10% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.button + p {
  margin-bottom: 60px;
}

.button + p.no-margin {
  margin-bottom: 0;
}

.uppercase {
  text-transform: uppercase;
}

.marking {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(65%, #fddb3a));
  background: linear-gradient(transparent 65%, #fddb3a 65%);
  font-weight: 500;
}

.accent {
  color: #bb1224;
  font-weight: 500;
  font-size: 0.9em;
}

.underline {
  text-decoration: underline;
  font-weight: 500;
}

@media (min-width: 768px) {
  body {
    font-size: 1.8rem;
    line-height: 1.8;
  }
  .inner {
    padding-left: 30px;
    padding-right: 30px;
  }
  .button {
    width: 100%;
  }
  .button + p {
    text-align: center;
    margin-bottom: 90px;
  }
  .gallery {
    margin: 0 20px;
  }
  .gallery li {
    width: calc(100% / 3);
    padding: 10px;
  }
  .gallery2x2 {
    margin: 0;
  }
  .gallery2x2 li {
    width: 50%;
  }
  .flexbox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .flexbox.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .flexbox.reverse > p {
    margin-bottom: 0;
  }
  .flexbox > div {
    width: 50%;
  }
  .flexbox h3 {
    margin-top: 0;
  }
}

@media (min-width: 768px) and (-ms-high-contrast: none) {
  .gallery {
    margin: 0 20px;
  }
  .gallery li {
    width: calc(100% / 3);
    padding: 10px;
  }
  .gallery li:first-child, .gallery li:nth-child(4) {
    width: calc((100% / 3) - 1px);
  }
  .gallery2x2 {
    margin: 0;
  }
  .gallery2x2 li {
    width: 50%;
  }
}

@media (min-width: 991px) {
  .inner {
    max-width: 950px;
  }
  .flexbox {
    padding: 0;
  }
  .gallery {
    margin: 3em auto;
  }
  .youtube {
    margin: 90px auto;
  }
  .button {
    margin-top: 100px;
  }
  .button + p {
    margin-bottom: 60px;
  }
}

@media (min-width: 1200px) {
  body {
    font-size: 2rem;
    line-height: 1.9;
  }
  .inner {
    padding-left: 50px;
    padding-right: 50px;
    max-width: 990px;
  }
  h2 .inner {
    font-size: 1.3em;
    border: none;
  }
  section {
    padding-bottom: 100px;
  }
  .gallery {
    max-width: 920px;
  }
  .gallery li {
    padding: 15px;
  }
}

/*--------------------------------------------/
                    header
/--------------------------------------------*/
header {
  width: 100%;
}

header p {
  font-size: 0.83em;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
  margin: 0;
  padding: 1em 0;
}

header h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2.2em;
  line-height: 1.5;
  padding: 2em 15px;
  margin-top: 0;
  margin-bottom: 0;
  color: white;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.9);
  background: rgba(8, 28, 44, 0.4);
  position: relative;
}

header h1::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url("images/main-image.jpg") no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

header h1 .inner {
  display: block;
  width: 100%;
}

@media (min-width: 1200px) {
  header p {
    font-size: 1em;
  }
  header h1 {
    font-size: 2.8em;
    padding: 3em 0;
  }
}

/*--------------------------------------------/
                     main
/--------------------------------------------*/
main h2 {
  font-size: 1.175em;
  text-align: center;
  background: #3282b8;
  color: white;
  padding: 15px 0;
}

main h2.service {
  font-size: 1.2em;
  padding: 10px 15px;
}

main section > h2 {
  margin-bottom: 70px;
  position: relative;
}

main section > h2 span.inner {
  display: block;
  letter-spacing: 0;
  position: relative;
  z-index: 2;
}

main section > h2::after {
  content: '';
  display: block;
  border: 40px solid #3282b8;
  border-top: none;
  border-left: none;
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: -27px;
  z-index: 0;
}

main p {
  margin-bottom: 1.9em;
}

.outline {
  background: white;
  border-radius: .8em;
  margin-top: 6.5em;
  margin-bottom: 4em;
}

.outline h3 {
  margin-top: 0;
  margin-bottom: 0.4em;
}

.outline p + h3 {
  margin-top: 60px;
}

.outline .flexbox > p {
  margin-top: 0;
  width: auto;
}

.outline .flexbox > div {
  padding: 0;
}

.outline h4 {
  margin: .5em 0 1em;
}

.outline hr {
  border-top: 1px solid #000;
  margin-bottom: 1.2em;
}

.outline ul {
  list-style: none;
  font-size: 90%;
  margin: 0;
  margin-bottom: 2em;
  padding: 0;
}

.outline li {
  font-size: 0.85em;
  margin-bottom: 5px;
  font-weight: normal;
}

.checklist {
  background: white;
  border-radius: .3em;
  border: 1px solid #ddd;
  padding: 0.8em .5em;
  margin-bottom: 2em;
  list-style: none;
}

.checklist li {
  padding: 0 0 0 1.5em;
  position: relative;
}

.checklist li::before {
  content: '';
  width: 1em;
  height: 1em;
  display: block;
  background: url("images/checked.svg");
  position: absolute;
  top: .3em;
  left: 0;
}

h2.attention {
  max-width: 660px;
  margin: auto;
  background: inherit;
  font-size: .95em;
  color: black;
  padding: 10px 15px;
  border: 1px solid #343434;
  border-bottom: none;
  margin-bottom: 0;
}

h2.attention img {
  width: 1.2em;
  height: 1.2em;
  margin-top: 0.35em;
  margin-right: 10px;
}

h2.attention + ul {
  border: 1px solid #343434;
  border-top: none;
  max-width: 660px;
  margin: auto;
  margin-top: 0;
  padding: 1em 1em 1em 2em;
  border-top: none;
  background: white;
  font-size: 0.8em;
}

h2.attention + ul li {
  margin-bottom: 5px;
}

.flexbox.service {
  display: -ms-grid;
  display: grid;
  place-content: center;
}

.flexbox.service > div {
  padding: 0;
  background: white;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  letter-spacing: 0;
}

.flexbox.service h3 {
  background: #0f4c75;
  color: white;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 2px;
  text-align: center;
  padding: 5px;
  margin: 0;
}

.flexbox.service .accent {
  text-align: center;
  font-size: 2.4rem;
  margin: 0;
  padding: .5em 0;
}

.flexbox.service p + p {
  padding: 0 8px;
  margin: 0;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #343434;
}

@media (min-width: 768px) {
  .outline .flexbox {
    padding: 0;
  }
  .flexbox.media p {
    width: calc(50% - 10px);
  }
  .resize {
    padding-left: 30px;
  }
  h2.attention + ul {
    padding: 1em 4em;
  }
  h2.attention + ul + p {
    max-width: 660px;
    margin: 20px auto;
    font-size: 80%;
  }
  .flexbox.service {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .flexbox.service > div {
    width: calc((100% / 3) - 10px);
    max-width: 290px;
  }
  .flexbox.service .accent {
    font-size: 1em;
  }
  .flexbox.service p + p {
    font-size: 1.3rem;
    padding: 0 10px;
    margin-bottom: 20px;
  }
}

@media (min-width: 1200px) {
  .flexbox.service .accent {
    font-size: 2.4rem;
  }
  .flexbox.service p + p {
    padding: 0 14px;
    font-size: 1.6rem;
  }
  .checklist {
    font-size: 1.1em;
  }
}

/*--------------------------------------------/
                    footer
/--------------------------------------------*/
footer {
  padding-top: 1em;
  padding-bottom: 1em;
  background: #343434;
}

footer ul {
  padding: 10px 0;
  list-style: none;
  font-size: 1.5rem;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer li {
  margin-bottom: 20px;
  white-space: nowrap;
  color: white;
}

footer a {
  text-decoration: none;
  padding-left: 1.3em;
  position: relative;
}

footer a::before {
  content: '';
  display: block;
  width: 1em;
  height: 1em;
  background: url("images/list.svg");
  position: absolute;
  top: .3em;
  left: 0;
}

@media (min-width: 768px) {
  footer li {
    margin-right: 30px;
    margin-bottom: 0;
  }
}
/*# sourceMappingURL=style.css.map */