﻿@charset "UTF-8";
/* ==============================================================
  foundation
============================================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;500;700&display=swap");
/*====================================
  0. Reset Style
    ----------------------------------
    Structure
    ----------------------------------
    - 0. Full Reset
    - 1. Border Box
    - 2. Objects
    - 3. List reset
    - 4. Blockquote reset
    - 5. link tag
    - 6. hr
    - 7. Computer code
    - 8. Form

    ----------------------------------
    Introduction
    ----------------------------------

    ----------------------------------
    Constitution
    ----------------------------------
    child of
    /assets/scss/_style.scss

    ----------------------------------
    Change Log
    ----------------------------------
    - 2019/11/21  Founding
    - 2020/07/06  FIX Comment

====================================*/
/*====================================

  - 0. Full Reset
--------------------------------------

====================================*/
html {
  line-height: 1;
  /* normalize.css */
  -webkit-text-size-adjust: 100%;
  /* normalize.css */
  -ms-overflow-style: scrollbar;
  /* from bootstrap */
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
header,
main,
footer,
menu,
nav,
section,
time,
mark,
audio,
video,
details,
summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: inherit;
  vertical-align: baseline;
  background-color: rgba(255, 255, 255, 0);
}

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

html * {
  max-height: 999999px;
}

/*====================================

  - 1. Border Box
--------------------------------------

====================================*/
*,
*::after,
*::before {
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0);
  z-index: 1;
  /*
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;*/
}

:invalid,
:-moz-submit-invalid,
:-moz-ui-invalid {
  box-shadow: none;
}

/*====================================

  - 2. Objects
--------------------------------------

====================================*/
img,
object,
embed {
  max-width: 100%;
  vertical-align: bottom;
}

/*====================================

  - 3. List reset
--------------------------------------
]
====================================*/
/* we use a lot of ULs that aren't bulleted. don't forget to restore the bullets within content. */
ul,
ol {
  list-style: none;
}

/*====================================

  - 4. Blockquote reset
--------------------------------------

====================================*/
blockquote,
q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

/*====================================

  - 5. link tag
--------------------------------------

====================================*/
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-style: inherit;
  font-weight: inherit;
  text-decoration: none;
  transition: 0.2s;
}
a:hover {
  transition: 0.2s;
}

/*====================================

  - 6. hr
--------------------------------------

====================================*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*====================================

  - 7. Computer code
--------------------------------------

====================================*/
/* standardize any monospaced elements */
pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
  font-size: 1em;
  /* nomalize.css */
}

/*====================================

  - 8. Form
--------------------------------------

====================================*/
/* hand cursor on clickable elements */
.is-clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
input[type=range],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button,
input,
select,
textarea {
  margin: 0;
  font-size: 100%;
  font: inherit;
}

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}

input,
select {
  vertical-align: middle;
}

input[type=radio] {
  vertical-align: text-bottom;
}

input[type=checkbox] {
  vertical-align: bottom;
}

select,
input,
textarea {
  font-size: 100%;
}

/*
Show the overflow in IE.
1. Show the overflow in Edge.
*/
button,
input {
  /* 1 */
  overflow: visible;
}

/*
Remove the inheritance of text transform in Edge, Firefox, and IE.
1. Remove the inheritance of text transform in Firefox.
*/
button,
select {
  /* 1 */
  text-transform: none;
}

/*
Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/*
Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/*
Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/*
Correct the padding in Firefox.
*/
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/*
1. Correct the text wrapping in Edge and IE.
2. Correct the color inheritance from `fieldset` elements in IE.
3. Remove the padding so developers are not caught out when they zero out fieldset` elements in all browsers.
*/
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/*
Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
  vertical-align: baseline;
}

/*
Remove the default vertical scrollbar in IE 10+.
*/
textarea {
  overflow: auto;
}

