@charset "UTF-8";
/*!
 * ress.css • v3.0.1
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}
/* スムーススクロール */
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}

*,
::before,
::after {
  background-repeat: no-repeat;
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
   # General elements
   # ================================================================= */
hr {
  overflow: visible;
  /* Show the overflow in Edge and IE */
  height: 0;
  /* Add the correct box sizing in Firefox */
}

details,
main {
  display: block;
  /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: none;
  /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

pre {
  font-size: 1em;
  /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder;
  /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

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

/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Hide content from screens but not screenreaders */
@media screen {
  [hidden~="screen"] {
    display: inherit;
  }
  [hidden~="screen"]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}

/* Specify the progress cursor of updating elements */
[aria-busy="true"] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}

html {
  font-size: 62.5%;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  width: 100%;
  font-size: 1.6em;
  font-family: "Noto Sans JP","Meiryo", "Arial","Yu Gothic", "Reddit Sans", "Helvetica Neue", "Helvetica",sans-serif;
  color: #414141;
  font-weight: 400;
  line-height: 1.5;
  /* letter-spacing: 0.1em; */
  margin: 0;
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  font-weight: 300;
  outline: none;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
}
  
@media screen and (min-width: 640px) {
  a:hover {
    opacity: 0.6;
  }
}

img {
  width: 100%;
  display: block;
  height: auto;
}

p, ul, ol, dl, table, pre, blockquote, h1, h2, h3, h4, h5, h6, dl, span {
  -webkit-font-feature-settings: "palt" 1;
      font-feature-settings: "palt" 1;
  margin: 0;
  padding: 0;
  color: #414141;
}
  
ul, ol {
  list-style: none;
}
  
button:focus {
  outline: 0;
}

strong {
  font-weight: 600;
  color: #f37c00;
}

.column, .columns {
  padding: 0;
  margin: 0;
}

.column:last-child, .columns:last-child {
  padding: 0;
  margin: 0;
}

.info-container {
  background: var(--bg_beige, #FBFAF6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

:root {
  --white: #fff;
  --black: #000;
  --title_gray: #171717;
  --text_gray: #505050;
  --bg_beige: #FBFAF6;
  --bg_gray: #F4F4F4;
  --primary: #F0830E;
  --bg_lightBeige: #FFF0E3;
}

.text-spacing {
  letter-spacing: 1.4px;
}
/* 共通 */

/* ファーストビュー */
.announcement-container {
  display: flex;
  width: 100%;
  max-width: 1440px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 80px 24px 100px 24px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .announcement-container {
    padding: 40px 16px 40px;
  }
}

.header-content {
  display: flex;
  width: 576px;
  max-width: 100%;
  flex-direction: column;
  align-items: stretch;
  white-space: nowrap;
  text-align: center;
  justify-content: start;
}

@media (max-width: 768px) {
  .header-content {
    white-space: initial;
  }
}

.ra9-logo {
  width: 232px;
  align-self: center;
}
@media (max-width: 640px) {
  .ra9-logo {
    width: 174px;
  }
}

.title-wrapper {
  margin-top: 40px;
  width: 100%;
}

@media (max-width: 640px) {
  .title-wrapper {
    white-space: initial;
  }
}

.main-title {
  color: var(--title_gray, #171717);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 48px;
  font-weight: 700;
  line-height: 150%;
}

@media (max-width: 640px) {
  .main-title {
    font-size: 28px;
    font-size: 7.5vw;
  }
}

.publish-date {
  color: var(--text_gray, #505050);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 177.778% */
  margin-top: 24px;
}

@media (max-width: 640px) {
  .publish-date {
    max-width: 100%;
    font-size: 16px;
    margin-top: 16px;
  }
}

.main-content {
  display: flex;
  width: 100%;
  max-width: 830px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  border-radius: 24px;
  background: var(--white, #FFF);
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.10);
  padding: 64px;
}

@media (max-width: 991px) {
  .main-content {
    padding: 16px;
    border-radius: 16px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 48px;
}

@media (max-width: 768px) {
  .content-wrapper {
    gap: 24px;
  }
}

.service-comparison {
  align-self: center;
  width: 100%;
  max-width: 577px;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
  padding: 0;
}

@media (max-width: 768px) {
  .service-comparison {
    white-space: initial;
  }
}

.img_top {
  width: 100%;
}

.announcement-text {
  color: var(--text_gray, #505050);
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 500;
  line-height: 200%; /* 36px */
}

@media (max-width: 768px) {
  .announcement-text {
    font-size: 16px;
  }
}

.cta-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  align-self: stretch;
  border-radius: 10px;
  background: var(--bg_gray, #F4F4F4);
  padding: 32px;
}

@media (max-width: 768px) {
  .cta-section {
    max-width: 100%;
    padding: 24px 16px;
    white-space: initial;
    border-radius: 8px;
  }
}

.cta-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

@media (max-width: 991px) {
  .cta-group {
    max-width: 100%;
    white-space: initial;
  }
}

.cta-label {
  color: var(--title_gray, #171717);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
}

.cta-button {
  width: 100%;
  border: 0;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding: 16px 80px;
}

@media (max-width: 640px) {
  .cta-button {
    font-size: 16px;
    padding: 16px 20px;
  }
}

.primary {
  background: var(--primary, #F0830E);
  color: var(--white, #fff);
}

.secondary {
  border: 2px solid var(--primary, #F0830E);
  background: var(--white, #FFF);
  color: var(--primary, #F0830E);
}
/* ファーストビュー */

/* 20周年 */
/* .anniversary-section {
} */
.anniversary_container {
  display: flex;
  width: 100%;
  max-width: 1440px;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  padding: 80px 0px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .anniversary_container {
    gap: 40px;
    padding: 40px 0px;
  }
}
.anniversary_logo {
  width: 100%;
  max-width: 900px;
}
@media (max-width: 640px) {
  .anniversary_logo {
    width: 86%;
  }
}
.anniversary_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 24px;
}
@media (max-width: 640px) {
  .anniversary_wrapper {
    gap: 16px;
  }
}
.anniversary_swiper {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  width: 100%;
}
.swiper {
  overflow: visible;
}
.swiper-wrapper {
  transition-timing-function: linear;
}
/* .anniversary_swipeLine {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 24px;
}
@media (max-width: 640px) {
  .anniversary_swipeLine {
    gap: 16px;
  }
} */
.anniversary_image {
  display: flex;
  align-items: center;
  border-radius: 16px;
  width: 22vw;
  max-width: 320px;
}
@media (max-width: 640px) {
  .anniversary_image {
    border-radius: 8px;
    width: 88px;
    width: 23.5vw;
  }
}
.anniversary_textContainer {
  display: flex;
  width: 100%;
  max-width: 830px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  padding: 0 24px;
  margin: 40px 0 0 0;
}
.anniversary_bodyText {
  color: var(--gray-505050, #505050);
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 500;
  line-height: 200%; /* 36px */
}
@media (max-width: 640px) {
  .anniversary_textContainer {
    margin: 24px 0 0 0;
  }
  .anniversary_bodyText {
    font-size: 16px;
  }
}
.anniversary_buttonContainer {
  padding: 24px 0;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .anniversary_buttonContainer {
    width: 100%;
  }
}
/* 20周年 */

/* ダウンロードセクション */
/* .download-section {
  padding-top: 97px;
} */

.download-container {
  align-items: center;
  border-top: 4px solid var(--font, #171717);
  border-bottom: 4px solid var(--font, #171717);
  background-color: #fff;
  position: relative;
  display: flex;
  margin-top: 97px;
  width: 100%;
  padding: 100px 24px;
  flex-direction: column;
  justify-content: start;
}

.illust-image {
  width: 168px;
  align-self: start;
  position: absolute;
  left: 50%;
  top: -100.5px;
  z-index: 0;
  max-width: 100%;
  transform: translate(-50%, 0%);
}

.download-content {
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.download-title {
  color: #f0830e;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-weight: 700;
}

.download-images {
  display: flex;
  flex-direction: row;
  margin-top: 32px;
  align-items: center;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}

.app-icon {
  width: 97px;
  align-self: stretch;
  margin: auto 0;
  flex-shrink: 0;
}

.store-badge {
  aspect-ratio: 7.75;
  object-fit: contain;
  object-position: center;
  width: 426px;
  align-self: stretch;
  min-width: 240px;
  margin: auto 0;
}

.download-options {
  z-index: 0;
  display: flex;
  margin-top: 56px;
  align-items: start;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.download-option {
  display: flex;
  min-width: 240px;
  flex-direction: column;
  align-items: stretch;
  width: 415px;
}

.option-header {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
}

.option-title {
  border-radius: 25px;
  background-color: #171717;
  width: 100%;
  padding: 10px 20px;
  color: var(--white, #FFF);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.arrow-icon {
  width: 14px;
  fill: #171717;
  align-self: center;
  margin-top: -1px;
}

.option-content {
  align-items: center;
  border-radius: 10px;
  border: 2px solid var(--font, #171717);
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  align-self: center;
  display: flex;
  margin-top: 8px;
  width: 100%;
  max-width: 415px;
  padding: 24px;
  flex-direction: column;
  justify-content: center;
}

.store-options {
  display: flex;
  width: 100%;
  align-items: start;
  gap: 40px;
  justify-content: center;
}

.store-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 164px;
}

.store-title {
  color: #f0830e;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
}

.store-button {
  width: 164px;
  margin-top: 8px;
  max-width: 100%;
}

.web-option {
  border-radius: 6px;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.browser-preview {
  display: flex;
  flex-direction: column;
  position: relative;
  aspect-ratio: 1.899;
  width: 169px;
  padding: 16px;
  align-items: end;
}

.browser-icon {
  width: 148px;
  height: auto;
  flex-shrink: 0;
}

.web-title {
  color: #f0830e;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  align-self: stretch;
  margin: auto 0;
}

@media (max-width: 640px) {
  .download-container {
    max-width: 100%;
    padding: 40px 16px;
    margin-top: 40px;
  }
  .illust-image {
    width: 128px;
    top: -77px;
  }
  .download-content {
    max-width: 100%;
  }
  .download-title {
    font-size: 20px;
  }
  .download-images {
    flex-direction: column;
  }
  .app-icon {
    width: 130px;
    margin: 0 auto;
  }
  .store-badge {
    width: 280px;
  }
  .download-options {
    max-width: 100%;
    margin-top: 40px;
  }
  .option-content {
    padding: 24px;
    width: auto;
  }
  .option-title {
    width: 100%;
    padding: 8px 16px;
    font-size: 18px;
  }
  .store-options {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .store-option {
    width: auto;
  }
  .store-button {
    width: 220px;
  }
  .browser-icon {
    width: 220px;
  }
  .web-option {
    flex-direction: column-reverse;
  }
}
/* ダウンロードセクション */

/* フッター */
.site-footer {
    justify-content: center;
    align-items: center;
    background: var(--bg_lightBeige, #FFF0E3);
    display: flex;
    width: 100%;
    gap: 40px;
    text-align: center;
    flex-wrap: wrap;
    padding: 24px 40px;
  }
  
  .copyright-text {
    font-size: 14px;
    font-weight: 400;
    align-self: stretch;
    margin: auto 0;
    color: var(--title_gray, #171717);
  }
  
  @media (max-width: 640px) {
    .site-footer {
      padding: 24px;
    }
  }
/* フッター */