@charset "UTF-8";
/* ------------------------------

	編集時の注意
	・必ず.scssから編集してコンパイルしてください。（直接.cssを編集しないでください）

------------------------------ */
/* ------------------------------
 Mixin
------------------------------ */
/* ------------------------------
 Html, Body
------------------------------ */
html {
  background: #45bdcf;
  font-size: 2.6666666667vw;
}
@media (min-width: 751px) {
  html {
    font-size: 20px;
  }
}

body {
  margin: 0 auto;
  padding: 0;
  color: #333;
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", sans-serif;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt" 1;
  max-width: 750px;
  overflow-x: hidden;
  background-color: #eaf0f3;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
  text-align: left;
}
.show-fixed-btn body {
  padding-bottom: 8rem;
}

#page-wrap {
  background-color: white;
  overflow: hidden;
}

/* ------------------------------
 Reset CSS
------------------------------ */
* {
  box-sizing: border-box;
}

main, article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary, picture {
  display: block;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ul, ol, li, form {
  margin: 0;
  padding: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  color: currentColor;
}
button::-moz-focus-inner {
  border: 0;
}

ul {
  list-style-type: none;
}

img {
  vertical-align: bottom;
  border: 0;
  width: 100%;
}

/* ------------------------------
 link
------------------------------ */
a {
  outline: 0;
  color: currentColor;
  text-decoration: none;
}
a.line-link {
  text-decoration: underline;
}

.underline {
  border-bottom: 1px solid currentColor;
}

.underline-dash {
  border-bottom: 1px dashed currentColor;
}

/* ------------------------------
 text & layout
------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-size: 1rem;
  line-height: 1.6;
}

p, ul, dl {
  font-size: 1rem;
  line-height: 1.5;
}

sup {
  font-size: 0.7em;
}

.d-ib {
  display: inline-block;
}

.ind-1em {
  display: block;
  text-indent: -1em !important;
  padding-left: 1em;
}
.ind-1em::first-letter {
  font-feature-settings: normal;
}
.ind-1em > * {
  text-indent: 0;
}

.burasage {
  overflow: hidden;
  text-align: left;
}
.burasage > * {
  display: block;
  overflow: hidden;
}
.burasage > *:first-child {
  float: left;
  font-feature-settings: normal;
}

/* ------------------------------
 text-size
------------------------------ */
.txt-lg {
  font-size: 2.2rem;
}

.txt-md {
  font-size: 2rem;
}

.txt-rg {
  font-size: 1.6rem;
}

.txt-sm {
  font-size: 1.4rem;
}

.txt-xs {
  font-size: 1.2rem;
}

.txt-xxs {
  font-size: 0.9rem;
}

/* ------------------------------
 font-weight
------------------------------ */
.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

/* ------------------------------
 margin
------------------------------ */
.mt-0 {
  margin-top: 0 !important;
}

.mt-02em {
  margin-top: 0.2em !important;
}

.mt-05em {
  margin-top: 0.5em !important;
}

.mt-1em {
  margin-top: 1em !important;
}

.mt-2em {
  margin-top: 2em !important;
}

.mt-3em {
  margin-top: 3em !important;
}

.mt-4em {
  margin-top: 4em !important;
}

.mt-5em {
  margin-top: 5em !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-05em {
  margin-bottom: 0.5em !important;
}

.mb-1em {
  margin-bottom: 1em !important;
}

.mb-2em {
  margin-bottom: 2em !important;
}

.mb-3em {
  margin-bottom: 3em !important;
}

.mb-4em {
  margin-bottom: 4em !important;
}

.mb-5em {
  margin-bottom: 5em !important;
}

.m-auto {
  margin: auto !important;
}

/* ------------------------------
 padding
------------------------------ */
.side-padding {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.side-padding-w {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-05em {
  padding-top: 0.5em !important;
}

.pt-1em {
  padding-top: 1em !important;
}

.pt-2em {
  padding-top: 2em !important;
}

.pt-3em {
  padding-top: 3em !important;
}

.pt-4em {
  padding-top: 4em !important;
}

.pt-5em {
  padding-top: 5em !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-05em {
  padding-bottom: 0.5em !important;
}

.pb-1em {
  padding-bottom: 1em !important;
}

.pb-2em {
  padding-bottom: 2em !important;
}

.pb-3em {
  padding-bottom: 3em !important;
}

.pb-4em {
  padding-bottom: 4em !important;
}

.pb-5em {
  padding-bottom: 5em !important;
}

/* ------------------------------
 line-height
------------------------------ */
.lh-12 {
  line-height: 1.2;
}

/* ------------------------------
 text-align
------------------------------ */
.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

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

.justify {
  text-align: justify;
}

/* ------------------------------
 text-color
------------------------------ */
.color-cyan {
  color: #45bdcf;
}

.color-pink {
  color: #f17ab5;
}

.color-white {
  color: white;
}

.color-grey {
  color: #666;
}

.color-gold {
  color: #867603;
}

/* ------------------------------
 bg
------------------------------ */
.bg-base-grey {
  background-color: #eaf0f3;
}

.bg-pale-cyan {
  background-color: #ecf8fa;
}

.bg-pale-pink {
  background-color: #fdf2f7;
}

/* ------------------------------
 header
------------------------------ */
.page-header {
  padding: 1rem 0;
}
.page-header-logo {
  width: 38.8888888889%;
  margin: auto;
}

/* ------------------------------
 Fixed-btn
------------------------------ */
#fixed-btn {
  background: rgba(255, 250, 233, 0.9);
  padding: 1rem 1.5rem;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 750px;
  z-index: 100;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
  -webkit-clip-path: inset(-1rem 0 0 0);
          clip-path: inset(-1rem 0 0 0);
  opacity: 0;
  transform: translateY(50%);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-property: opacity, transform;
}
.show-fixed-btn #fixed-btn {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ------------------------------
 fv
------------------------------ */
.fv-img {
  -webkit-clip-path: circle(0%);
          clip-path: circle(0%);
}
.fv-loaded .fv-img {
  transition: -webkit-clip-path 1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: clip-path 1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: clip-path 1s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-clip-path 1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-clip-path: circle(200%);
          clip-path: circle(200%);
}

/* ------------------------------
 entry-note
------------------------------ */
.entry-note {
  background-color: #f9f2a2;
  border-radius: 1rem;
  padding: 1rem 1.5rem 1.5rem;
}
.entry-note .entry-anc {
  margin: 1rem 4rem 0;
  text-align: center;
}
.entry-note .entry-anc a {
  padding: 0.5rem 2rem 0.75rem;
  background-color: #e57304;
  color: white;
  border-radius: 1.5rem;
}

/* ------------------------------
 section
------------------------------ */
.sec-box {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  overflow: hidden;
  border: 0.3rem solid white;
}

/* ------------------------------
 gol-grid
------------------------------ */
.col-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, calc(50% - 0.5rem));
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1.5rem;
  justify-content: center;
}

/* ------------------------------
 ttl
------------------------------ */
.dot-ttl {
  text-align: center;
  padding-bottom: 0.75em;
  margin-bottom: 0.5em;
  background-image: radial-gradient(currentColor 0.2rem, transparent 0.2rem);
  background-repeat: repeat no-repeat;
  background-repeat: space no-repeat;
  background-position: 0 100%;
  background-size: 1rem 1rem;
}

/* ------------------------------
 recommend
------------------------------ */
.recommend-cover {
  margin: -0.5rem -1.5rem 1rem;
  text-align: center;
}
.recommend-cover-txt {
  font-size: 1.6rem;
  font-weight: bold;
  padding-top: 0.5em;
}

/* ------------------------------
 badge
------------------------------ */
[data-badge] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.75em;
  height: 1.5em;
  position: relative;
  background-color: currentColor;
  margin-right: 0.2em;
}
[data-badge] > span, [data-badge]::before {
  color: white;
  transform: translateY(-0.05em);
  white-space: nowrap;
}
[data-badge][data-badge]::before {
  content: attr(data-badge);
}
[data-badge][data-badge=premium] {
  background-color: #ff9123;
}
[data-badge][data-badge=premium]::before {
  content: "ライト対象外";
}
[data-badge][data-badge=ios] {
  background-color: #5d83cf;
}
[data-badge][data-badge=ios]::before {
  content: "iOS";
}
[data-badge][data-badge=andr] {
  background-color: #9ac02e;
}
[data-badge][data-badge=andr]::before {
  content: "Android";
}

/* ------------------------------
 border
------------------------------ */
.dot-border {
  background-image: radial-gradient(currentColor 0.2rem, transparent 0.2rem);
  background-repeat: repeat no-repeat;
  background-repeat: space no-repeat;
  background-position: 0 100%;
  background-size: 1rem 1rem;
  min-height: 1rem;
}

/* ------------------------------
 btn
------------------------------ */
.btn-cv {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: currentColor;
  padding: 0.5em 1em;
  line-height: 1.2;
  border-radius: 2em;
  box-shadow: 0 0.3rem color-mix(in srgb, currentColor 50%, rgba(0, 0, 0, 0.8));
  position: relative;
  max-width: 26rem;
  margin: 1.5rem auto;
}
.btn-cv > span {
  color: white;
  font-weight: bold;
  margin-right: 0.5em;
}
.btn-cv > [data-icon] {
  background: white;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  font-size: 0.8em;
  width: 1.3em;
  height: 1.3em;
  position: absolute;
  right: 1rem;
}

/* ------------------------------
 smpr
------------------------------ */
.smpr-sec .about-wrap {
  padding: 3rem 0 6rem;
  background: #fffae9;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4rem), 50% 100%, 0 calc(100% - 4rem));
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4rem), 50% 100%, 0 calc(100% - 4rem));
}
.smpr-sec .about-merit {
  background: url(../img/about_border_dot.png) no-repeat 50% 100%;
  background-size: 100% auto;
  padding-bottom: 1rem;
}
.smpr-sec .about-merit li {
  padding-top: 1rem;
  margin-top: 1rem;
  background: url(../img/about_border_dot.png) no-repeat 50% 0;
  background-size: 100% auto;
}