/*
1. Add the correct box sizing in IE 10.
2. Remove the padding in IE 10.
*/
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* formのリセットはmixins化予定 */
input,
button,
textarea,
select {
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* ==============================================================
  breack points
==============================================================*/
/* ==============================================================
    max-width
==============================================================*/
/* ==============================================================
  path
==============================================================*/
/* ==============================================================
  color
==============================================================*/
/* ==============================================================
  font size
==============================================================*/
/* ==============================================================
  px to rem
==============================================================*/
/*====================================
  0. Bace MIXINS
    ----------------------------------
    Structure
    ----------------------------------
    - 1. Font size
    - 2. Media Queries
    - 3. Button Reset
    - 4. Size
    - 5. Aspect Ratio
    - 6. Background Cover
    - 7. Padding & Margin

    ----------------------------------
    Introduction
    ----------------------------------

    ----------------------------------
    Constitution
    ----------------------------------
    child of
    /assets/scss/_style.scss

    ----------------------------------
    Change Log
    ----------------------------------
    - 2022/01/01  Founding

====================================*/
/*====================================

  - 1. Font size
--------------------------------------
  font-size のrem
  line-heightを求めるmixin
  基本数は$basic_font_sizeで設定
  @use "../../foundation/mixins";
  @include mixins.font-size(16);
  output:
  font-size: 1rem;

  @include mixins.font-size(16, 18);
  output:
  font-size: 1rem;
  line-height: 1.125;

====================================*/
/*====================================

  - 2. Media Queries

====================================*/
/*====================================

  - 3. Button Reset
--------------------------------------
  <button>スタイルをリセットするmixin

  @include button-reset;

====================================*/
/*====================================

  - 4. Size
--------------------------------------
  widthとheightを設定するmixin

  @include size(100px);
  output:
  width: 100px;
  height: 100px;

  @include size(100px, 200px);
  output:
  width: 100px;
  height: 200px;

====================================*/
/*====================================

  - 5. Aspect Ratio
--------------------------------------
  widthに対してpadding-topで高さを計算する

====================================*/
/*====================================

  - 6. Background Cover
--------------------------------------
  background-size: cover;のためのmixin

====================================*/
/*====================================

  - 7. Padding & Margin
--------------------------------------
  Padding と Margin のためのmixin

====================================*/
/*====================================
    0.8. justify
====================================*/
/*====================================
    0.9. Line Truncate
====================================*/
/*====================================
    0.10. Lines Truncate
====================================*/
/*====================================
    0.11. Absolute
====================================*/
/*====================================
    0.12. Max Width
====================================*/
/*====================================
  疑似クラス
====================================*/
/*====================================
  box-shadow
====================================*/
/*====================================
  background-image
====================================*/
/*====================================
  riangle
====================================*/
body,
input,
button,
textarea,
select {
  color: #333;
  font-size: 1rem;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic Medium", sans-serif;
  line-height: 1.4;
  letter-spacing: 0.05rem;
}

/* ==============================================================
  layout
==============================================================*/
.l-header {
  background-color: #ffffff;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}
.l-header-main {
  display: flex;
  align-items: center;
  gap: 48px;
  height: 80px;
  position: relative;
  z-index: 2;
}
.l-header-main__logo {
  width: 180px;
  flex-shrink: 0;
}
.js-hamburger--open .l-header-main__nav {
  opacity: 1;
  transition: all 0.4s linear 0.4s;
  z-index: 99;
  visibility: visible;
}
.l-header-main__nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 48px;
  z-index: 99;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100vw;
  min-height: calc(var(--vh, 1vh) * 93);
  opacity: 0;
  transition: all 0.4s linear;
  visibility: hidden;
}
@media screen and (min-width: 1280px) {
  .l-header-main__nav {
    position: relative;
    top: auto;
    flex-direction: row;
    justify-content: space-between;
    min-height: auto;
    visibility: visible;
    opacity: 1;
  }
}
.l-header-main-nav__lists {
  gap: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1280px) {
  .l-header-main-nav__lists {
    flex-direction: row;
  }
}
.l-header-main-nav__item:last-of-type {
  margin-right: 0;
}
.l-header-main-nav__item a {
  display: block;
  color: #333;
  font-size: 1rem;
  font-weight: bold;
  padding: 4px 8px;
  position: relative;
}
.l-header-main-nav__item a::before {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.05s linear;
}
.l-header-main-nav__item a:hover::before {
  width: 90%;
}
.l-header-main-nav__item--top a::before {
  background-color: #0082E9;
}
.l-header-main-nav__item--top a:hover {
  color: #0082E9;
}
.top .l-header-main-nav__item--top a {
  color: #0082E9;
}
.top .l-header-main-nav__item--top a::before {
  width: 90%;
}
.l-header-main-nav__item--news a::before {
  background-color: #EB7450;
}
.l-header-main-nav__item--news a:hover {
  color: #EB7450;
}
.news .l-header-main-nav__item--news a {
  color: #EB7450;
}
.news .l-header-main-nav__item--news a::before {
  width: 90%;
}
.l-header-main-nav__item--tips a::before {
  background-color: #48DBAE;
}
.l-header-main-nav__item--tips a:hover {
  color: #48DBAE;
}
.tips .l-header-main-nav__item--tips a {
  color: #48DBAE;
}
.tips .l-header-main-nav__item--tips a::before {
  width: 90%;
}
.l-header-main-nav__item--review a::before {
  background-color: #F26D81;
}
.l-header-main-nav__item--review a:hover {
  color: #F26D81;
}
.review .l-header-main-nav__item--review a {
  color: #F26D81;
}
.review .l-header-main-nav__item--review a::before {
  width: 90%;
}
.l-header-main-nav__item--column a::before {
  background-color: #94D629;
}
.l-header-main-nav__item--column a:hover {
  color: #94D629;
}
.column .l-header-main-nav__item--column a {
  color: #94D629;
}
.column .l-header-main-nav__item--column a::before {
  width: 90%;
}
.l-header-main-nav__item--beginner a::before {
  background-color: #ff3700;
}
.l-header-main-nav__item--beginner a:hover {
  color: #ff3700;
}
.beginner .l-header-main-nav__item--beginner a {
  color: #ff3700;
}
.beginner .l-header-main-nav__item--beginner a::before {
  width: 90%;
}
.l-header-main-nav__search {
  position: relative;
  display: flex;
}
.l-header-main-nav__search-bar {
  background-color: #F0F0F0;
  border-radius: 4px;
  width: 320px;
}
.l-header-main-nav__search-input {
  width: 100%;
  height: 48px;
  line-height: 48px;
  padding: 0 16px 0 40px;
  background: none;
  border: none;
  font-size: 0.75rem;
}
.l-header-main-nav__search-button {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
}
.l-header-main-nav__search-button span {
  display: block;
  width: 48px;
  height: 48px;
  background: url("../img/common/icon__search.svg") 50% 50% no-repeat;
}
.l-header__sub-content {
  padding-top: 16px;
  padding-bottom: 16px;
  background-color: #F9F9F9;
  border-top: solid 1px #EEEEEE;
  position: relative;
  z-index: 1;
}
.l-header-sub {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.l-header-sub__flag {
  position: relative;
  background-color: #0082E9;
  line-height: 32px;
  font-size: 0.875rem;
  padding: 0 32px 0 8px;
  color: #fff;
  display: inline-block;
  white-space: nowrap;
}
.l-header-sub__flag::before, .l-header-sub__flag::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: -8px;
  width: 0;
  height: 0;
  border-style: solid;
}
.l-header-sub__flag::before {
  top: 0;
  border-width: 16px 8px 0 0;
  border-color: #007bff transparent transparent transparent;
}
.l-header-sub__flag::after {
  bottom: 0;
  border-width: 16px 0 0 8px;
  border-color: transparent transparent transparent #007bff;
}

.l-contents {
  margin-top: 147px;
  background-color: #F9F9F9;
}
@media screen and (min-width: 1280px) {
  .l-contents {
    display: grid;
    grid-template-columns: 1fr 352px;
  }
}

.l-main {
  padding: 64px 0;
}
.l-main__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.l-article {
  padding: 16px 16px;
}
@media screen and (min-width: 1280px) {
  .l-article {
    padding: 64px 16px;
  }
}
.l-article__inner {
  max-width: 1074px;
  margin: 0 auto;
  padding: 32px;
  background: #fff;
}

.l-side {
  display: block;
  background-color: #0082E9;
  padding: 32px;
  color: #ffffff;
}
@media screen and (min-width: 1280px) {
  .l-side {
    padding: 16px;
  }
}
.l-side section + section {
  margin-top: 2rem;
}
.l-side__heading {
  position: relative;
  color: #ffffff;
  text-align: center;
  font-size: 1.25rem;
  border-bottom: solid 2px #ffffff;
  position: relative;
  padding-bottom: 0.5rem;
}
.l-side__heading::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: 8px 6px 0 6px;
  transform: translate(-50%, 0);
}
.l-side__latestpost {
  margin-top: 1.3rem;
}
.l-side__latestpost ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.l-side__latestpost a {
  color: #ffffff;
}
.l-side__latestpost a:hover {
  opacity: 0.5;
}
.l-side__banner {
  margin-top: 1.3rem;
}
.l-side__banner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.l-side__banner li {
  max-width: 320px;
}
.l-side__banner a {
  color: #ffffff;
}
.l-side__banner a:hover {
  opacity: 0.8;
}
.l-side__tags {
  margin-top: 1.3rem;
}

