@charset "UTF-8";
/* ========================================
  Arrow Mixin
  @param {String} $direction - Direction
  @param {Number} $width - Width
  @param {Number} $height - Height
  @param {Number} $border - Border
  @param {Color} $color - Color
  ex: @include arrow.arrow(upward, 20px, 20px, 2px, #333);
======================================== */
/* ========================================
  Aspect Ratio Mixin
  @param {Number} $width - Width
  @param {Number} $height - Height
  ex: @include aspect-ratio.aspect-ratio(16, 9);
======================================== */
/* ========================================
  Hover Mixin
  ex: @include hover.hover() {...}
======================================== */
/* ========================================
  Leading Trim Mixin
  @param {Number} $line-height - Line Height
  Note: You can use get-line-height function.
  ex: @include leading-trim.leading-trim(1.6);
======================================== */
/* ========================================
  Breakpoint Variables
  Note: These breakpoints are refered from Bootstrap.
  https://getbootstrap.com/docs/5.0/layout/breakpoints/
  ex: $breakpoints
======================================== */
/* ========================================
  Media Query Mixin
  @param {String} $breakpoint - Class infix like 'sm', 'md'
  Note: Check out a breakpoints file if you want to modify breakpoints.
  ex: @include media-query(md) {...}
======================================== */
/* ========================================
  Triangle Mixin
  @param {String} $direction - Direction
  @param {Number} $width - Width
  @param {Number} $height - Height
  @param {Color} $color - Color
  ex: @include triangle.triangle(upward, 20px, 20px, #333);
======================================== */
/* ========================================
  Underline Mixin
  @param {Color} $color - Color
  @param {Number} $height - Height
  ex: @include underline.underline(#ff6B00, 10px);
======================================== */
/* ========================================
  Visibility Hidden Mixin
  ex: @include visibility-hidden.visibility-hidden();
======================================== */
/* ========================================
  Strip-unit Function
  @param {Number} $number - Number to remove unit
  @return {Number} - Unitless number
  note: You can use this function in other functions and mixins.
  ex: strip-unit(100px); -> 100
======================================== */
/* ========================================
  Get Line Hight Function
  @param {Number} $font-size - Font size with px
  @param {Number} $line-feed - Line feed with no-unit
  @return {Number} $line-height - Line hight
  ex: get-line-height(16); -> 1.5
======================================== */
/* ========================================
  Font Size Variables
======================================== */
/* ========================================
  Get Rem Function
  @param {Number} $font-size - Number to convert px to rem
  @param {Number} $root-font-size - Number to divite target value by root's font size
  @return {Number} $rem - Number with rem unit
  ex: get-rem(16px); -> 1rem
======================================== */
/* ========================================
  Get Vw Function
  @param {Number} $px - Number to convert px to vw
  @param {Number} $viewport - Viewport size
  @return {Number} $vw - Number with vw unit
  ex: get-vw(30px); -> 8vw
======================================== */
/* ========================================
  Z-index Function
======================================== */
/* ========================================
  Color Variables
======================================== */
/* ========================================
  Font Variables
======================================== */
/* ========================================
  Transition Variables
======================================== */
/* ========================================
  Content Width Variables
======================================== */
/* 設定 */
:root {
  /* カラー */
  --page-bg-color: #f5f5f5;
  --primary-color: #0a0a0a;
  --blue-color: #007cbd;
  --yellow-color: #fbca36;
  --white-color: #fff;
  --gray-color: #a1a1a1;
  /* フォント */
  --font-family-noto: "Noto Sans JP", sans-serif;
  --font-family-barlow: "Barlow Semi Condensed", sans-serif;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

html *,
html *::before,
html *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
}

main {
  display: block;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/* スタイル */
html {
  font-size: 4.266667vw; /* 16px variable */
  scroll-padding-top: 4.5em; /* headerの高さ */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-noto);
  font-size: 1em;
  font-weight: 400;
  background-color: var(--page-bg-color);
}
.p-shopline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  height: 4.5em;
  padding: 0 1.5em;
  z-index: 100;
  background-color: var(--page-bg-color);
}

.p-shopline-header__logo {
  margin: 0 2em 0 0;
  line-height: 1;
  width: 3.5em;
}

.p-shopline-header__logo a {
  display: block;
  transition: opacity 0.2s ease;
}

.p-shopline-header__logo a:hover {
  opacity: 0.7;
}
.p-shopline-header__nav-toggle {
  font-size: 1em;
  border: none;
  padding: 0;
  outline: none;
  margin: 0;
  display: block;
  background: var(--yellow-color);
  position: relative;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  z-index: 150;
}

.p-shopline-header__nav-toggle::before,
.p-shopline-header__nav-toggle::after {
  content: "";
  display: block;
  width: 0.875em;
  height: 0.0625em;
  background-color: var(--primary-color);
  position: absolute;
  left: 50%;
  top: 50%;
}

.p-shopline-header__nav-toggle::before {
  transform: translate(-50%, -0.25em);
}

.p-shopline-header__nav-toggle::after {
  transform: translate(-50%, 0.25em);
}

.p-shopline-header__nav-toggle.--opened {
  background-color: var(--white-color);
}

.p-shopline-header__nav-toggle.--opened::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-shopline-header__nav-toggle.--opened::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-shopline-header__nav-list {
  display: flex;
}

.p-shopline-header__nav-list > a {
  text-decoration: none;
  line-height: 1.4;
}
.p-shopline-main {
  padding-top: 4.5em; /* headerの高さ */
}
.p-shopline-hero {
  margin: 0 auto 2.5em;
}

.p-shopline-hero__body {
  padding: 1em 1.5em 0;
}

.p-shopline-hero__title {
  font-size: 1em;
  line-height: 1;
  margin: 0 0 1em;
}

.p-shopline-hero__button {
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  text-align: center;
  position: relative;
}

.p-shopline-hero__button a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--yellow-color);
  padding: 1.5em;
  border-radius: 4em;
  box-shadow: 0.111111em 0.277778em 0.5em rgba(0, 0, 0, 0.18);
}

.p-shopline-hero__button a:hover {
  opacity: 0.7;
}

.p-shopline-hero__image {
  line-height: 1;
}
.p-shopline-group-01 {
  margin: 0 auto 4em;
  width: 87.2%;
  max-width: 1440px;
}

.p-shopline-group-01__body {
  margin: 0 0 1.5em;
}

.p-shopline-group-01__image {
  line-height: 1;
}
.p-shopline-title-01 {
  font-size: 2em;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.75em;
}

.p-shopline-title-01.--centered {
  text-align: center;
}

.p-shopline-title-01__eng {
  display: block;
  font-family: var(--font-family-barlow);
  font-size: 0.375em;
  font-weight: 600;
  margin-bottom: 0.666667em;
  color: var(--blue-color);
}

.p-shopline-title-01__main {
  display: block;
}

.p-shopline-title-01__main span {
  font-size: 0.75em;
}

.p-shopline-title-01__sub {
  display: block;
  font-size: 0.5625em;
  margin-bottom: 0.444444em;
}

.p-shopline-text-01 {
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 0.888889em;
}

.p-shopline-text-02 {
  line-height: 1.8;
  font-size: 0.875em;
  margin: 0;
}

.p-shopline-text-02 + .p-shopline-text-02 {
  margin-top: 0.571429em;
}

.p-shopline-text-02.--mt-24 {
  margin-top: 1.714286em;
}
.p-shopline-inner {
  margin-left: auto;
  margin-right: auto;
  width: 87.2%;
  max-width: 1152px;
}
.p-shopline-reasons {
  margin: 0 0 4em;
  padding: 0;
  list-style: none;
}

.p-shopline-reasons > li {
  margin-bottom: 4em;
}

.p-shopline-reasons > li:last-child {
  margin-bottom: 0;
}

.p-shopline-reasons__image {
  line-height: 1;
}

.p-shopline-reasons__body {
  margin-top: -2.5em;
}
.p-shopline-title-02 {
  font-size: 2em;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.5em;
}

.p-shopline-title-02__number {
  font-family: var(--font-family-barlow);
  font-size: 1.75em;
  font-weight: 600;
  line-height: 1;
  display: block;
  margin-bottom: 0.285714em;
  color: var(--blue-color);
}

.p-shopline-title-02__main {
  display: block;
}
.p-shopline-tamkun-01 {
  position: sticky;
  width: 100%;
  height: 31.375em;
  top: 4.5em;
  z-index: -1;
}

.p-shopline-tamkun-01 > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/img_tamkun1__sp.svg);
  background-repeat: no-repeat;
  background-size: 20.3125em auto;
  background-position: center;
}
.p-shopline-sub-section-01 {
  background-color: var(--white-color);
  border-radius: 2.5em 2.5em 0 0;
  padding: 4em 0;
}
.p-shopline-support-list {
  margin: 0;
  padding: 0;
  list-style: none;
  background: url(../img/arrow__sp.svg) no-repeat left top/2.5em auto;
  min-height: 102em;
  width: 17.625em;
  padding: 0 0 0 1.875em;
}