/* ------------------------------
 footer
------------------------------ */
.page-footer {
  margin-top: 3rem;
  text-align: center;
}
.page-footer-copyright {
  background-color: #eaf0f3;
  padding: 2rem 0;
}

/* ------------------------------
 scroll-in
------------------------------ */
.scroll-in.fade-in {
  opacity: 0;
  transition: 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-property: opacity;
}
.scroll-in.fade-in.appeared {
  opacity: 1;
}
.scroll-in.up-in {
  opacity: 0;
  transform: translateY(2rem);
  transition: 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-property: opacity, transform;
}
.scroll-in.up-in.appeared {
  opacity: 1;
  transform: translateY(0);
}
.scroll-in.popup-in {
  opacity: 0;
  transform: scale(0.9);
  transform-origin: 50% 100%;
  transition: 0.8s cubic-bezier(0.22, 1.5, 0.8, 1);
  transition-property: opacity, transform;
}
.scroll-in.popup-in.appeared {
  opacity: 1;
  transform: scale(1);
}
.scroll-in.zoom-in {
  opacity: 0;
  transform: scale(0.4);
  transform-origin: 50% 50%;
  transition: 0.8s cubic-bezier(0.22, 1.5, 0.8, 1);
  transition-property: opacity, transform;
}
.scroll-in.zoom-in.appeared {
  opacity: 1;
  transform: scale(1);
}