.l-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  padding: 48px 16px;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .l-footer {
    justify-content: space-between;
    padding: 48px 40px;
  }
}
.l-footer-nav {
  display: flex;
  flex-wrap: wrap;
}
.l-footer-nav__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-footer-nav__item::after {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  background-color: #666;
  margin: 0 12px;
}
.l-footer-nav__item:last-of-type::after {
  display: none;
}

.l-footer-nav__item a {
  color: #666;
  font-size: 0.875rem;
  padding: 4px 4px;
}
.l-footer__logo {
  width: 300px;
}
.l-footer__copyright {
  color: #aaa;
  font-size: 1.4rem;
  font-size: 0.75rem;
  margin-top: 8px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    text-align: left;
  }
}
.l-hamburger-menu {
  position: relative;
  z-index: 98;
  /* hamburger
  ----------------------------------------------------------- */
}
.l-hamburger-menu__button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  transition: all 0.25s;
  width: 80px;
  height: 80px;
}
.l-hamburger-menu .l-hamburger {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.l-hamburger-menu .l-hamburger:focus {
  outline: none;
}
.l-hamburger-menu .l-hamburger:hover {
  opacity: 0.8;
}
.l-hamburger-menu .l-hamburger-box {
  width: 48px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.l-hamburger-menu .l-hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.l-hamburger-menu .l-hamburger-inner,
.l-hamburger-menu .l-hamburger-inner::before,
.l-hamburger-menu .l-hamburger-inner::after {
  width: 40px;
  height: 2px;
  background-color: #0082E9;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.l-hamburger-menu .l-hamburger-inner::before,
.l-hamburger-menu .l-hamburger-inner::after {
  content: "";
  display: block;
}
.l-hamburger-menu .l-hamburger-inner::before {
  top: -10px;
}
.l-hamburger-menu .l-hamburger-inner::after {
  bottom: -10px;
}
.l-hamburger-menu .l-hamburger .l-hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.l-hamburger-menu .l-hamburger .l-hamburger-inner::after {
  top: -20px;
  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.l-hamburger-menu .l-hamburger .l-hamburger-inner::before {
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.l-hamburger-menu .l-hamburger.is-active .l-hamburger-inner {
  background-color: #0082E9;
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.l-hamburger-menu .l-hamburger.is-active .l-hamburger-inner::after {
  background-color: #0082E9;
  top: 0;
  opacity: 0;
  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear;
}
.l-hamburger-menu .l-hamburger.is-active .l-hamburger-inner::before {
  background-color: #0082E9;
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.l-hamburger-menu .color-switched .l-hamburger-inner,
.l-hamburger-menu .color-switched .l-hamburger-inner::before,
.l-hamburger-menu .color-switched .l-hamburger-inner::after {
  background-color: rgb(0, 0, 0);
}
.l-hamburger-menu__bg {
  position: fixed;
  top: 80px;
  left: 0;
  content: "";
  width: 100%;
  height: 0;
  display: flex;
  transition: height 0s linear 1s;
  background-color: #fff;
}
.l-hamburger-menu__bg svg {
  width: 100%;
}
body:not(.js-hamburger--open) .l-hamburger-menu__bg {
  animation: menu--close 0.75s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 normal both;
}
body.js-hamburger--open .l-hamburger-menu__bg {
  animation: menu--open 0.75s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 normal both;
}
@keyframes menu--close {
  0% {
    top: 80px;
    height: 150%;
  }
  to {
    top: 100%;
    height: 0;
  }
}
@keyframes menu--open {
  0% {
    top: 80px;
    height: 0;
  }
  to {
    height: 150%;
    top: 80px;
  }
}
@media screen and (min-width: 1280px) {
  .l-hamburger-menu {
    display: none;
  }
}

.l-inner {
  color: #333;
  margin-left: auto;
  margin-right: auto;
}

.l-outer {
  padding-left: 16px;
  padding-right: 16px;
}

/* ==============================================================
  object - component
==============================================================*/
.c-heading {
  text-align: center;
}
.c-heading h2 {
  display: inline-block;
  color: #333;
  text-align: center;
  font-size: 1.875rem;
  border-bottom: solid 3px #333;
  position: relative;
  padding-bottom: 1rem;
}

.c-section--01 {
  margin-top: 4rem;
}
.c-section--02 {
  margin-top: 2.5rem;
}
.c-section--03 {
  margin-top: 1rem;
}
.c-section--04 {
  margin-top: 0.5rem;
}

.c-btn {
  max-width: 512px;
  min-width: 320px;
  height: 64px;
  border-radius: 64px;
  background: #fff;
  color: #000;
  border: 1px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  font-size: 1.125rem;
  font-weight: bold;
  cursor: pointer;
}
.c-btn--large {
  width: 100%;
}
.c-btn:hover {
  background-color: #0082E9;
  color: #fff;
}
.c-btn__circle-icon {
  background-color: #0082E9;
  width: 24px;
  height: 24px;
  border-radius: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #fff;
  border: solid 1px #fff;
}
.c-btn__circle-icon--plus {
  font-weight: 100;
  font-size: 1.25rem;
}
.c-btn__circle-icon--plus::before {
  content: "+";
  margin-top: -0.1em;
}
.c-btn__circle-icon--arrow {
  font-weight: 100;
  font-size: 1.25rem;
}
.c-btn__circle-icon--arrow::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #ffffff;
}

.c-text-description {
  font-size: 1.4rem;
  line-height: 2.4;
}
.c-text-description p {
  margin-top: 16px;
}
.c-text-description p:first-of-type {
  margin-top: 0;
}
.c-text-description--small {
  font-size: 1.3rem;
  line-height: 1.8;
}
.c-text-description--small p {
  margin-top: 12px;
}

.c-cards {
  /*display: grid;
  grid-template-columns: repeat(auto-fit, minmax(256px, 342px));*/
  gap: 20px;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}
.c-cards__button {
  width: 100%;
}

.c-card {
  width: 100%;
  max-width: 342px;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.1s ease-in;
}
.c-card__link {
  color: #000;
}
.c-card__link:hover {
  color: #0082E9;
}
.c-card__link:hover img {
  transform: scale(1.06, 1.06);
}
.c-card:has(.c-card__link:hover) {
  background-color: #e9f5ff;
}
.c-card__thumbnail {
  transition: all 0.1s ease-in;
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
}
.c-card__thumbnail img {
  transition: all 0.25s ease-in;
  min-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
}
.c-card__contents {
  padding: 16px 16px 16px;
}
.c-card__sticker {
  display: flex;
  gap: 16px;
  align-items: center;
}
.c-card__date {
  font-size: 0.875rem;
}
.c-card__title {
  margin-top: 8px;
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.c-card__tags {
  padding: 0 16px 20px;
}

.c-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.c-tags-slider {
  display: flex;
  gap: 4px;
  overflow: hidden;
}

.c-tag a {
  display: inline-block;
  padding: 0 12px;
  white-space: nowrap;
  line-height: 32px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid #ddd;
  font-weight: 400;
  font-size: 0.75rem;
  font-size: 12px !important;
  color: #333;
}
.c-tag a::before {
  content: "#";
  color: #0082E9;
}
.c-tag a:hover {
  color: #0082E9;
  opacity: 0.8;
}

.p-philosophy-tags {
  display: flex;
  gap: 4px;
  position: relative;
}

.p-philosophy-tags__wrapper {
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media screen and (max-width: 767px) {
  .p-philosophy-tags__wrapper {
    overflow-x: scroll;
  }
}
.p-philosophy-tags__wrapper::-webkit-scrollbar {
  display: none;
}

.p-philosophy-tags__wrapper ::-webkit-scrollbar {
  display: none;
}

.p-philosophy-tags__scroll-icon {
  display: none;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translate(0, -50%);
  padding: 8px;
  background-color: rgba(249, 249, 249, 0.8);
}

.js-philosophy-tags__scroll .p-philosophy-tags__scroll-icon {
  display: block;
}

.c-category-sticker {
  display: flex;
  gap: 8px;
  align-items: center;
}
.c-category-sticker__date {
  font-size: 0.875rem;
}

.c-category {
  font-size: 0.875rem;
  font-weight: bold;
  color: #fff;
  background-color: #000;
  display: flex;
  align-items: center;
  height: 24px;
  padding: 0 8px;
}
.c-category--01, .c-category--news {
  background-color: #EB7450;
}
.c-category--02, .c-category--tips {
  background-color: #48DBAE;
}
.c-category--03, .c-category--review {
  background-color: #F26D81;
}
.c-category--04, .c-category--column {
  background-color: #94D629;
}
.c-category--05, .c-category--yuichi-kogure {
  background-color: #487add;
}
.c-category--06, .c-category--yasuhiro-yamane {
  background-color: #ebb527;
}
.c-category--07, .c-category--beginner {
  background-color: #ff3700;
}

/* ==============================================================
  object - project
==============================================================*/
.p-grand-visual {
  background-color: #fff;
  padding: 0 0 16px;
}
@media screen and (min-width: 768px) {
  .p-grand-visual {
    padding: 64px 48px 32px;
  }
}
.p-grand-visual__inner {
  max-width: 1440px;
  margin: 0 auto;
}
.p-grand-visual__slide {
  position: relative;
  overflow: hidden;
}
.p-grand-visual__link {
  color: #000;
}
.p-grand-visual__link:hover {
  color: #0082E9;
}
.p-grand-visual__link:hover img {
  transition: all 0.5s ease-in;
  transform: scale(1.06, 1.06);
}
.p-grand-visual__thumbnail {
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-grand-visual__thumbnail {
    aspect-ratio: 16/9;
  }
}
.p-grand-visual__thumbnail img {
  transition: all 0.5s ease-in;
  min-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
}
.p-grand-visual__contents {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-grand-visual__contents {
    padding: 32px;
    gap: 16px;
  }
}
.p-grand-visual__sticker {
  display: flex;
  gap: 8px;
  align-items: center;
}
.p-grand-visual__date {
  font-size: 0.875rem;
}
.p-grand-visual__title {
  font-size: 1.125rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-grand-visual__title {
    font-size: 2rem;
  }
}
.p-grand-visual__title a {
  color: #000;
  display: inline;
  background-color: #fff;
  padding: 4px 8px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-grand-visual__title a {
    line-height: 1.8;
  }
}
.p-grand-visual__title a:hover {
  color: #0082E9;
}
.p-grand-visual__tags {
  max-height: 72px;
  overflow: hidden;
}

.p-article-contents__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-article-contents__title {
  font-size: 2rem;
  font-weight: bold;
}
.p-article-contents__body {
  padding-top: 32px;
}
.p-article-contents__body img {
  width: 100%;
}
.p-article-contents__body p,
.p-article-contents__body ol,
.p-article-contents__body ul {
  margin-top: 1.5em;
}
.p-article-contents__body p:first-child,
.p-article-contents__body ol:first-child,
.p-article-contents__body ul:first-child {
  margin-top: 0;
}
.p-article-contents__body li {
  margin-top: 0.5em;
}
.p-article-contents__body figcaption {
  font-size: 0.875rem;
  color: #999;
}
.p-article-contents__body h2 {
  position: relative;
  margin-top: 2em;
  padding: 0 0 0.5em;
  font-size: 1.5rem;
  font-weight: bold;
  border-bottom: solid 3px #DDDDDD;
}
.p-article-contents__body h2::after {
  content: "";
  width: 128px;
  height: 3px;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -3px;
}
.news .p-article-contents__body h2::after {
  background-color: #EB7450;
}
.tips .p-article-contents__body h2::after {
  background-color: #48DBAE;
}
.review .p-article-contents__body h2::after {
  background-color: #F26D81;
}
.column .p-article-contents__body h2::after {
  background-color: #94D629;
}
.yuichi-kogure .p-article-contents__body h2::after {
  background-color: #487add;
}
.yasuhiro-yamane .p-article-contents__body h2::after {
  background-color: #ebb527;
}
.beginner .p-article-contents__body h2::after {
  background-color: #ff3700;
}
.p-article-contents__body h3 {
  margin-top: 2em;
  font-size: 1.25rem;
  font-weight: bold;
}
.news .p-article-contents__body h3 {
  color: #EB7450;
}
.tips .p-article-contents__body h3 {
  color: #48DBAE;
}
.review .p-article-contents__body h3 {
  color: #F26D81;
}
.column .p-article-contents__body h3 {
  color: #94D629;
}
.yuichi-kogure .p-article-contents__body h3 {
  color: #487add;
}
.yasuhiro-yamane .p-article-contents__body h3 {
  color: #ebb527;
}
.beginner .p-article-contents__body h3 {
  color: #ff3700;
}
.p-article-contents__body table {
  margin-top: 1.5em;
  font-size: 1rem;
  border-collapse: collapse;
}
.p-article-contents__body table,
.p-article-contents__body th,
.p-article-contents__body td {
  border: solid 1px #ddd;
}
.p-article-contents__body th,
.p-article-contents__body td {
  padding: 0.8em 1em;
  text-align: left;
}
.p-article-contents__body thead th {
  background-color: #f0f0f0;
  text-align: center;
  font-weight: bold;
}
.p-article-contents__body tbody th {
  background-color: #f9f9f9;
}

.p-article-contents div#ez-toc-container {
  border-radius: 4px;
  padding: 32px 40px;
  margin-top: 32px;
}
.news .p-article-contents div#ez-toc-container a {
  color: #EB7450;
}
.tips .p-article-contents div#ez-toc-container a {
  color: #48DBAE;
}
.review .p-article-contents div#ez-toc-container a {
  color: #F26D81;
}
.column .p-article-contents div#ez-toc-container a {
  color: #94D629;
}
.cyuichi-kogureolumn .p-article-contents div#ez-toc-container a {
  color: #487add;
}
.yasuhiro-yamane .p-article-contents div#ez-toc-container a {
  color: #ebb527;
}
.beginner .p-article-contents div#ez-toc-container a {
  color: #ff3700;
}
.p-article-contents div#ez-toc-container a:hover {
  color: #0082E9;
}