.p-shopline-support-list > li {
  margin-bottom: 2em;
}

.p-shopline-support-list > li:last-child {
  margin-bottom: 0;
}

.p-shopline-support-list__image {
  line-height: 1;
  margin-bottom: 0.5em;
}

.p-shopline-title-03 {
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.5;
  color: var(--blue-color);
  margin: 0 0 0.444444em;
}

.p-shopline-text-03 {
  font-size: 0.75em;
  line-height: 1.5;
  text-align: right;
  margin: 0.75em 0 0;
}
.p-shopline-sub-section-02 {
  margin-top: 4em;
}

.p-shopline-group-02 {
  margin-bottom: 2.5em;
}

.p-shopline-title-04 {
  font-size: 2em;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 0.75em;
}

.p-shopline-group-02__text-01 {
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 0.888889em;
}

.p-shopline-group-02__text-02 {
  font-size: 0.875em;
  line-height: 1.8;
  margin: 0;
}

.p-shopline-group-02__text-02 strong {
  font-weight: 700;
}

.p-shopline-company-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 1em;
  grid-row-gap: 1em;
}

.p-shopline-company-list > li {
  line-height: 1;
}
.p-shopline-sub-section-03 {
  background-color: var(--white-color);
  padding: 4em 0;
  margin-top: 4em;
}

.p-shopline-group-03 {
  background-color: #fffaeb;
  margin: 0 auto;
  padding: 3em 1.5em;
  position: relative;
}

.p-shopline-group-03::after {
  content: "";
  display: block;
  width: 5.25em;
  height: 9.25em;
  background: url(../img/img_tamkun2.svg) no-repeat center center/contain;
  position: absolute;
  right: 1em;
  bottom: -4.125em;
}

.p-shopline-title-05 {
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 1.333333em;
}

.p-shopline-title-05__eng {
  color: var(--blue-color);
  font-family: var(--font-family-barlow);
  font-size: 0.666667em;
  line-height: 1.4;
  display: block;
  margin-bottom: 1.333333em;
}

.p-shopline-text-link {
  border-bottom: 1px solid var(--blue-color);
  color: var(--blue-color);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.p-shopline-text-link:hover {
  opacity: 0.7;
  border-bottom-color: transparent;
}

.p-shopline-text-link.--external-link {
  display: inline-flex;
  align-items: center;
}

.p-shopline-text-link.--external-link::after {
  content: "";
  display: inline-block;
  width: 1.428571em;
  height: 1.428571em;
  background: url(../img/open_in_new.svg) no-repeat center center/contain;
  margin-left: 0.285714em;
  line-height: 1;
}
.p-shopline-section.--bg-white {
  background-color: var(--white-color);
  padding-bottom: 4em;
}

.p-shopline-section.--bg-blue {
  background-color: var(--blue-color);
  padding-bottom: 4em;
  padding-top: 4em;
}

.p-shopline-title-06 {
  font-size: 2em;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.75em;
}

.p-shopline-text-04 {
  font-weight: 700;
  font-size: 1.125em;
  line-height: 1.5;
  margin: 0;
}

.p-shopline-group-04__body {
  margin-top: 2.5em;
}
.p-shopline-form__group + .p-shopline-form__group {
  margin-top: 1em;
}

.p-shopline-form__label {
  font-size: 0.875em;
  line-height: 1.8;
}

.p-shopline-form__label .--required {
  display: inline-block;
  font-size: 0.714286em;
  font-weight: 700;
  line-height: 1;
  padding: 0.4em 0.8em;
  border-radius: 2em;
  color: var(--white-color);
  background-color: var(--blue-color);
  margin-left: 0.8em;
  vertical-align: middle;
}

.p-shopline-select-wrap {
  display: flex;
  margin: 0.285714em 0 0;
  align-items: center;
  background: #f5f5f5 url(../img/select.svg) no-repeat right 1.142857em center/2.285714em auto;
  border-radius: 0.285714em;
  line-height: 1.8;
  color: var(--gray-color);
  font-size: 0.875em;
}

.p-shopline-select-wrap select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  padding: 0.857143em 3.428571em 0.857143em 1.142857em;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  outline: none;
  cursor: pointer;
  color: #000;
  width: 100%;
}

.p-shopline-form__input {
  display: block;
  width: 100%;
  margin: 0.285714em 0 0;
  font-size: 0.875em;
  line-height: 1.8;
  background-color: #f5f5f5;
  outline: none;
  border-radius: 0.285714em;
  border: 1px solid #f5f5f5;
  padding: 0.857143em 1.142857em;
}

.p-shopline-form__input:focus {
  border-color: var(--primary-color);
}

.p-shopline-form__textarea {
  display: block;
  width: 100%;
  margin: 0.285714em 0 0;
  font-size: 0.875em;
  line-height: 1.8;
  background-color: #f5f5f5;
  outline: none;
  border-radius: 0.285714em;
  border: 1px solid #f5f5f5;
  padding: 0.857143em 1.142857em;
  height: 10em;
  resize: vertical;
}

.p-shopline-form__textarea::-moz-placeholder {
  color: var(--gray-color);
}

.p-shopline-form__textarea::placeholder {
  color: var(--gray-color);
}

.p-shopline-checkbox {
  display: flex;
  align-items: flex-start;
  font-size: 0.875em;
  line-height: 1.8;
}
.p-shopline-checkbox:hover {
  cursor: pointer;
}

.p-shopline-checkbox__input input {
  display: none;
}

.p-shopline-checkbox__control {
  display: inline-block;
  width: 1.714286em;
  height: 1.714286em;
  background: url(../img/checkbox_empty.svg) no-repeat center center/contain;
  margin: 0 0.285714em 0 0;
}

input:checked + .p-shopline-checkbox__control {
  background-image: url(../img/checkbox_checked.svg);
}

.p-shopline-submit {
  display: block;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.4;
  color: var(--primary-color);
  background-color: var(--yellow-color);
  width: 12.5em;
  padding: 1em;
  border-radius: 3em;
  border: none;
  margin: 2.5em auto 0 0;
  transition: opacity 0.2s ease;
  outline: none;
  cursor: pointer;
}
.p-shopline-submit:disabled {
  background: lightgray;
  color: gray;
}
.p-shopline-submit:disabled:hover {
  opacity: 1;
  cursor: default;
}

.p-shopline-submit:hover {
  opacity: 0.7;
}
.p-shopline-title-07 {
  text-align: center;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white-color);
  margin: 0 0 0.75em;
}

.p-shopline-faq {
  margin: 0 auto;
  background-color: #fbfbfb;
  padding: 2em 1.5em;
}

.p-shopline-faq + .p-shopline-faq {
  margin-top: 0.5em;
}

.p-shopline-faq > dt {
  font-size: 1em;
  font-weight: 700;
  color: var(--blue-color);
  line-height: 1.5;
  margin: 0 0 1em;
  background: url(../img/faq_q.svg) no-repeat 0 0.25em/auto 1.125em;
  padding-left: 2em;
}

.p-shopline-faq > dd {
  margin: 0;
  padding-left: 2em;
}

.p-shopline-faq > dd p {
  font-size: 0.875em;
  line-height: 1.6;
  margin: 0;
}

.p-shopline-faq > dd p + p {
  margin-top: 0.571429em;
}
.p-shopline-footer {
  background-color: var(--white-color);
  padding: 3em 0 1em;
}

.p-shopline-footer__inner {
  width: 87.2%;
  margin: 0 auto;
  max-width: 1152px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.p-shopline-footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.p-shopline-footer-links > li {
  font-size: 0.875em;
  line-height: 1.6;
  margin-bottom: 1.142857em;
}

.p-shopline-footer-links > li:last-child {
  margin-bottom: 0;
}

.p-shopline-footer-links a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.p-shopline-footer-links a:hover {
  opacity: 0.7;
}

.p-shopline-footer-sns {
  margin: 3em 0;
  width: 100%;
}

.p-shopline-footer-sns__text {
  font-family: var(--font-family-barlow);
  font-weight: 600;
  font-size: 1em;
  line-height: 1.4;
  margin: 0 0 0.875em;
  display: flex;
  align-items: center;
}

.p-shopline-footer-sns__text::after {
  content: "";
  display: block;
  width: 3.75em;
  height: 1px;
  background-color: var(--primary-color);
  margin-left: 0.625em;
}

.p-shopline-footer-sns__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: flex-start;
}

.p-shopline-footer-sns__list > li {
  line-height: 1;
  width: 2em;
  margin-right: 1.5em;
}

.p-shopline-footer-sns__list > li:last-child {
  margin-right: 0;
}