/* ------------------------------
 device
------------------------------ */
/* viewportによる出し分け */
[class^=show-vp-], [class*=" show-vp-"] {
  display: none !important;
}

@media (min-width: 751px) {
  .show-vp-pc {
    display: block !important;
  }
  .show-vp-pc-inline {
    display: inline !important;
  }
}
@media (max-width: 750px) {
  .show-vp- {
    display: block !important;
  }
  .show-vp-sp-inline {
    display: inline !important;
  }
}

@media (min-width: 751px) {
  .hide-vp-pc {
    display: none !important;
  }
}
@media (max-width: 750px) {
  .hide-vp-sp {
    display: none !important;
  }
}

/* UA判定による表示出し分け */
[class^=show-ua-], [class*=" show-ua-"] {
  display: none !important;
}

html.ua-ios .show-ua-ios {
  display: block !important;
}
html.ua-ios .show-ua-ios[class*=-inline] {
  display: inline !important;
}

[class^=show-ua-], [class*=" show-ua-"] {
  display: none !important;
}

html.ua-ipad .show-ua-ipad {
  display: block !important;
}
html.ua-ipad .show-ua-ipad[class*=-inline] {
  display: inline !important;
}

[class^=show-ua-], [class*=" show-ua-"] {
  display: none !important;
}

html.ua-andr .show-ua-andr {
  display: block !important;
}
html.ua-andr .show-ua-andr[class*=-inline] {
  display: inline !important;
}

[class^=show-ua-], [class*=" show-ua-"] {
  display: none !important;
}

html.ua-andr-tb .show-ua-andr-tb {
  display: block !important;
}
html.ua-andr-tb .show-ua-andr-tb[class*=-inline] {
  display: inline !important;
}

[class^=show-ua-], [class*=" show-ua-"] {
  display: none !important;
}

html.ua-pc .show-ua-pc {
  display: block !important;
}
html.ua-pc .show-ua-pc[class*=-inline] {
  display: inline !important;
}

[class^=show-ua-], [class*=" show-ua-"] {
  display: none !important;
}

html.ua-app .show-ua-app {
  display: block !important;
}
html.ua-app .show-ua-app[class*=-inline] {
  display: inline !important;
}

html.ua-ios .hide-ua-ios {
  display: none !important;
}

html.ua-ipad .hide-ua-ipad {
  display: none !important;
}

html.ua-andr .hide-ua-andr {
  display: none !important;
}

html.ua-andr-tb .hide-ua-andr-tb {
  display: none !important;
}

html.ua-pc .hide-ua-pc {
  display: none !important;
}

html.ua-app .hide-ua-app {
  display: none !important;
}

/* ------------------------------
 icon
------------------------------ */
[data-icon] {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 1.2em;
  line-height: 1;
  vertical-align: -0.2em;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  flex-shrink: 0;
}
[data-icon]::before {
  content: attr(data-icon);
}
[data-icon][data-icon=next]::before {
  content: "\e5cc";
}
[data-icon][data-icon=prev]::before {
  content: "\e5cb";
}
[data-icon][data-icon=down]::before {
  content: "\e5cf";
}
[data-icon][data-icon=up]::before {
  content: "\e5ce";
}
[data-icon][data-icon=back]::before {
  content: "\e5c4";
}
[data-icon][data-icon=forward]::before {
  content: "\e5c8";
}