.p-article-contents .ez-toc-list {
  padding-top: 8px;
}

.p-article-contents #ez-toc-container li,
#ez-toc-container ul,
#ez-toc-container ul li,
div.ez-toc-widget-container,
div.ez-toc-widget-container li {
  margin-top: 4px;
}

.swiper {
  overflow: inherit !important;
  position: relative;
}
.swiper-slide {
  width: 100% !important;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  width: 32px !important;
  height: 32px !important;
  border-radius: 64px;
  transition: all 0.5s ease-in;
  top: inherit !important;
  bottom: -48px;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%) !important;
    width: 64px !important;
    height: 64px !important;
  }
}
.swiper-button-prev {
  left: 16px !important;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev {
    left: -32px !important;
  }
}
.swiper-button-next {
  right: 16px !important;
}
@media screen and (min-width: 768px) {
  .swiper-button-next {
    right: -32px !important;
  }
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #0082E9;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  color: #ccc;
  font-size: 16px !important;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 24px !important;
  }
}

.p-pagination {
  position: relative;
  text-align: center;
  padding: 32px 0;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  margin: 0 0 0 10px !important;
  background: #0082E9;
}

.swiper-pagination-bullet:first-child {
  margin: 0 !important;
}

.swiper {
  overflow: inherit !important;
  position: relative;
}
.swiper-slide {
  width: 100% !important;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  width: 32px !important;
  height: 32px !important;
  border-radius: 64px;
  transition: all 0.5s ease-in;
  top: inherit !important;
  bottom: -48px;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%) !important;
    width: 64px !important;
    height: 64px !important;
  }
}
.swiper-button-prev {
  left: 16px !important;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev {
    left: -32px !important;
  }
}
.swiper-button-next {
  right: 16px !important;
}
@media screen and (min-width: 768px) {
  .swiper-button-next {
    right: -32px !important;
  }
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #0082E9;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  color: #ccc;
  font-size: 16px !important;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 24px !important;
  }
}