.p-shopline-footer-sns__list a {
  display: block;
  transition: opacity 0.2s ease;
}

.p-shopline-footer-sns__list a:hover {
  opacity: 0.7;
}

.p-shopline-footer-copyright {
  color: var(--gray-color);
  font-size: 0.75em;
  line-height: 1.5;
  margin: 0;
}

.p-shopline-footer-privacy {
  line-height: 1;
  width: 3em;
  order: 1;
  flex-shrink: 0;
}
/* ========================================
  Layout Container
======================================== */
.l-container {
  padding-right: 1rem;
  padding-left: 1rem;
}

/* ========================================
  Layout Footer
======================================== */
.l-footer__inner {
  max-width: 1200;
  margin-right: auto;
  margin-left: auto;
  padding: 2rem 0;
}

/* ========================================
  Layout Header
======================================== */
.l-header {
  z-index: 1;
  padding: 2rem 0;
  border-bottom: 1px solid #ccc;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200;
  margin-right: auto;
  margin-left: auto;
  padding: 0 0 0 3vw;
}

/* ========================================
  Layout Main
======================================== */
.l-main {
  padding: 0 0 26.6666666667vw;
}

/* ========================================
  Button
======================================== */
.c-btn, .c-btn-sub, .c-btn-main {
  display: inline-block;
  width: 300px;
  max-width: 100%;
  padding: 1rem 0.5rem;
  text-align: center;
  text-decoration: none;
  font-size: 1.4rem;
  border-radius: 5px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.c-btn-main {
  border: 2px solid transparent;
  background-color: #4da1ff;
  color: #fff;
  transition: 0.3s;
}
.c-btn-main:hover, .c-btn-main:focus {
  outline: none;
  border-color: currentcolor;
  background-color: #fff;
  color: #4da1ff;
}

.c-btn-sub {
  border: 2px solid transparent;
  background-color: #2e2e30;
  color: #fff;
  transition: 0.3s;
}
.c-btn-sub:hover, .c-btn-sub:focus {
  outline: none;
  border-color: currentcolor;
  background-color: #fff;
  color: #2e2e30;
}

.c-icon-btn {
  display: inline-block;
  position: relative;
  padding: 0.2em 0.3em;
  text-decoration: none;
  border: 1px solid currentcolor;
  color: #4da1ff;
  transition: 0.25s;
}
.c-icon-btn svg {
  fill: #4da1ff;
}
.c-icon-btn:focus, .c-icon-btn:hover {
  background-color: #4da1ff;
  color: #fff;
}
.c-icon-btn:focus svg, .c-icon-btn:hover svg {
  fill: #fff;
}

/* ========================================
  Caption
======================================== */
.c-caption--center {
  text-align: center;
}

.c-caption--right {
  text-align: right;
}

.c-caption__txt {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: bold;
}

/* ========================================
  Caution
======================================== */
.c-caution {
  color: red;
}

/* ========================================
  Heading
======================================== */
.c-heading--lev1 {
  font-size: 12.8vw;
}

.c-heading--lev2 {
  font-size: 10.6666666667vw;
}

.c-heading--lev3 {
  font-size: 9.6vw;
}

.c-heading--lev4 {
  font-size: 8vw;
}

/* ========================================
  Icon
======================================== */
.c-icon {
  vertical-align: text-top;
  width: 1.2em;
  height: 1.2em;
}

.c-icon--before {
  margin-right: 0.5em;
}

.c-icon--after {
  margin-left: 0.5em;
}

.c-icon-bg--before {
  padding-left: 1.5em;
  line-height: 1.2em;
}

.c-icon-bg--after {
  display: inline-block;
  padding-right: 1.5em;
  line-height: 1.2em;
}

/* ========================================
  Iframe
======================================== */
.c-iframe {
  display: block;
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}
.c-iframe iframe,
.c-iframe embed,
.c-iframe object,
.c-iframe video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========================================
  Label
======================================== */
.c-label {
  display: inline-block;
  padding: 0.2em 0.3em;
  font-size: 1.2rem;
  font-weight: bold;
  background-color: #1675e1;
  color: #fff;
}

/* ========================================
  List
======================================== */
.c-bullet-list {
  list-style: none;
}

.c-bullet-list__item {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1em;
}
.c-bullet-list__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.4em;
  height: 0.4em;
  border-radius: 50%;
  background-color: #1675e1;
}
.c-bullet-list__item:last-child {
  margin-bottom: 0;
}

.c-order-list {
  counter-reset: c-order-list;
}

.c-order-list__item {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1em;
}
.c-order-list__item::before {
  content: counter(c-order-list) ". ";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: bold;
  color: #1675e1;
  counter-increment: c-order-list;
}
.c-order-list__item:last-child {
  margin-bottom: 0;
}

/* ========================================
  Media
======================================== */

.c-media__img-wrapper {
  margin-bottom: 1rem;
}
.c-media__img-wrapper img {
  width: 100%;
}

.c-media__body {
  flex: 1 1;
}
.c-media__body > *:last-child {
  margin-bottom: 0;
}

.c-media__ttl {
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
}

.c-media__txt {
  margin-bottom: 1rem;
}

/* ========================================
  Accordion
======================================== */
.p-accordion {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.p-accordion__btn {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 5.3333333333vw 13.3333333333vw 5.3333333333vw 6.6666666667vw;
  text-align: left;
  font-size: 6.9333333333vw;
  outline: none;
  border: none;
  border-bottom: 1px solid #2d5996;
  background-color: #4da1ff;
  color: #fff;
  cursor: pointer;
}
.p-accordion__btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 20px;
  height: 2px;
  background-color: currentcolor;
  transform: translateY(-50%);
}
.p-accordion__btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 2.4rem;
  width: 2px;
  height: 20px;
  background-color: currentcolor;
  transform: translateY(-50%);
}
.p-accordion__btn:focus, .p-accordion__btn:hover {
  background-color: #fff;
  color: #4da1ff;
}

.p-accordion__body {
  overflow: hidden;
  height: 0;
  padding: 0 6.6666666667vw;
  line-height: 0;
  opacity: 0;
  transition: padding 0.25s, opacity 0.25s;
}
.p-accordion__body > *:last-child {
  margin-bottom: 0;
}

.p-accordion__txt {
  margin-bottom: 8vw;
}

.is-accordion-active {
  border-bottom: none;
}
.is-accordion-active::after {
  content: none;
}

.is-accordion-open {
  height: auto;
  padding: 6.6666666667vw;
  line-height: normal;
  opacity: 1;
}

/* ========================================
  Banner
======================================== */
.p-bnr__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.p-bnr__list-col2 {
  margin-bottom: -2rem;
}
.p-bnr__list-col2 .p-bnr__list-item {
  width: 100%;
  margin-right: 0;
  margin-bottom: 2rem;
}

.p-bnr__list-col3 {
  margin-bottom: -2rem;
}
.p-bnr__list-col3 .p-bnr__list-item {
  width: 100%;
  margin-right: 0;
  margin-bottom: 2rem;
}

.p-bnr__list-col4 {
  margin-bottom: -2rem;
}
.p-bnr__list-col4 .p-bnr__list-item {
  width: 100%;
  margin-right: 0;
  margin-bottom: 2rem;
}

.p-bnr__list-item img {
  width: 100%;
}

.p-bnr__list-link {
  opacity: 0.8;
}

/* ========================================
  Bread crumb
======================================== */
.p-bread-crumb {
  display: flex;
  max-width: 1200;
  margin-right: auto;
  margin-left: auto;
  list-style: none;
}

.p-bread-crumb__item {
  font-size: 1.2rem;
}
.p-bread-crumb__item:not(:first-child)::before {
  content: "＞";
  display: inline-block;
  padding: 0 1rem;
  color: #aaa;
}

.p-bread-crumb__link {
  color: #aaa;
}

/* ========================================
  Card
======================================== */
.p-card-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.p-card__col2 {
  margin-bottom: -2rem;
}
.p-card__col2 .p-card {
  width: 100%;
  margin-right: 0;
  margin-bottom: 2rem;
}

.p-card__col3 {
  margin-bottom: -2rem;
}
.p-card__col3 .p-card {
  width: 100%;
  margin-right: 0;
  margin-bottom: 2rem;
}

