@charset "UTF-8";



/************************************************************************
* reset
************************************************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: .2em;
  background: #f2f3f3;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  min-height: -moz-available;
  min-height: stretch;
  color: #231815;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .06em;
  line-break: strict;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  vertical-align: baseline;
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
}

a {
  display: inline-block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

a:hover, a:focus-visible {
  opacity: .7;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #F8F8F8;
  padding: .25em .5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: #F8F8F8;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #F8F8F8;
  padding: .25em .5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
html {
  font-size: 16px;
}

button {
  color: #231815;
}

/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  min-height: 100vh;
  min-height: 100dvh;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
  --main-color: #00aaec;
  --grad-start: #0059ff;
  --grad-end: #15b9ff;
  --cta-before: rgba(0, 54, 221, .13);
  --cta-after: rgba(0, 54, 221, .13);
  --cta-before-pc: var(--cta-before);
  --cta-after-pc: var(--cta-after);
  --graduate: linear-gradient(to right, var(--grad-start) 0, var(--grad-end) 60%);
  --graduate-bottom: linear-gradient(to bottom, var(--grad-start) 0, var(--grad-end) 60%);
  --graduate-top: linear-gradient(to top, var(--grad-start) 0, var(--grad-end) 60%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');
  --header-submenu-chevron: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.5 13.48"><g><polyline class="cls-1" points=".32 .42 8.68 5.98 .32 13.1" stroke="%23FFFFFF"/></g>svg>');

  /* ヘッダー高さ */
  --header-height: 60px;
}

.archive-download {
  margin-top: 70px;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

.archive-download__header {
  padding-top: 76px;
  padding-top: 4.75rem;
}

.archive-download__title {
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.archive-download__category {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.archive-download__category-item {
  display: inline-block;
  border: 1px solid;
  border-radius: .75rem;
  padding: 7px 19px;
  padding: .4375rem 1.1875rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
}

.archive-download__category-item.archive-download__category-item--active {
  border: 1px solid var(--main-color);
  background-color: var(--main-color);
  color: #fff;
}

.archive-download__main {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.archive-download__list {
  gap: 43px 0;
  gap: 2.6875rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.archive-download__footer {
  margin-top: 100px;
  margin-top: 6.25rem;
  text-align: center;
}

.download-thanks {
  margin-top: 70px;
  padding-top: 85px;
  padding-top: 5.3125rem;
  padding-bottom: 76px;
  padding-bottom: 4.75rem;
  text-align: center;
}

.download-thanks__title {
  color: #0e043a;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
}

.download-thanks__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  letter-spacing: .05em;
  line-height: 1.375;
}

.download-thanks__btn-area {
  margin-top: 42px;
  margin-top: 2.625rem;
  text-align: center;
}

.download-thanks__btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100vh;
  background-color: var(--main-color);
  width: 278px;
  width: 17.375rem;
  max-width: 100%;
  min-height: 65px;
  min-height: 4.0625rem;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.single-download {
  padding-bottom: 70px;
  padding-bottom: 4.375rem;
}

.single-download__header {
  margin-top: 70px;
  margin-top: 4.375rem;
  padding-top: 76px;
  padding-top: 4.75rem;
}

.single-download__title {
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.single-download__content {
  margin-top: 16px;
  margin-top: 1rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.375;
}

.single-download__main {
  gap: 38px;
  display: grid;
  grid-template-areas: 'form' 'thumbs';
  margin-top: 60px;
  margin-top: 3.75rem;
}

.single-download__thumbs {
  gap: 20px;
  display: grid;
  grid-area: thumbs;
}

.single-download__thumb {
  border: 1px solid rgba(0, 0, 0, .25);
  border-radius: 1rem;
  background-color: #fff;
  padding: 35px;
  padding: 2.1875rem;
}

.single-download__thumb img {
  aspect-ratio: 245/157;
  display: block;
  -webkit-filter: drop-shadow(7px 7px 5px rgba(170, 170, 170, .75));
  filter: drop-shadow(7px 7px 5px rgba(170, 170, 170, .75));
  margin-right: auto;
  margin-left: auto;
  border-radius: .75rem;
  width: 100%;
  max-width: 245px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.single-download__form {
  grid-area: form;
}

@media screen and (min-width: 768px) {

  html {
    font-size: 1.3913043478vw;
  }

  :root {
    --header-height: 80px;
  }

  .archive-download__title {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .download-thanks__title {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .single-download__title {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .single-download__main {
    gap: 0 min(2.5vw, 32px);
    grid-template-areas: revert;
    grid-template-columns: min(26.25vw, 336px) 1fr;
  }

  .single-download__thumbs {
    grid-area: revert;
  }

  .single-download__form {
    grid-area: revert;
  }
}

@media (min-width: 1150px) {

  html {
    font-size: 16px;
  }
}

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
  }
}