.p-pagination {
  position: relative;
  text-align: center;
  padding: 32px 0;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  margin: 0 0 0 10px !important;
  background: #0082E9;
}

.swiper-pagination-bullet:first-child {
  margin: 0 !important;
}

/* ==============================================================
  object - utility
==============================================================*/
.u-coution li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 0.875rem;
  color: #999;
}
.u-fl {
  float: left !important;
}
.u-fr {
  float: right !important;
}
.u-fn {
  float: none !important;
}
.u-dn {
  display: none !important;
}
.u-di {
  display: inline !important;
}
.u-db {
  display: block !important;
}
.u-diib {
  display: inline-block !important;
}
.u-dtb {
  display: table !important;
}
.u-df {
  display: flex !important;
}
.u-flex {
  display: flex !important;
}
.u-flex-jf-between {
  justify-content: space-between !important;
}
.u-flex-jf-around {
  justify-content: space-around !important;
}
.u-flex-jf-center {
  justify-content: center !important;
}
.u-flex-jf-start {
  justify-content: flex-start !important;
}
.u-flex-jf-end {
  justify-content: flex-end !important;
}
.u-flex-ai-center {
  align-items: center !important;
}
.u-flex-ai-start {
  align-items: flex-start !important;
}
.u-flex-ai-end {
  align-items: flex-end !important;
}
.u-flex-0-0-auto {
  align-items: 0 0 auto !important;
}
.u-flex-1-1-auto {
  align-items: 1 1 auto !important;
}
.u-position-ab {
  position: absolute !important;
}
.u-position-rt {
  position: relative !important;
}
.u-position-st {
  position: static !important;
}
.u-border-top-none {
  border-top: none !important;
}
.u-border-left-none {
  border-left: none !important;
}
.u-border-right-none {
  border-right: none !important;
}
.u-border-bottom-none {
  border-bottom: none !important;
}
.u-width-100 {
  width: 100% !important;
}
.u-width-auto {
  width: auto !important;
}
.u-height-100 {
  height: 100% !important;
}
.u-height-auto {
  height: auto !important;
}
.u-font-we-normal {
  font-weight: normal !important;
}
.u-font-we-bold {
  font-weight: bold !important;
}
.u-text-align-center {
  text-align: center !important;
}
.u-text-align-left {
  text-align: left !important;
}
.u-text-align-right {
  text-align: right !important;
}
.u-anchor {
  color: #527bc1 !important;
  text-decoration: underline !important;
  display: inline !important;
}
.u-anchor:hover {
  text-decoration: none !important;
}