.p-card {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.p-card__img-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}
.p-card__img-wrapper img {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.p-card__body {
  padding: 1.5rem;
}
.p-card__body > *:last-child {
  margin-bottom: 0;
}

.p-card__ttl {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  font-weight: bold;
}

.p-card__txt {
  color: #333;
}

/* ========================================
  Table
======================================== */
.p-horizontal-table {
  border: 1px solid #ddd;
}
.p-horizontal-table table {
  width: 100%;
}
.p-horizontal-table th {
  vertical-align: middle;
  width: 20%;
  padding: 1.5rem;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  background-color: #ccc;
  color: #fff;
}
.p-horizontal-table td {
  padding: 1.5rem;
  border-bottom: 1px solid #ddd;
}
.p-horizontal-table tr:last-child th,
.p-horizontal-table tr:last-child td {
  border-bottom-width: 0;
}

.p-horizontal-table--scrollX {
  overflow-x: auto;
  border-right-width: 0;
}
.p-horizontal-table--scrollX td,
.p-horizontal-table--scrollX th {
  white-space: nowrap;
}
.p-horizontal-table--scrollX td {
  border-right: 1px solid #ddd;
}

.p-vert-table {
  overflow-x: auto;
  border: 1px solid #ddd;
  border-right-width: 0;
}
.p-vert-table table {
  width: auto;
  min-width: 100%;
  text-align: center;
  table-layout: fixed;
}
.p-vert-table thead tr {
  background-color: #ccc;
  color: #fff;
}
.p-vert-table th {
  vertical-align: middle;
  padding: 1.5rem;
  font-weight: bold;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.p-vert-table td {
  vertical-align: middle;
  padding: 1.5rem;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.p-vert-table th,
.p-vert-table td {
  white-space: nowrap;
}
.p-vert-table td:last-child,
.p-vert-table th:last-child {
  border-right-width: 1px;
}
.p-vert-table tbody tr:last-child td {
  border-bottom-width: 0;
}

.p-cross-table {
  overflow-x: auto;
  border: 1px solid #ddd;
  border-right-width: 0;
}
.p-cross-table table {
  width: auto;
  min-width: 100%;
  text-align: center;
  table-layout: fixed;
}
.p-cross-table th {
  vertical-align: middle;
  padding: 1.5rem;
  font-weight: bold;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #ccc;
  color: #fff;
}
.p-cross-table td {
  vertical-align: middle;
  padding: 1.5rem;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.p-cross-table th,
.p-cross-table td {
  white-space: nowrap;
}
.p-cross-table td:last-child,
.p-cross-table th:last-child {
  border-right-width: 1px;
}
.p-cross-table tbody tr:last-child td {
  border-bottom-width: 0;
}
.p-cross-table .p-cross-table--sticky {
  position: sticky;
  left: 0;
}

/* ========================================
  Display
======================================== */
.u-dsp-block {
  display: block;
}
.u-dsp-none {
  display: none;
}
.u-dsp-inline {
  display: inline;
}
.u-dsp-ib {
  display: inline-block;
}
.u-dsp-sp {
  display: block;
}
.u-dsp-pc {
  display: none;
}

/* ========================================
  Margin
======================================== */
.u-mt0 {
  margin-top: 0px;
}

.u-mt5 {
  margin-top: 5px;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mt15 {
  margin-top: 15px;
}

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

.u-mt25 {
  margin-top: 25px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mt35 {
  margin-top: 35px;
}

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

.u-mt45 {
  margin-top: 45px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mt55 {
  margin-top: 55px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mt65 {
  margin-top: 65px;
}

.u-mt70 {
  margin-top: 70px;
}

.u-mt75 {
  margin-top: 75px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mt85 {
  margin-top: 85px;
}

.u-mt90 {
  margin-top: 90px;
}

.u-mt95 {
  margin-top: 95px;
}

.u-mt100 {
  margin-top: 100px;
}

.u-mt105 {
  margin-top: 105px;
}

.u-mt110 {
  margin-top: 110px;
}

.u-mt115 {
  margin-top: 115px;
}

.u-mt120 {
  margin-top: 120px;
}

.u-mt125 {
  margin-top: 125px;
}

.u-mt130 {
  margin-top: 130px;
}

.u-mt135 {
  margin-top: 135px;
}

.u-mt140 {
  margin-top: 140px;
}

.u-mt145 {
  margin-top: 145px;
}

.u-mt150 {
  margin-top: 150px;
}

.u-mt155 {
  margin-top: 155px;
}

.u-mt160 {
  margin-top: 160px;
}

.u-mt165 {
  margin-top: 165px;
}

.u-mt170 {
  margin-top: 170px;
}

.u-mt175 {
  margin-top: 175px;
}

.u-mt180 {
  margin-top: 180px;
}

.u-mt185 {
  margin-top: 185px;
}

.u-mt190 {
  margin-top: 190px;
}

.u-mt195 {
  margin-top: 195px;
}

.u-mt200 {
  margin-top: 200px;
}

.u-mt205 {
  margin-top: 205px;
}

.u-mt210 {
  margin-top: 210px;
}

.u-mt215 {
  margin-top: 215px;
}

.u-mt220 {
  margin-top: 220px;
}

.u-mt225 {
  margin-top: 225px;
}

.u-mt230 {
  margin-top: 230px;
}

.u-mt235 {
  margin-top: 235px;
}

.u-mt240 {
  margin-top: 240px;
}

.u-mt245 {
  margin-top: 245px;
}

.u-mt250 {
  margin-top: 250px;
}

.u-mt255 {
  margin-top: 255px;
}

.u-mt260 {
  margin-top: 260px;
}

.u-mt265 {
  margin-top: 265px;
}

.u-mt270 {
  margin-top: 270px;
}

.u-mt275 {
  margin-top: 275px;
}

.u-mt280 {
  margin-top: 280px;
}

.u-mt285 {
  margin-top: 285px;
}

.u-mt290 {
  margin-top: 290px;
}

.u-mt295 {
  margin-top: 295px;
}

.u-mt300 {
  margin-top: 300px;
}

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

.u-mb5 {
  margin-bottom: 5px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mb15 {
  margin-bottom: 15px;
}

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

.u-mb25 {
  margin-bottom: 25px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mb35 {
  margin-bottom: 35px;
}

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

.u-mb45 {
  margin-bottom: 45px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-mb55 {
  margin-bottom: 55px;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-mb65 {
  margin-bottom: 65px;
}

.u-mb70 {
  margin-bottom: 70px;
}

.u-mb75 {
  margin-bottom: 75px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mb85 {
  margin-bottom: 85px;
}

.u-mb90 {
  margin-bottom: 90px;
}

.u-mb95 {
  margin-bottom: 95px;
}

.u-mb100 {
  margin-bottom: 100px;
}

.u-mb105 {
  margin-bottom: 105px;
}

.u-mb110 {
  margin-bottom: 110px;
}

.u-mb115 {
  margin-bottom: 115px;
}

.u-mb120 {
  margin-bottom: 120px;
}

.u-mb125 {
  margin-bottom: 125px;
}

.u-mb130 {
  margin-bottom: 130px;
}

.u-mb135 {
  margin-bottom: 135px;
}

.u-mb140 {
  margin-bottom: 140px;
}

.u-mb145 {
  margin-bottom: 145px;
}

.u-mb150 {
  margin-bottom: 150px;
}

.u-mb155 {
  margin-bottom: 155px;
}

.u-mb160 {
  margin-bottom: 160px;
}

.u-mb165 {
  margin-bottom: 165px;
}

.u-mb170 {
  margin-bottom: 170px;
}

.u-mb175 {
  margin-bottom: 175px;
}

.u-mb180 {
  margin-bottom: 180px;
}

.u-mb185 {
  margin-bottom: 185px;
}

.u-mb190 {
  margin-bottom: 190px;
}

.u-mb195 {
  margin-bottom: 195px;
}

.u-mb200 {
  margin-bottom: 200px;
}

.u-mb205 {
  margin-bottom: 205px;
}

.u-mb210 {
  margin-bottom: 210px;
}

.u-mb215 {
  margin-bottom: 215px;
}

.u-mb220 {
  margin-bottom: 220px;
}

.u-mb225 {
  margin-bottom: 225px;
}

.u-mb230 {
  margin-bottom: 230px;
}

.u-mb235 {
  margin-bottom: 235px;
}

.u-mb240 {
  margin-bottom: 240px;
}

.u-mb245 {
  margin-bottom: 245px;
}

.u-mb250 {
  margin-bottom: 250px;
}

.u-mb255 {
  margin-bottom: 255px;
}

.u-mb260 {
  margin-bottom: 260px;
}

.u-mb265 {
  margin-bottom: 265px;
}

.u-mb270 {
  margin-bottom: 270px;
}

.u-mb275 {
  margin-bottom: 275px;
}

.u-mb280 {
  margin-bottom: 280px;
}

.u-mb285 {
  margin-bottom: 285px;
}

.u-mb290 {
  margin-bottom: 290px;
}

.u-mb295 {
  margin-bottom: 295px;
}

.u-mb300 {
  margin-bottom: 300px;
}

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

.u-ml5 {
  margin-left: 5px;
}

.u-ml10 {
  margin-left: 10px;
}

.u-ml15 {
  margin-left: 15px;
}

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

.u-ml25 {
  margin-left: 25px;
}

.u-ml30 {
  margin-left: 30px;
}

.u-ml35 {
  margin-left: 35px;
}

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

.u-ml45 {
  margin-left: 45px;
}

.u-ml50 {
  margin-left: 50px;
}

.u-ml55 {
  margin-left: 55px;
}

.u-ml60 {
  margin-left: 60px;
}

.u-ml65 {
  margin-left: 65px;
}

.u-ml70 {
  margin-left: 70px;
}

.u-ml75 {
  margin-left: 75px;
}

.u-ml80 {
  margin-left: 80px;
}

.u-ml85 {
  margin-left: 85px;
}

.u-ml90 {
  margin-left: 90px;
}

.u-ml95 {
  margin-left: 95px;
}

.u-ml100 {
  margin-left: 100px;
}

.u-ml105 {
  margin-left: 105px;
}

.u-ml110 {
  margin-left: 110px;
}

.u-ml115 {
  margin-left: 115px;
}

.u-ml120 {
  margin-left: 120px;
}

.u-ml125 {
  margin-left: 125px;
}

.u-ml130 {
  margin-left: 130px;
}

.u-ml135 {
  margin-left: 135px;
}

.u-ml140 {
  margin-left: 140px;
}

.u-ml145 {
  margin-left: 145px;
}

.u-ml150 {
  margin-left: 150px;
}

.u-ml155 {
  margin-left: 155px;
}

.u-ml160 {
  margin-left: 160px;
}

.u-ml165 {
  margin-left: 165px;
}

.u-ml170 {
  margin-left: 170px;
}

.u-ml175 {
  margin-left: 175px;
}

.u-ml180 {
  margin-left: 180px;
}

.u-ml185 {
  margin-left: 185px;
}

.u-ml190 {
  margin-left: 190px;
}

.u-ml195 {
  margin-left: 195px;
}

.u-ml200 {
  margin-left: 200px;
}

.u-ml205 {
  margin-left: 205px;
}

.u-ml210 {
  margin-left: 210px;
}

.u-ml215 {
  margin-left: 215px;
}

.u-ml220 {
  margin-left: 220px;
}

.u-ml225 {
  margin-left: 225px;
}

.u-ml230 {
  margin-left: 230px;
}

.u-ml235 {
  margin-left: 235px;
}

.u-ml240 {
  margin-left: 240px;
}

.u-ml245 {
  margin-left: 245px;
}

.u-ml250 {
  margin-left: 250px;
}

.u-ml255 {
  margin-left: 255px;
}

.u-ml260 {
  margin-left: 260px;
}

.u-ml265 {
  margin-left: 265px;
}

.u-ml270 {
  margin-left: 270px;
}

.u-ml275 {
  margin-left: 275px;
}

.u-ml280 {
  margin-left: 280px;
}

.u-ml285 {
  margin-left: 285px;
}

.u-ml290 {
  margin-left: 290px;
}

.u-ml295 {
  margin-left: 295px;
}

.u-ml300 {
  margin-left: 300px;
}

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

.u-mr5 {
  margin-right: 5px;
}

.u-mr10 {
  margin-right: 10px;
}

.u-mr15 {
  margin-right: 15px;
}

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

.u-mr25 {
  margin-right: 25px;
}

.u-mr30 {
  margin-right: 30px;
}

.u-mr35 {
  margin-right: 35px;
}

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

.u-mr45 {
  margin-right: 45px;
}

.u-mr50 {
  margin-right: 50px;
}

.u-mr55 {
  margin-right: 55px;
}

.u-mr60 {
  margin-right: 60px;
}

.u-mr65 {
  margin-right: 65px;
}

.u-mr70 {
  margin-right: 70px;
}

.u-mr75 {
  margin-right: 75px;
}

.u-mr80 {
  margin-right: 80px;
}

.u-mr85 {
  margin-right: 85px;
}

.u-mr90 {
  margin-right: 90px;
}

.u-mr95 {
  margin-right: 95px;
}

.u-mr100 {
  margin-right: 100px;
}

.u-mr105 {
  margin-right: 105px;
}

.u-mr110 {
  margin-right: 110px;
}

.u-mr115 {
  margin-right: 115px;
}

.u-mr120 {
  margin-right: 120px;
}

.u-mr125 {
  margin-right: 125px;
}

.u-mr130 {
  margin-right: 130px;
}

.u-mr135 {
  margin-right: 135px;
}

.u-mr140 {
  margin-right: 140px;
}

.u-mr145 {
  margin-right: 145px;
}

.u-mr150 {
  margin-right: 150px;
}

.u-mr155 {
  margin-right: 155px;
}

.u-mr160 {
  margin-right: 160px;
}

.u-mr165 {
  margin-right: 165px;
}

.u-mr170 {
  margin-right: 170px;
}

.u-mr175 {
  margin-right: 175px;
}

.u-mr180 {
  margin-right: 180px;
}

.u-mr185 {
  margin-right: 185px;
}

.u-mr190 {
  margin-right: 190px;
}

.u-mr195 {
  margin-right: 195px;
}

.u-mr200 {
  margin-right: 200px;
}

.u-mr205 {
  margin-right: 205px;
}

.u-mr210 {
  margin-right: 210px;
}

.u-mr215 {
  margin-right: 215px;
}

.u-mr220 {
  margin-right: 220px;
}

.u-mr225 {
  margin-right: 225px;
}

.u-mr230 {
  margin-right: 230px;
}

.u-mr235 {
  margin-right: 235px;
}

.u-mr240 {
  margin-right: 240px;
}

.u-mr245 {
  margin-right: 245px;
}

.u-mr250 {
  margin-right: 250px;
}

.u-mr255 {
  margin-right: 255px;
}

.u-mr260 {
  margin-right: 260px;
}

.u-mr265 {
  margin-right: 265px;
}

.u-mr270 {
  margin-right: 270px;
}

.u-mr275 {
  margin-right: 275px;
}

.u-mr280 {
  margin-right: 280px;
}

.u-mr285 {
  margin-right: 285px;
}

.u-mr290 {
  margin-right: 290px;
}

.u-mr295 {
  margin-right: 295px;
}

.u-mr300 {
  margin-right: 300px;
}

/* ========================================
  New Line
======================================== */
.u-newLine-pc::before {
  content: none;
}

.u-newLine-sp::before {
  content: "\a";
  white-space: pre;
}

.u-newLine-no {
  white-space: nowrap;
}

/* ========================================
  Padding
======================================== */
.u-pt0 {
  padding-top: 0px;
}

.u-pt5 {
  padding-top: 5px;
}

.u-pt10 {
  padding-top: 10px;
}

.u-pt15 {
  padding-top: 15px;
}

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

.u-pt25 {
  padding-top: 25px;
}

.u-pt30 {
  padding-top: 30px;
}

.u-pt35 {
  padding-top: 35px;
}

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

.u-pt45 {
  padding-top: 45px;
}

.u-pt50 {
  padding-top: 50px;
}

.u-pt55 {
  padding-top: 55px;
}

.u-pt60 {
  padding-top: 60px;
}

.u-pt65 {
  padding-top: 65px;
}

.u-pt70 {
  padding-top: 70px;
}

.u-pt75 {
  padding-top: 75px;
}

.u-pt80 {
  padding-top: 80px;
}

.u-pt85 {
  padding-top: 85px;
}

.u-pt90 {
  padding-top: 90px;
}

.u-pt95 {
  padding-top: 95px;
}

.u-pt100 {
  padding-top: 100px;
}

.u-pt105 {
  padding-top: 105px;
}

.u-pt110 {
  padding-top: 110px;
}

.u-pt115 {
  padding-top: 115px;
}

.u-pt120 {
  padding-top: 120px;
}

.u-pt125 {
  padding-top: 125px;
}

.u-pt130 {
  padding-top: 130px;
}

.u-pt135 {
  padding-top: 135px;
}

.u-pt140 {
  padding-top: 140px;
}

.u-pt145 {
  padding-top: 145px;
}

.u-pt150 {
  padding-top: 150px;
}

.u-pt155 {
  padding-top: 155px;
}

.u-pt160 {
  padding-top: 160px;
}

.u-pt165 {
  padding-top: 165px;
}

.u-pt170 {
  padding-top: 170px;
}

.u-pt175 {
  padding-top: 175px;
}

.u-pt180 {
  padding-top: 180px;
}

.u-pt185 {
  padding-top: 185px;
}

.u-pt190 {
  padding-top: 190px;
}

.u-pt195 {
  padding-top: 195px;
}

.u-pt200 {
  padding-top: 200px;
}

.u-pt205 {
  padding-top: 205px;
}

.u-pt210 {
  padding-top: 210px;
}

.u-pt215 {
  padding-top: 215px;
}

.u-pt220 {
  padding-top: 220px;
}

.u-pt225 {
  padding-top: 225px;
}

.u-pt230 {
  padding-top: 230px;
}

.u-pt235 {
  padding-top: 235px;
}

.u-pt240 {
  padding-top: 240px;
}

.u-pt245 {
  padding-top: 245px;
}

.u-pt250 {
  padding-top: 250px;
}

.u-pt255 {
  padding-top: 255px;
}

.u-pt260 {
  padding-top: 260px;
}

.u-pt265 {
  padding-top: 265px;
}

.u-pt270 {
  padding-top: 270px;
}

.u-pt275 {
  padding-top: 275px;
}

.u-pt280 {
  padding-top: 280px;
}

.u-pt285 {
  padding-top: 285px;
}

.u-pt290 {
  padding-top: 290px;
}

.u-pt295 {
  padding-top: 295px;
}

.u-pt300 {
  padding-top: 300px;
}

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

.u-pb5 {
  padding-bottom: 5px;
}

.u-pb10 {
  padding-bottom: 10px;
}

.u-pb15 {
  padding-bottom: 15px;
}

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

.u-pb25 {
  padding-bottom: 25px;
}

.u-pb30 {
  padding-bottom: 30px;
}

.u-pb35 {
  padding-bottom: 35px;
}

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

.u-pb45 {
  padding-bottom: 45px;
}

.u-pb50 {
  padding-bottom: 50px;
}

.u-pb55 {
  padding-bottom: 55px;
}

.u-pb60 {
  padding-bottom: 60px;
}

.u-pb65 {
  padding-bottom: 65px;
}

.u-pb70 {
  padding-bottom: 70px;
}

.u-pb75 {
  padding-bottom: 75px;
}

.u-pb80 {
  padding-bottom: 80px;
}

.u-pb85 {
  padding-bottom: 85px;
}

.u-pb90 {
  padding-bottom: 90px;
}

.u-pb95 {
  padding-bottom: 95px;
}

.u-pb100 {
  padding-bottom: 100px;
}

.u-pb105 {
  padding-bottom: 105px;
}

.u-pb110 {
  padding-bottom: 110px;
}

.u-pb115 {
  padding-bottom: 115px;
}

.u-pb120 {
  padding-bottom: 120px;
}

.u-pb125 {
  padding-bottom: 125px;
}

.u-pb130 {
  padding-bottom: 130px;
}

.u-pb135 {
  padding-bottom: 135px;
}

.u-pb140 {
  padding-bottom: 140px;
}

.u-pb145 {
  padding-bottom: 145px;
}

.u-pb150 {
  padding-bottom: 150px;
}

.u-pb155 {
  padding-bottom: 155px;
}

.u-pb160 {
  padding-bottom: 160px;
}

.u-pb165 {
  padding-bottom: 165px;
}

.u-pb170 {
  padding-bottom: 170px;
}

.u-pb175 {
  padding-bottom: 175px;
}

.u-pb180 {
  padding-bottom: 180px;
}

.u-pb185 {
  padding-bottom: 185px;
}

.u-pb190 {
  padding-bottom: 190px;
}

.u-pb195 {
  padding-bottom: 195px;
}

.u-pb200 {
  padding-bottom: 200px;
}

.u-pb205 {
  padding-bottom: 205px;
}

.u-pb210 {
  padding-bottom: 210px;
}

.u-pb215 {
  padding-bottom: 215px;
}

.u-pb220 {
  padding-bottom: 220px;
}

.u-pb225 {
  padding-bottom: 225px;
}

.u-pb230 {
  padding-bottom: 230px;
}

.u-pb235 {
  padding-bottom: 235px;
}

.u-pb240 {
  padding-bottom: 240px;
}

.u-pb245 {
  padding-bottom: 245px;
}

.u-pb250 {
  padding-bottom: 250px;
}

.u-pb255 {
  padding-bottom: 255px;
}

.u-pb260 {
  padding-bottom: 260px;
}

.u-pb265 {
  padding-bottom: 265px;
}

.u-pb270 {
  padding-bottom: 270px;
}

.u-pb275 {
  padding-bottom: 275px;
}

.u-pb280 {
  padding-bottom: 280px;
}

.u-pb285 {
  padding-bottom: 285px;
}

.u-pb290 {
  padding-bottom: 290px;
}

.u-pb295 {
  padding-bottom: 295px;
}

.u-pb300 {
  padding-bottom: 300px;
}

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

.u-pl5 {
  padding-left: 5px;
}

.u-pl10 {
  padding-left: 10px;
}

.u-pl15 {
  padding-left: 15px;
}

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

.u-pl25 {
  padding-left: 25px;
}

.u-pl30 {
  padding-left: 30px;
}

.u-pl35 {
  padding-left: 35px;
}

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

.u-pl45 {
  padding-left: 45px;
}

.u-pl50 {
  padding-left: 50px;
}

.u-pl55 {
  padding-left: 55px;
}

.u-pl60 {
  padding-left: 60px;
}

.u-pl65 {
  padding-left: 65px;
}

.u-pl70 {
  padding-left: 70px;
}

.u-pl75 {
  padding-left: 75px;
}

.u-pl80 {
  padding-left: 80px;
}

.u-pl85 {
  padding-left: 85px;
}

.u-pl90 {
  padding-left: 90px;
}

.u-pl95 {
  padding-left: 95px;
}

.u-pl100 {
  padding-left: 100px;
}

.u-pl105 {
  padding-left: 105px;
}

.u-pl110 {
  padding-left: 110px;
}

.u-pl115 {
  padding-left: 115px;
}

.u-pl120 {
  padding-left: 120px;
}

.u-pl125 {
  padding-left: 125px;
}

.u-pl130 {
  padding-left: 130px;
}

.u-pl135 {
  padding-left: 135px;
}

.u-pl140 {
  padding-left: 140px;
}

.u-pl145 {
  padding-left: 145px;
}

.u-pl150 {
  padding-left: 150px;
}

.u-pl155 {
  padding-left: 155px;
}

.u-pl160 {
  padding-left: 160px;
}

.u-pl165 {
  padding-left: 165px;
}

.u-pl170 {
  padding-left: 170px;
}

.u-pl175 {
  padding-left: 175px;
}

.u-pl180 {
  padding-left: 180px;
}

.u-pl185 {
  padding-left: 185px;
}

.u-pl190 {
  padding-left: 190px;
}

.u-pl195 {
  padding-left: 195px;
}

.u-pl200 {
  padding-left: 200px;
}

.u-pl205 {
  padding-left: 205px;
}

.u-pl210 {
  padding-left: 210px;
}

.u-pl215 {
  padding-left: 215px;
}

.u-pl220 {
  padding-left: 220px;
}

.u-pl225 {
  padding-left: 225px;
}

.u-pl230 {
  padding-left: 230px;
}

.u-pl235 {
  padding-left: 235px;
}

.u-pl240 {
  padding-left: 240px;
}

.u-pl245 {
  padding-left: 245px;
}

.u-pl250 {
  padding-left: 250px;
}

.u-pl255 {
  padding-left: 255px;
}

.u-pl260 {
  padding-left: 260px;
}

.u-pl265 {
  padding-left: 265px;
}

.u-pl270 {
  padding-left: 270px;
}

.u-pl275 {
  padding-left: 275px;
}

.u-pl280 {
  padding-left: 280px;
}

.u-pl285 {
  padding-left: 285px;
}

.u-pl290 {
  padding-left: 290px;
}

.u-pl295 {
  padding-left: 295px;
}

.u-pl300 {
  padding-left: 300px;
}

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

.u-pr5 {
  padding-right: 5px;
}

.u-pr10 {
  padding-right: 10px;
}

.u-pr15 {
  padding-right: 15px;
}

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

.u-pr25 {
  padding-right: 25px;
}

.u-pr30 {
  padding-right: 30px;
}

.u-pr35 {
  padding-right: 35px;
}

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

.u-pr45 {
  padding-right: 45px;
}

.u-pr50 {
  padding-right: 50px;
}

.u-pr55 {
  padding-right: 55px;
}

.u-pr60 {
  padding-right: 60px;
}

.u-pr65 {
  padding-right: 65px;
}

.u-pr70 {
  padding-right: 70px;
}

.u-pr75 {
  padding-right: 75px;
}

.u-pr80 {
  padding-right: 80px;
}

.u-pr85 {
  padding-right: 85px;
}

.u-pr90 {
  padding-right: 90px;
}

.u-pr95 {
  padding-right: 95px;
}

.u-pr100 {
  padding-right: 100px;
}

.u-pr105 {
  padding-right: 105px;
}

.u-pr110 {
  padding-right: 110px;
}

.u-pr115 {
  padding-right: 115px;
}

.u-pr120 {
  padding-right: 120px;
}

.u-pr125 {
  padding-right: 125px;
}

.u-pr130 {
  padding-right: 130px;
}

.u-pr135 {
  padding-right: 135px;
}

.u-pr140 {
  padding-right: 140px;
}

.u-pr145 {
  padding-right: 145px;
}

.u-pr150 {
  padding-right: 150px;
}

.u-pr155 {
  padding-right: 155px;
}

.u-pr160 {
  padding-right: 160px;
}

.u-pr165 {
  padding-right: 165px;
}

.u-pr170 {
  padding-right: 170px;
}

.u-pr175 {
  padding-right: 175px;
}

.u-pr180 {
  padding-right: 180px;
}

.u-pr185 {
  padding-right: 185px;
}

.u-pr190 {
  padding-right: 190px;
}

.u-pr195 {
  padding-right: 195px;
}

.u-pr200 {
  padding-right: 200px;
}

.u-pr205 {
  padding-right: 205px;
}

.u-pr210 {
  padding-right: 210px;
}

.u-pr215 {
  padding-right: 215px;
}

.u-pr220 {
  padding-right: 220px;
}

.u-pr225 {
  padding-right: 225px;
}

.u-pr230 {
  padding-right: 230px;
}

.u-pr235 {
  padding-right: 235px;
}

.u-pr240 {
  padding-right: 240px;
}

.u-pr245 {
  padding-right: 245px;
}

.u-pr250 {
  padding-right: 250px;
}

.u-pr255 {
  padding-right: 255px;
}

.u-pr260 {
  padding-right: 260px;
}

.u-pr265 {
  padding-right: 265px;
}

.u-pr270 {
  padding-right: 270px;
}

.u-pr275 {
  padding-right: 275px;
}

.u-pr280 {
  padding-right: 280px;
}

.u-pr285 {
  padding-right: 285px;
}

.u-pr290 {
  padding-right: 290px;
}

.u-pr295 {
  padding-right: 295px;
}

.u-pr300 {
  padding-right: 300px;
}

/* ========================================
  Shame リファクタリングを前提とするコード
  https://csswizardry.com/2013/04/shame-css/
======================================== */
/* ==========================================================================
  Print
  http://www.phpied.com/delay-loading-your-print-css/
========================================================================== */

@media all and (max-width: 767px){
  .--only-pc {
    display: none;
  }
  .p-shopline-header__nav-wrap {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0, 112, 179, 0.95);
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 6.25em 1.25em 0;
    overflow-y: auto;
  }
  .p-shopline-header__nav-wrap.--opened {
    visibility: visible;
    opacity: 1;
  }
  .p-shopline-header__nav-list {
    flex-direction: column;
  }
  .p-shopline-header__nav-list > a {
    color: var(--white-color);
    font-size: 0.75em;
    padding: 1.25em 0;
    border-top: 1px solid var(--white-color);
    display: block;
    width: 100%;
  }
  .p-shopline-header__nav-list > a:last-child {
    border-bottom: 1px solid var(--white-color);
  }
}

@media all and (min-width: 768px){
  .--only-sp {
    display: none;
  }
  html {
    font-size: 0.875rem;
    scroll-padding-top: 5.375em;
  }
  .p-shopline-header {
    height: 5.375em;
    padding-left: 5.555555%;
    padding-right: 5.555555%;
  }
  .p-shopline-header__logo {
    width: 6.125em;
  }
  .p-shopline-header__nav-toggle {
    display: none;
  }
  .p-shopline-header__nav-list {
    align-items: center;
  }
  .p-shopline-header__nav-list > a {
    color: var(--primary-color);
    font-size: 1em;
    font-weight: 500;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: 3.125em;
    transition: opacity 0.2s ease;
  }
  .p-shopline-header__nav-list > a:hover {
    opacity: 0.7;
  }
  .p-shopline-header__nav-list > a:last-child {
    margin-right: 0;
  }
  .p-shopline-header__nav-list > a.--contact {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 11em;
    height: 3.375em;
    border-radius: 3em;
    background-color: var(--yellow-color);
  }
  .p-shopline-main {
    padding-top: 5.375em;
  }
  .p-shopline-hero {
    margin-bottom: 5.4375em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
  }
  .p-shopline-hero__image {
    width: 51.666667%;
  }
  .p-shopline-hero__body {
    padding: 0 3.888889% 0 6.666667%;
    width: 48.333333%;
  }
  .p-shopline-hero__text {
    font-size: 1.125em;
    font-weight: 500;
    margin: 0 0 1.684211em;
    line-height: 1.4;
  }
  .p-shopline-hero__button {
    font-size: 1.5em;
  }
  .p-shopline-hero__button a {
    padding: 1.125em 1.5em;
    box-shadow: 0.083333em 0.208333em 0.333333em rgba(0, 0, 0, 0.18);
  }
  .p-shopline-group-01 {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 8em;
  }
  .p-shopline-group-01__image {
    width: 46.458333%;
    margin: 0 5% 0 2.361111%;
  }
  .p-shopline-group-01__body {
    margin-bottom: 0;
    width: 46.180556%;
    max-width: 521px;
    order: 1;
  }
  .p-shopline-title-01 {
    font-size: 3.5em;
    margin-bottom: 1em;
  }
  .p-shopline-title-01.--centered-pc {
    text-align: center;
  }
  .p-shopline-title-01__eng {
    font-size: 0.285714em;
    margin-bottom: 1.5em;
  }
  .p-shopline-title-01__main span {
    font-size: 0.714286em;
  }
  .p-shopline-title-01__sub {
    font-size: 0.428571em;
    margin-bottom: 0.333333em;
  }
  .p-shopline-inner {
    width: 94.8%;
  }
  .p-shopline-scroll-area {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5.5em;
    position: relative;
  }
  .p-shopline-scroll-area__content {
    width: 43.75%;
  }
  .p-shopline-reasons > li {
    margin-bottom: 8em;
  }
  .p-shopline-scroll-area__images {
    width: 49.305556%;
  }
  .p-shopline-reasons-images {
    position: sticky;
    top: 5em;
    height: 0;
    padding-bottom: 100%;
  }
  .p-shopline-reasons-images__list {
    margin: 0;
    padding: 0;
    list-style: none;
    height: 0;
    padding-bottom: 100%;
  }
  .p-shopline-reasons-images__list > li {
    line-height: 1;
    transition: opacity 1s cubic-bezier(0.36, 0.14, 0, 1);
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
  }
  .p-shopline-reasons-images__list > li.--is-visible {
    opacity: 1;
  }
  .p-shopline-reasons__body {
    margin-top: 0;
  }
  /*.p-shopline-reasons > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .p-shopline-reasons__image {
    width: 49.305556%;
  }

  .p-shopline-reasons__body {
    margin-top: 0;
    width: 43.75%;
  }*/
  .p-shopline-scroll-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    left: -5%;
    bottom: 0;
  }
  .p-shopline-scroll-nav > li {
    width: 0.75em;
    height: 0.75em;
    border-radius: 50%;
    margin-bottom: 1em;
    background-color: var(--white-color);
    transition: opacity 1s cubic-bezier(0.36, 0.14, 0, 1);
  }
  .p-shopline-scroll-nav > li:last-child {
    margin-bottom: 0;
  }
  .p-shopline-scroll-nav > li.--is-visible {
    background-color: var(--yellow-color);
  }
  .p-shopline-title-02 {
    font-size: 3.5em;
    margin-bottom: 0.428571em;
  }
  .p-shopline-title-02__number {
    font-size: 1.285714em;
    margin-bottom: 0.333333em;
  }
  .p-shopline-tamkun-01 {
    height: 60.138889vw;
    top: 5.375em;
  }
  .p-shopline-tamkun-01 > div {
    background-image: url(../img/img_tamkun1__pc.svg);
    background-size: contain;
  }
  .p-shopline-sub-section-01 {
    border-radius: 5em 5em 0 0;
    padding: 5.875em 0 10em;
  }
  .p-shopline-support-list {
    display: flex;
    background-image: url(../img/arrow__pc.svg);
    background-size: 100% auto;
    min-height: auto;
    width: 100%;
    padding: 0 2.631579%;
  }
  .p-shopline-support-list > li {
    margin: 0 4.166666% 0 0;
    width: 21.8750005%;
  }
  .p-shopline-support-list > li:last-child {
    margin-right: 0;
  }
  .p-shopline-support-list__image {
    margin-bottom: 1.5em;
  }
  .p-shopline-text-03 {
    margin-top: 4.666667em;
  }
  .p-shopline-sub-section-02 {
    margin-top: 10em;
  }
  .p-shopline-group-02 {
    margin-bottom: 3.5em;
    display: flex;
    align-items: center;
  }
  .p-shopline-group-02__head {
    margin-right: 1.875em;
    width: -moz-fit-content;
    width: fit-content;
    flex-shrink: 0;
  }
  .p-shopline-group-02__body {
    display: flex;
    flex-wrap: wrap;
  }
  .p-shopline-title-04 {
    font-size: 3.5em;
    margin-bottom: 0;
  }
  .p-shopline-group-02__text-01 {
    font-size: 1.5em;
    margin-bottom: 0.333333em;
    width: 100%;
  }
  .p-shopline-group-02__text-02 {
    width: -moz-fit-content;
    width: fit-content;
  }
  .p-shopline-group-02__text-02 + .p-shopline-group-02__text-02 {
    margin-left: 1.142857em;
  }
  .p-shopline-company-list {
    grid-template-columns: repeat(5, 1fr);
  }
  .p-shopline-sub-section-03 {
    padding: 10em 0;
    margin-top: 10em;
  }
  .p-shopline-group-03 {
    padding: 5em 3.5em 5em 25.25em;
  }
  .p-shopline-group-03::after {
    width: 16.25em;
    height: 28.5em;
    right: auto;
    left: 4.5em;
    bottom: auto;
    top: -2.125em;
  }
  .p-shopline-title-05 {
    font-size: 1.5em;
    margin-bottom: 1em;
  }
  .p-shopline-title-05__eng {
    margin-bottom: 1.5em;
  }
  .p-shopline-section.--bg-white {
    padding-bottom: 10em;
  }
  .p-shopline-section.--bg-blue {
    padding-top: 7.5em;
    padding-bottom: 7.5em;
  }
  .p-shopline-title-06 {
    font-size: 3.5em;
    margin-bottom: 0.571429em;
  }
  .p-shopline-text-04 {
    font-size: 1.5em;
  }
  .p-shopline-group-04 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .p-shopline-group-04__head {
    width: 43.75%;
  }
  .p-shopline-group-04__body {
    margin-top: 0;
    width: 50%;
    max-width: 568px;
  }
  .p-shopline-form__group + .p-shopline-form__group {
    margin-top: 1.5em;
  }
  .p-shopline-select-wrap,
  .p-shopline-form__input,
  .p-shopline-form__textarea {
    margin-top: 0.571429em;
  }
  .p-shopline-form__textarea {
    height: 12.7em;
  }
  .p-shopline-title-07 {
    font-size: 3.5em;
    margin-bottom: 1em;
  }
  .p-shopline-faq {
    max-width: 668px;
    padding-left: 2em;
    padding-right: 2em;
  }
  .p-shopline-faq > dt {
    font-size: 1.125em;
    margin-bottom: 0.888889em;
    background-size: auto 1em;
    padding-left: 1.777778em;
  }
  .p-shopline-footer-links {
    align-self: flex-start;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
  }
  .p-shopline-footer-links > li {
    margin-bottom: 0;
    display: flex;
    align-items: center;
  }
  .p-shopline-footer-links > li + li::before {
    content: "";
    display: block;
    width: 1px;
    height: 1.285714em;
    background-color: var(--primary-color);
    margin: 0 1.142857em;
  }
  .p-shopline-footer-sns {
    margin: 0 2.5em 0 auto;
    width: -moz-fit-content;
    width: fit-content;
  }
  .p-shopline-footer-sns__text::after {
    width: 1.875em;
  }
  .p-shopline-footer-sns__list > li {
    width: 1.375em;
  }
  .p-shopline-footer-privacy {
    width: 4.5em;
    order: 0;
  }
  .p-shopline-footer-copyright {
    width: 100%;
  }
}

@media all and (min-width: 1152px){
  html {
    font-size: 1rem;
  }
}

@media all and (min-width: 1440px){
  .p-shopline-header {
    padding-left: 5em;
    padding-right: 5em;
  }
  .p-shopline-hero__body {
    padding-right: 3.5em;
    padding-left: 6em;
  }
  .p-shopline-tamkun-01 {
    height: 54.125em;
  }
}

@media all and (min-width: 768px) and (max-width: 979px){
  .p-shopline-title-01.--variable .p-shopline-title-01__main {
    font-size: 5vw;
  }
  .p-shopline-title-02.--variable .p-shopline-title-02__main {
    font-size: 5vw;
  }
}

@media all and (min-width: 980px){
  .p-shopline-title-01.--variable .p-shopline-title-01__main {
    font-size: 1em;
  }
  .p-shopline-title-02.--variable .p-shopline-title-02__main {
    font-size: 1em;
  }
}

@media all and (min-width: 1216px){
  .p-shopline-support-list {
    padding-left: 2em;
    padding-right: 2em;
    margin-left: -2em;
    margin-right: -2em;
  }
}

@media screen and (min-width: 768px){
  .l-container {
    max-width: 1200;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
  }
  .l-footer__inner {
    padding: 2rem 1.5rem;
  }
  .l-header__inner {
    padding: 0 1.5rem;
  }
  .l-main {
    padding: 0 0 100px;
  }
  .c-btn, .c-btn-sub, .c-btn-main {
    padding: 2rem 1rem;
    font-size: 1.6rem;
  }
  .c-heading--lev1 {
    font-size: 3.8rem;
  }
  .c-heading--lev2 {
    font-size: 3rem;
  }
  .c-heading--lev3 {
    font-size: 2.6rem;
  }
  .c-heading--lev4 {
    font-size: 2rem;
  }
  .c-media {
    display: flex;
    align-items: center;
  }
  .c-media__img-wrapper {
    flex: 0 1 48.4%;
    margin-right: 3.3333333333%;
    margin-bottom: 0;
  }
  .c-media--rev {
    flex-direction: row-reverse;
  }
  .c-media--rev .c-media__img-wrapper {
    margin-right: 0;
  }
  .c-media--rev .c-media__body {
    margin-right: 3.3333333333%;
  }
  .p-accordion__btn {
    padding: 1rem 4rem 1rem 1.5rem;
    font-size: 1.6rem;
  }
  .p-accordion__body {
    padding: 0 1.5rem;
  }
  .p-accordion__txt {
    margin-bottom: 2rem;
  }
  .is-accordion-open {
    padding: 1.5rem;
  }
  .p-bnr__list-col2 {
    margin-bottom: -1.5rem;
  }
  .p-bnr__list-col2 .p-bnr__list-item {
    width: 49.375%;
    margin-right: 1.25%;
    margin-bottom: 1.5rem;
  }
  .p-bnr__list-col2 .p-bnr__list-item:nth-of-type(2n) {
    margin-right: 0;
  }
  .p-bnr__list-col3 {
    margin-bottom: -1.5rem;
  }
  .p-bnr__list-col3 .p-bnr__list-item {
    width: 32.5%;
    margin-right: 1.25%;
    margin-bottom: 1.5rem;
  }
  .p-bnr__list-col3 .p-bnr__list-item:nth-of-type(3n) {
    margin-right: 0;
  }
  .p-bnr__list-col4 {
    margin-bottom: -1.5rem;
  }
  .p-bnr__list-col4 .p-bnr__list-item {
    width: 24.0625%;
    margin-right: 1.25%;
    margin-bottom: 1.5rem;
  }
  .p-bnr__list-col4 .p-bnr__list-item:nth-of-type(4n) {
    margin-right: 0;
  }
  .p-bread-crumb__item {
    font-size: 1.4rem;
  }
  .p-card__col2 {
    margin-bottom: -3rem;
  }
  .p-card__col2 .p-card {
    width: 48.75%;
    margin-right: 2.5%;
    margin-bottom: 3rem;
  }
  .p-card__col2 .p-card:nth-of-type(2n) {
    margin-right: 0;
  }
  .p-card__col3 {
    margin-bottom: -3rem;
  }
  .p-card__col3 .p-card {
    width: 31.6666666667%;
    margin-right: 2.5%;
    margin-bottom: 3rem;
  }
  .p-card__col3 .p-card:nth-of-type(3n) {
    margin-right: 0;
  }
  .p-vert-table table {
    width: 100%;
  }
  .p-vert-table th,
  .p-vert-table td {
    white-space: pre-wrap;
  }
  .p-vert-table td:last-child,
  .p-vert-table th:last-child {
    border-right-width: 0;
  }
  .p-cross-table table {
    width: 100%;
  }
  .p-cross-table th,
  .p-cross-table td {
    white-space: pre-wrap;
  }
  .p-cross-table td:last-child,
  .p-cross-table th:last-child {
    border-right-width: 0;
  }
  .p-cross-table .p-cross-table--sticky {
    position: static;
  }
  .u-dsp-sp {
    display: none;
  }
  .u-dsp-pc {
    display: block;
  }
  .u-newLine-pc::before {
    content: "\a";
    white-space: pre;
  }
  .u-newLine-sp::before {
    content: none;
  }
}

@media screen and (min-width: 576px){
  .c-bullet-list--horiz {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -1rem;
  }
  .c-bullet-list--horiz .c-bullet-list__item {
    flex: calc(50% - 2.5rem) 1;
    margin-right: 1rem;
  }
  .c-bullet-list--horiz .c-bullet-list__item:nth-of-type(even) {
    margin-right: 0;
  }
}

@media print{
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #000 !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