/* margin */
.u-mt0 {
  margin-top: 0px !important;
}

.u-mt4 {
  margin-top: 4px !important;
}

.u-mt8 {
  margin-top: 8px !important;
}

.u-mt12 {
  margin-top: 12px !important;
}

.u-mt16 {
  margin-top: 16px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt24 {
  margin-top: 24px !important;
}

.u-mt28 {
  margin-top: 28px !important;
}

.u-mt32 {
  margin-top: 32px !important;
}

.u-mt36 {
  margin-top: 36px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-ml0 {
  margin-left: 0px !important;
}

.u-ml4 {
  margin-left: 4px !important;
}

.u-ml8 {
  margin-left: 8px !important;
}

.u-ml12 {
  margin-left: 12px !important;
}

.u-ml16 {
  margin-left: 16px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-ml24 {
  margin-left: 24px !important;
}

.u-ml28 {
  margin-left: 28px !important;
}

.u-ml32 {
  margin-left: 32px !important;
}

.u-ml36 {
  margin-left: 36px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-mr0 {
  margin-right: 0px !important;
}

.u-mr4 {
  margin-right: 4px !important;
}

.u-mr8 {
  margin-right: 8px !important;
}

.u-mr12 {
  margin-right: 12px !important;
}

.u-mr16 {
  margin-right: 16px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mr24 {
  margin-right: 24px !important;
}

.u-mr28 {
  margin-right: 28px !important;
}

.u-mr32 {
  margin-right: 32px !important;
}

.u-mr36 {
  margin-right: 36px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-mb0 {
  margin-bottom: 0px !important;
}

.u-mb4 {
  margin-bottom: 4px !important;
}

.u-mb8 {
  margin-bottom: 8px !important;
}

.u-mb12 {
  margin-bottom: 12px !important;
}

.u-mb16 {
  margin-bottom: 16px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb24 {
  margin-bottom: 24px !important;
}

.u-mb28 {
  margin-bottom: 28px !important;
}

.u-mb32 {
  margin-bottom: 32px !important;
}

.u-mb36 {
  margin-bottom: 36px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

/* padding */
.u-pt0 {
  padding-top: 0px !important;
}

.u-pt4 {
  padding-top: 4px !important;
}

.u-pt8 {
  padding-top: 8px !important;
}

.u-pt12 {
  padding-top: 12px !important;
}

.u-pt16 {
  padding-top: 16px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pt24 {
  padding-top: 24px !important;
}

.u-pt28 {
  padding-top: 28px !important;
}

.u-pt32 {
  padding-top: 32px !important;
}

.u-pt36 {
  padding-top: 36px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pl0 {
  padding-left: 0px !important;
}

.u-pl4 {
  padding-left: 4px !important;
}

.u-pl8 {
  padding-left: 8px !important;
}

.u-pl12 {
  padding-left: 12px !important;
}

.u-pl16 {
  padding-left: 16px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-pl24 {
  padding-left: 24px !important;
}

.u-pl28 {
  padding-left: 28px !important;
}

.u-pl32 {
  padding-left: 32px !important;
}

.u-pl36 {
  padding-left: 36px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-pr0 {
  padding-right: 0px !important;
}

.u-pr4 {
  padding-right: 4px !important;
}

.u-pr8 {
  padding-right: 8px !important;
}

.u-pr12 {
  padding-right: 12px !important;
}

.u-pr16 {
  padding-right: 16px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-pr24 {
  padding-right: 24px !important;
}

.u-pr28 {
  padding-right: 28px !important;
}

.u-pr32 {
  padding-right: 32px !important;
}

.u-pr36 {
  padding-right: 36px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-pb0 {
  padding-bottom: 0px !important;
}

.u-pb4 {
  padding-bottom: 4px !important;
}

.u-pb8 {
  padding-bottom: 8px !important;
}

.u-pb12 {
  padding-bottom: 12px !important;
}

.u-pb16 {
  padding-bottom: 16px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pb24 {
  padding-bottom: 24px !important;
}

.u-pb28 {
  padding-bottom: 28px !important;
}

.u-pb32 {
  padding-bottom: 32px !important;
}

.u-pb36 {
  padding-bottom: 36px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

/* width */
.u-w0 {
  width: 0px !important;
}

.u-w20 {
  width: 20px !important;
}

.u-w40 {
  width: 40px !important;
}

.u-w60 {
  width: 60px !important;
}

.u-w80 {
  width: 80px !important;
}

.u-w100 {
  width: 100px !important;
}

.u-w120 {
  width: 120px !important;
}

.u-w140 {
  width: 140px !important;
}

.u-w160 {
  width: 160px !important;
}

.u-w180 {
  width: 180px !important;
}

.u-w200 {
  width: 200px !important;
}

.u-w220 {
  width: 220px !important;
}

.u-w240 {
  width: 240px !important;
}

.u-w260 {
  width: 260px !important;
}

.u-w280 {
  width: 280px !important;
}

.u-w300 {
  width: 300px !important;
}

.u-w320 {
  width: 320px !important;
}

.u-w340 {
  width: 340px !important;
}

.u-w360 {
  width: 360px !important;
}

.u-w380 {
  width: 380px !important;
}

.u-w400 {
  width: 400px !important;
}

.u-flex,
.u-flex-justify__beetween,
.u-flex-justify__center,
.u-flex-justify__end,
.u-flex-align__center,
.u-flex-align__start,
.u-flex-align__end,
.u-flex-wrap,
.u-flex-direction__col,
.u-flex-direction__col-r,
.u-flex-direction__row,
.u-flex-direction__row-r {
  display: flex;
}

.u-flex {
  display: flex;
}
.u-flex.__tb {
  flex-direction: column;
}
.u-flex.__sp {
  flex-direction: column;
}
.u-flex-justify__beetween {
  justify-content: space-between;
}
.u-flex-justify__center {
  justify-content: center;
}
.u-flex-justify__end {
  justify-content: flex-end;
}
.u-flex-align__center {
  align-items: center;
}
.u-flex-align__start {
  align-items: flex-start;
}
.u-flex-align__end {
  align-items: flex-end;
}
.u-flex-wrap {
  flex-wrap: wrap;
}
.u-flex-direction__col {
  flex-direction: column;
}
.u-flex-direction__col-r {
  flex-direction: column-reverse;
}
.u-flex-direction__row {
  flex-direction: row;
}
.u-flex-direction__row-r {
  flex-direction: row-reverse;
}/*# sourceMappingURL=style.css.map */