@charset "utf-8";
@import "https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap";

/* --- Reset & Basic --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: break-all;
}

div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ul,
ol {
  list-style: none;
}

html,
body {
  margin: 0 auto;
  padding: 0;
  font-family: Helvetica, 'Noto Sans JP', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 20px;
  text-align: left;
  color: #333;
  /* min-width: 1080px; <-- モバイル表示の問題の原因のため削除 */
}

img {
  border-style: none;
  vertical-align: bottom;
  padding: 0;
  line-height: 0em;
  max-width: 100%;
  height: auto;
  width: auto;
}

figure {
  margin: 0 auto;
  text-align: center;
}

p {
  margin: 0 0 1em;
  padding: 0;
}

p:last-child {
  margin: 0;
}

strong {
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  padding-top: 60px;
}

/* --- Utility --- */
.bold {
  font-weight: 700;
}

.normal {
  font-weight: 400;
}

.under_line {
  text-decoration: underline;
}

.line_through {
  text-decoration: line-through;
}

.white {
  color: #fff;
}

.black {
  color: #333;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.opa {
  transition: opacity 0.3s;
}

.opa:hover {
  opacity: .7;
}

/* --- Header --- */
header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  background: rgba(255, 255, 255, .9);
  width: 100%;
  /* min-width: 1080px; <-- モバイル表示の問題の原因のため削除 */
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: rgba(0, 0, 0, .2) 0 0 5px 2px;
}

header h1 {
  padding: 8px;
  margin: 0;
  font-size: initial;
  text-align: left;
  color: initial;
  font-weight: 400;
  line-height: initial;
  background: none;
}

header h1 img {
  height: 44px;
  width: auto;
}

header dl {
  display: flex;
  align-items: center;
}

header dl dt {
  font-size: .8rem;
}

header dl dt ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 1em;
}

header dl dt ul li {
  margin: 0 1em;
}

header dl dt ul li a {
  position: relative;
}

header dl dt ul li a:after {
  content: "";
  width: 0;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}

header dl dt ul li a:hover:after {
  width: 100%;
}

header dl dd a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 240px;
  height: 60px;
  background: #144e94;
  color: #fff;
  font-size: .9rem;
  position: relative;
  padding-right: 1.5em;
  transition: 0.3s;
  box-shadow: rgba(0, 0, 0, .2) 0 0 5px 2px;
  overflow: hidden;
}

header dl dd a:hover {
  opacity: .7;
}

header dl dd a span {
  font-size: .7rem;
}

header dl dd a i {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
}

/* --- Footer --- */
footer {
  background: #fff;
  padding: 20px;
  text-align: center;
}

footer figure.logo {
  margin-bottom: 20px;
}

footer figure.logo img {
  height: 40px;
  width: auto;
}

footer p {
  font-size: .6rem;
}

p.copyright {
  font-size: .6rem;
}

/* --- Fixed Button --- */
#fixed_btn {
  background: rgba(255, 255, 255, .9);
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  /* min-width: 1080px; <-- モバイル表示の問題の原因のため削除 */
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 10px;
  padding-top: 10px;
  z-index: 99;
  transition: 0.3s;
}

#fixed_btn.negative {
  opacity: 0;
  pointer-events: none;
}

#fixed_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  height: 60px;
  background: linear-gradient(180deg, #f10 0%, #c40d00 100%);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, .25);
  box-shadow: 0 5px 5px rgba(0, 0, 0, .63);
  position: relative;
  transition: 0.3s;
  overflow: hidden;
}

#fixed_btn.big a {
  width: 480px;
}

#fixed_btn a:hover {
  box-shadow: none;
  opacity: .7;
}

#fixed_btn a i {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  color: #f6e94e;
}

/* --- Layout --- */
#content {
  overflow: hidden;
}

section {
  width: 100%;
  margin: 0 auto;
}

.maincontent {
  padding: 0;
  margin: 0 auto;
  width: 1080px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 900;
  font-family: Helvetica, 'Noto Sans JP', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
}

/* --- Components --- */
figure.btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 400px;
  height: 80px;
  background: linear-gradient(180deg, #f10 0%, #c40d00 100%);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, .25);
  box-shadow: 0 5px 5px rgba(0, 0, 0, .63);
  position: relative;
  transition: 0.3s;
  overflow: hidden;
}

figure.btn.big a {
  width: 480px;
}

figure.btn a:hover {
  box-shadow: none;
  opacity: .7;
}

figure.btn a i {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  color: #f6e94e;
}

.shiny:after {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 50px;
  height: 50px;
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 0) 0%);
  animation: shiny 3s ease-in-out infinite;
}

@keyframes shiny {
  0% {
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  50% {
    transform: scale(1) rotate(25deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}

/* --- Sections --- */
#fv img {
  width: 100%;
}

.cv {
  background: url(../images/cv_bg.webp) center center no-repeat;
  background-size: cover;
  padding: 40px 0;
  text-align: center;
}

.cv h3 {
  font-size: 1.2rem;
  line-height: 1.5em;
  color: #144e94;
  margin-bottom: 20px;
}

.cv p {
  font-size: 1.2rem;
  line-height: 1.5em;
  font-weight: 700;
  margin-bottom: 20px;
}

#sec01 {
  margin: 60px auto 0;
}

#link01 {
  padding: 0;
}

#sec01 .maincontent {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 40px;
}

#sec01 figure img {
  width: 50%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  top: 0;
  transform: none;
}

#sec01 h2 {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

#sec01 h2 strong {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #144e94;
  color: #fff;
  font-size: 2rem;
  line-height: 1.25em;
  padding: .25em;
}

#sec01 p {
  font-size: 1rem;
  line-height: 1.6em;
  font-weight: 700;
  text-align: justify;
}

#sec02 {
  background: #fff;
  position: relative;
  z-index: 5;
}

#sec02 h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -90px 0 20px;
}

#sec02 h2 strong {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #036;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.25em;
  padding: .5em 1em;
  border-radius: 8px;
}

#sec02 p {
  text-align: center;
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1.5em;
  color: #fff;
  margin-bottom: 0;
}

#sec02 p strong {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.5em;
}

#sec02 .sec02_list {
  margin: 20px auto;
  text-align: center;
}

#sec02 .sec02_list ul {
  display: inline-block;
  background: #fff;
  padding: .5em;
}

#sec02 .sec02_list ul li {
  text-align: left;
  padding-left: 1.25em;
  font-size: 1.2rem;
  font-weight: 900;
  color: #000;
  margin: .5em;
  position: relative;
}

#sec02 .sec02_list ul li i {
  position: absolute;
  left: 0;
  top: .25em;
}

#sec02 h3 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1em;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  text-align: center;
}

#sec02 h3 strong {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background: #1a5ca0;
  color: #fff;
}

#sec02 figure img {
  width: 50%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  top: 0;
  transform: none;
}

#sec03 {
  padding: 90px 0 60px;
  background-color: #ededed;
}

#sec03 figure img {
  width: 50%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  top: 0;
  transform: none;
}

#sec03 h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #144e94;
  margin-bottom: 20px;
}

#sec03 h3 {
  text-align: center;
  font-size: 1.6rem;
  color: #000;
  margin-bottom: 10px;
  margin-top: 10px;
}

#sec03 dl dt {
  background: #144e94;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: .25em .5em .25em 1.75em;
  position: relative;
  margin: 60px auto 20px;
}

#sec03 dl dt span {
  position: absolute;
  left: .5em;
  top: .25em;
}

#sec03 dl dd {
  padding-left: 40px;
}

#sec03 dl dd p {
  font-size: 1.2rem;
  color: #144e94;
  font-weight: 700;
}

#sec04 {
  background: #f8e8c7;
  padding: 60px 0;
}

#sec04 figure img {
  width: 50%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  top: 0;
  transform: none;
}

#sec04 h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #144e94;
  margin-bottom: 40px;
}

#sec04 .merit_list ul {
  display: flex;
  justify-content: center;
}

#sec04 .merit_list ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(33.33% - 20px);
  margin: 0 10px;
  background: #144e94;
  border: 1px solid #144e94;
  color: #fff;
}

#sec04 .merit_list ul li figure {
  margin-bottom: 20px;
}

#sec04 .merit_list ul li .txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#sec04 .merit_list ul li h4 {
  display: flex;
  background: #fff;
  color: #144e94;
  padding: .25em 1em;
  font-size: .8rem;
  margin-bottom: 20px;
  border-radius: 2em;
}

#sec04 .merit_list ul li h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1.5em;
  min-height: 3em;
  text-align: center;
  margin-bottom: 20px;
}

#sec05 {
  background: url(../images/foryou_bg.webp) center center no-repeat;
  background-size: cover;
  padding: 40px 0;
}

#sec05 figure img {
  width: 50%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  top: 0;
  transform: none;
}

#sec05 h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 20px;
}

#sec05 h3 {
  text-align: center;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 40px;
}

#sec05 dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#sec05 dl dt {
  width: calc(100% - 480px);
}

#sec05 dl dd {
  width: 440px;
}

#sec05 dl dt ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

#sec05 dl dt ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  font-weight: 700;
  font-size: .9rem;
}

#sec05 p {
  font-size: .9rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

#sec05 figure.btn {
  margin-top: 40px;
}

#sec05 figure.btn p {
  color: #fff;
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.howto {
  padding: 60px 0;
}

.howto.howto02 {
  background: #fff;
}

.howto.howto04 {
  background: #fff;
}

.howto h3 {
  text-align: center;
  font-size: 1.8rem;
  color: #000;
}

.howto h2 span {
  display: block;
  color: #000;
}

.howto .point {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.howto .point h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #1a5ca0;
  color: #fff;
  padding: 10px 10px 20px;
  width: 690px;
  font-size: 1rem;
}

.howto .point h3 strong {
  font-style: italic;
  font-size: 1.6rem;
  line-height: 1.5em;
}

.howto .point01 img {
  width: 690px;
}

.howto .point02 {
  margin-bottom: 60px;
}

.howto .point02 ul {
  display: flex;
}

.howto.howto02 .point02 ul li img {
  width: 280px !important;
  height: auto !important;
}

.howto.howto02 .point02 ul {
  width: 200%;
}

.howto.howto02 .point02 {
  margin-bottom: 60px;
}

.howto .point03 {
  margin-bottom: 60px;
  position: relative;
}

.howto .point03 figure img {
  width: 320px;
}

.howto .point03 ul li {
  width: 360px;
  position: absolute;
}

.howto .point03 ul li:nth-child(1) {
  left: 0;
  top: 80px;
}

.howto .point03 ul li:nth-child(2) {
  right: 0;
  top: 80px;
}

.howto .point03 ul li:nth-child(3) {
  left: 0;
  top: 300px;
}

.howto .point03 ul li:nth-child(4) {
  right: 0;
  top: 300px;
}

.howto .point03 ul li dl dt {
  background: #fff;
  text-align: center;
}

.howto .point03 ul li dl dt h4 {
  font-size: 1rem;
  color: #000;
  padding: .25em;
}

.howto .point03 ul li dl dd {
  background: #000;
  color: #fff;
  padding: 10px;
}

.howto .point03 ul li dl dd h5 {
  text-align: center;
  font-size: .9rem;
  margin-bottom: 10px;
}

.howto .point03 ul li dl dd p {
  font-size: .7rem;
  line-height: 1.5em;
  min-height: 6em;
  text-align: justify;
}

.howto .steps img {
  width: 690px;
}

.howto .point04 h4 {
  text-align: center;
  font-size: 1.4rem;
  color: #1a5ca0;
  margin-bottom: 20px;
}

.howto .point04 img {
  width: 690px;
}

.howto .point04 p.att {
  text-align: center;
  font-size: .7rem;
  font-weight: 700;
  margin-top: 1em;
}

.howto .point05 ul {
  display: flex;
  justify-content: center;
}

.howto .point05 ul li {
  margin: 0 10px;
}

.howto .point05 ul li figure {
  margin-bottom: 10px;
}

.howto .point05 ul li h4 {
  border: 1px solid #144e94;
  font-size: 1.2rem;
  color: #144e94;
  padding: .5em;
  text-align: center;
}

.howto figure.btn {
  margin-top: 60px;
}

.howto figure.btn p {
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

#reason {
  padding: 60px 0;
  background-color: #ededed;
}

#reason h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #1a5ca0;
  margin-bottom: 20px;
}

#reason h3 {
  text-align: center;
  font-size: 1.6rem;
  color: #000;
}

#reason .reason_list dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 60px auto 0;
}

#reason .reason_list dl dt {
  width: 50%;
}

#reason .reason_list dl dd {
  width: calc(50% - 40px);
}

#reason .reason_list dl dt h4 {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

#reason .reason_list dl dt h4 span {
  font-size: 1.2rem;
  line-height: 1.5em;
  color: #fff;
}

#reason .reason_list dl dt h4 strong {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.5em;
  color: #fff;
}

#reason .reason_list dl dt p {
  font-size: .8rem;
  font-weight: 700;
}

#reason .reason_list dl:nth-child(2n+1) {
  flex-direction: row-reverse;
}

#reason .reason_list dl:nth-child(2n) dt h4 {
  align-items: flex-end;
  text-align: right;
}

#reason .reason_list dl:nth-child(2n) dt p {
  text-align: right;
}

#recommended-users {
  padding: 90px 0 60px;
  background: #144e94;
}

#recommended-users h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #1a5ca0;
  margin-bottom: 20px;
}

#recommended-users h3 {
  text-align: center;
  font-size: 1.6rem;
  color: #000;
}

#step {
  padding: 60px 0;
  background: #f8e8c7;
}

#step h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #1a5ca0;
}

#step h3 {
  text-align: center;
  font-size: 1.6rem;
  color: #000;
  margin-bottom: 40px;
}

#step h4 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 40px;
}

#step h4 strong {
  color: #000;
}

#step h4 strong span {
  font-size: 200%;
  font-style: italic;
}

#step .step_list ul {
  display: flex;
  justify-content: center;
}

#step .step_list ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(33.33% - 20px);
  margin: 0 10px;
  background: #144e94;
  border: 1px solid #144e94;
  color: #fff;
}

#step .step_list ul li figure {
  margin-bottom: 20px;
}

#step .step_list ul li .txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#step .step_list ul li h4 {
  display: flex;
  background: #fff;
  color: #144e94;
  padding: .25em 1em;
  font-size: .8rem;
  margin-bottom: 20px;
  border-radius: 2em;
}

#step .step_list ul li h3 {
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1.5em;
  text-align: center;
  margin-bottom: 20px;
}

#step .notice {
  background: #fff;
  padding: 20px;
  font-size: .8rem;
  text-align: center;
  margin: 40px 10px 0;
}

#step .notice ul {
  display: inline-block;
}

#step .notice ul li {
  text-align: left;
  padding-left: 1.25em;
  position: relative;
}

#step .notice ul li:before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}

#plan {
  padding: 60px 0;
  background-color: #ededed;
}

#plan h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #1a5ca0;
}

#plan h3 {
  text-align: center;
  font-size: 1.6rem;
  color: #000;
}

#plan .camp {
  background: #144e94;
  border: 10px double #fff;
  color: #fff;
  padding: 60px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#plan .camp h5 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  padding: .25em 1em;
  background: #fff;
  color: #1a5ca0;
  border-radius: 2em;
  margin-bottom: 20px;
}

#plan .camp h4 {
  font-size: 1.6rem;
}

#plan .camp h4 strong {
  font-size: 125%;
  line-height: 1.25em;
}

#plan .camp h6 {
  font-size: 1.2rem;
}

#plan .camp p {
  font-size: .8rem;
}

#plan .camp .price p {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

#plan .camp .price p:first-child {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

#plan .camp .price p strong {
  font-size: 166%;
  margin-right: .25em;
  font-style: italic;
}

#plan .message {
  margin: 60px auto;
  text-align: center;
}

#plan .message h4 {
  background: #1a5ca0;
  color: #fff;
  font-size: 1.6rem;
  padding: .25em;
  margin-bottom: 20px;
}

#plan .message p {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 2.5em;
}

#plan .message p strong {
  color: #1a5ca0;
}

#plan .compare_table {
  margin-top: 60px;
}

#plan .compare_table table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 8px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.25em;
  position: relative;
}

#plan .compare_table table thead td {
  width: 20%;
}

#plan .compare_table table thead th.main {
  background: #1a5ca0;
  color: #fff;
}

#plan .compare_table table thead th {
  background: #e1f4ff;
  padding: 1em;
  vertical-align: middle;
}

#plan .compare_table table tbody th {
  background: #666;
  color: #fff;
  padding: 1em;
  vertical-align: middle;
}

#plan .compare_table table tbody td {
  font-size: .9rem;
  padding: 1em;
  vertical-align: middle;
}

#plan .compare_table table tbody td.main {
  font-weight: 700;
}

#plan .compare_table table tbody tr:nth-child(2n) td {
  background: #f7f7f7;
}

#plan .compare_table table:after {
  content: "";
  width: calc(26.66% - 16px);
  height: calc(100% - 32px);
  border: 4px solid #1a5ca0;
  position: absolute;
  left: calc(20% + 8px);
  top: 8px;
}

#app {
  background: url(../images/app_bg.webp) center center no-repeat;
  background-size: cover;
  padding: 40px 0;
}

#app h2 {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 20px;
}

#app h3 {
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

#app .app_slide {
  width: calc(100% + 840px);
  margin-left: -420px;
  pointer-events: none;
}

#app .app_slide ul li img {
  width: 100%;
}

#form {
  background: #f0f0f0;
  padding: 60px 0;
}

#form .maincontent {
  background: #fff;
  padding: 0 0 60px;
}

#form .lead {
  background: #2999c4;
  padding: 40px 20px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #2999c4;
}

#form .lead h5 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  padding: .25em 1em;
  background: #fff;
  color: #2999c4;
  border-radius: 2em;
  margin-bottom: 10px;
}

#form .lead h4 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 20px;
}

#form .lead h6 {
  font-size: 1rem;
  background: #fff;
  text-align: center;
  color: #2999c4;
  padding: .5em 1em;
  margin-bottom: 40px;
}

#form figure.btn {
  margin-top: 60px;
}

#form .function {
  margin: 60px;
  border: 1px solid #333;
  padding: 40px;
}

#form .function h4 {
  text-align: center;
  font-size: 1.2rem;
  border-bottom: 1px solid #333;
  margin: 20px auto;
}

#form .function h4 span {
  font-size: 75%;
}

#form .function h4:first-child {
  margin-top: 0;
}

#form .function h3 {
  text-align: center;
  font-size: 1.4rem;
  background: #2999c4;
  color: #fff;
  padding: .5em;
  margin: 60px auto 20px;
}

#form .function h3 span {
  font-size: 75%;
}

#form .function ul {
  margin: 20px 20px 40px;
}

#form .function ul:last-child {
  margin-bottom: 0;
}

#form .function ul li {
  padding: .5em .5em .5em 2em;
  position: relative;
  border-bottom: 1px dotted #333;
  font-size: 1rem;
  line-height: 1.5em;
}

#form .function ul li:first-child {
  border-top: 1px dotted #333;
}

#form .function ul li i {
  position: absolute;
  left: .5em;
  top: .5em;
  line-height: 1.5em;
  color: #2999c4;
}

#form .att {
  background: #efefef;
  padding: 40px;
  margin: 60px 60px 0;
}

#form .att h5 {
  text-align: center;
  margin-bottom: 1em;
  font-size: .9rem;
}

#form .att ul li {
  font-size: .7rem;
  line-height: 1.5em;
  padding-left: 1em;
  position: relative;
  margin-bottom: .5em;
}

#form .att ul li:before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.5em;
}

#form .att ul li:last-child {
  margin-bottom: 0;
}

#form .att ul li a {
  color: #000;
  text-decoration: underline;
}

#form .att ul li a:hover {
  text-decoration: none;
}

#sen02-1 {
  background: #fff;
  padding: 40px 0;
  position: relative;
  z-index: 5;
}

#sen02-1 figure img {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  top: 0;
  transform: none;
}

#recommend {
  padding: 90px 0 60px;
  background: #fff;
}

.recommended-users-grid {
  display: flex;
  justify-content: space-between;
  max-width: 1080px;
  padding: 0 20px;
  gap: 30px;
}

.howto .point02 ul li img {
  width: 230px;
  height: auto;
}

.howto.howto02 .point02 ul li img {
  width: 280px !important;
  height: auto !important;
}

.howto.howto02 .point02 ul {
  width: 200%;
}

.howto.howto02 .point02 {
  margin-bottom: 60px;
}


/* =================================== */
/* --- Media Queries (PC / Tablet) --- */
/* =================================== */

@media print,
screen and (min-width: 769px) {
  header dl dt {
    display: block !important;
    opacity: 1.0 !important;
    height: auto !important;
  }

  #smp_nav_btn {
    display: none !important;
  }
  
  .smp {
    display: none !important;
  }
}

@media print,
screen and (min-width: 1400px) {
  #sec01 h2 strong br {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  #sec02-1 {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  #sec02-1 figure img {
    width: 800px;
  }

  #sec02-1 figure img,
  img[src*="off-campaign_blue.webp"] {
    width: 600px;
  }

  #plan figure img[src*="price.webp"],
  #plan figure img[src*="price-campaign.webp"] {
    width: 600px;
  }

  #sec02-1,
  #plan {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .custom-img {
    margin-top: 10px;
  }

  .custom-img img {
    width: 400px;
  }
}

@media screen and (min-width: 769px) {
  .howto.howto02 .point02 {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .howto.howto02 .point02::-webkit-scrollbar {
    height: 8px;
  }

  .howto.howto02 .point02::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
  }

  .howto.howto02 .point02::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
  }

  .howto.howto02 .point02 ul li {
    display: flex;
    width: 200%;
    gap: 20px;
    padding: 10px 0;
  }
}


/* =================================== */
/* --- Media Queries (Mobile) --- */
/* =================================== */

@media screen and (max-width: 768px) {
  html,
  body {
    font-size: 4vw;
    min-width: 240px;
    max-width: 767px;
  }

  body {
    padding-top: 10vw;
  }

  header {
    min-width: 100%;
  }

  header h1 {
    width: auto;
    margin: 0;
    padding: 1.25vw;
  }

  header h1 img {
    width: auto;
    height: 7.5vw;
  }

  header dl dt {
    display: none;
    height: 100vh;
    min-height: 100dvh !important;
    position: fixed;
    left: 0;
    right: 0;
    top: 10vw;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    overflow-x: hidden;
    overflow-y: auto;
  }

  header dl dt ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    width: 92.5%;
  }

  header dl dt ul li {
    margin: 0;
    font-size: 1.5rem;
    width: 100%;
    text-align: center;
  }

  header dl dt ul li a {
    display: block;
    border-bottom: 1px solid #333;
    padding: 1em;
  }

  header dl dt ul li:first-child a {
    border-top: 1px solid #333;
  }

  header dl dt ul li a:after {
    display: none;
  }

  header dl dd {
    display: none;
  }

  #smp_nav_btn {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    width: 10vw;
    height: 10vw;
    position: fixed;
    right: 1.25vw;
    top: 0;
    z-index: 999;
    transition: 0.3s;
    cursor: pointer;
  }

  #smp_nav_btn span {
    display: block;
    height: 1px;
    width: 7.5vw;
    background: #000;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: auto;
    transition: 0.3s;
  }

  #smp_nav_btn span:before {
    content: "";
    display: block;
    height: 1px;
    width: 7.5vw;
    background: #000;
    position: absolute;
    bottom: 1.875vw;
    transition: 0.3s;
  }

  #smp_nav_btn span:after {
    content: "";
    display: block;
    height: 1px;
    width: 7.5vw;
    background: #000;
    position: absolute;
    top: calc(1.875vw + 1px);
    transition: 0.3s;
  }

  #smp_nav_btn.active span {
    background: rgba(255, 255, 255, 0);
  }

  #smp_nav_btn.active span:before {
    bottom: 0;
    transform: rotate(45deg);
  }

  #smp_nav_btn.active span:after {
    top: 0;
    transform: rotate(-45deg);
  }

  footer {
    padding: 3.75%;
  }

  footer figure.logo {
    margin-bottom: 3.75%;
  }

  footer figure.logo img {
    height: 7.5vw;
  }

  footer p {
    font-size: .6rem;
  }

  p.copyright {
    font-size: .6rem;
  }

  #fixed_btn {
    min-width: 100%;
    width: 100%;
  }

  #fixed_btn a {
    height: 15vw;
    border-radius: 1.25vw;
  }

  #fixed_btn.big a {
    width: 100%;
  }

  .maincontent {
    padding: 0;
    margin: 0 auto;
    width: 92.5%;
  }

  figure.btn a {
    width: 100%;
    height: 15vw;
  }

  figure.btn.big a {
    width: 100%;
  }

  .cv {
    background: #fff;
    padding: 0 0 7.5%;
  }

  .cv .maincontent {
    padding-top: 7.5%;
  }

  .cv h3 {
    font-size: 1rem;
  }

  .cv p {
    font-size: 1rem;
  }

  #sec01 {
    margin: 0;
  }

  #sec01 .maincontent {
    width: 92.5%;
    padding: 7.5% 0;
  }

  #sec01 figure {
    margin: 3.75% auto;
  }

  #sec01 figure img {
    width: 100%;
    max-width: 100%;
    position: static;
    transform: none;
  }

  #sec01 h2 {
    margin-bottom: 3.75%;
    justify-content: center;
  }

  #sec01 h2 strong {
    font-size: 2rem;
  }

  #sec01 p {
    font-size: 1rem;
  }

  #sec02 h2 {
    margin: -15vw 0 2.5%;
  }

  #sec02 h2 strong {
    font-size: 1.4rem;
    border-radius: 1.25vw;
  }

  #sec02 p {
    font-size: 1.5rem;
  }

  #sec02 .sec02_list {
    margin: 3.75% auto;
  }

  #sec02 .sec02_list ul {
    padding: .5em;
  }

  #sec02 .sec02_list ul li {
    font-size: .9rem;
  }

  #sec02 h3 {
    bottom: -1em;
    font-size: 3rem;
  }

  #sec02 h3 strong {
    margin: 0 1.25vw;
  }

  #sec02 figure {
    margin: 3.75% auto;
  }

  #sec02 figure img {
    width: 100%;
    max-width: 100%;
    position: static;
    transform: none;
  }

  #sec03 figure {
    margin: 3.75% auto;
  }

  #sec03 figure img {
    width: 100%;
    max-width: 100%;
    position: static;
    transform: none;
  }

  #sec03 {
    padding: 20% 0 15%;
  }

  #sec03 h2 {
    font-size: 1.9rem;
    margin-bottom: 2.5%;
  }

  #sec03 h3 {
    font-size: 1.6rem;
    margin-bottom: 2%;
    margin-top: 2%;
  }

  #sec03 dl dt {
    font-size: 1rem;
    margin: 10% auto 2.5%;
  }

  #sec03 dl dd {
    padding-left: 0;
  }

  #sec03 dl dd p {
    font-size: 1rem;
    text-align: justify;
  }

  #sec04 figure {
    margin: 3.75% auto;
  }

  #sec04 figure img {
    width: 100%;
    max-width: 100%;
    position: static;
    transform: none;
  }

  #sec04 {
    padding: 15% 0;
  }

  #sec04 h2 {
    font-size: 2rem;
  }

  #sec04 .merit_list ul {
    display: block;
  }

  #sec04 .merit_list ul li {
    flex-direction: row;
    width: 100%;
    margin: 2.5% auto;
  }

  #sec04 .merit_list ul li figure {
    margin-bottom: 0;
    width: 42.5%;
  }

  #sec04 .merit_list ul li .txt {
    width: 57.5%;
  }

  #sec04 .merit_list ul li h4 {
    font-size: .75rem;
  }

  #sec04 .merit_list ul li h3 {
    font-size: .9rem;
    margin-bottom: 0;
  }

  #sec05 figure {
    margin: 3.75% auto;
  }

  #sec05 figure img {
    width: 100%;
    max-width: 100%;
    position: static;
    transform: none;
  }

  #sec05 {
    padding: 10% 0;
  }

  #sec05 h2 {
    font-size: 2rem;
    margin-bottom: 3.75%;
  }

  #sec05 h3 {
    font-size: 1.5rem;
  }

  #sec05 dl {
    display: flex;
    flex-direction: column-reverse;
  }

  #sec05 dl dt {
    width: 100%;
  }

  #sec05 dl dd {
    width: 100%;
  }

  #sec05 dl dt ul {
    width: 100%;
    margin: 0 auto 2.5%;
  }

  #sec05 dl dt ul li {
    width: 40vw;
    height: 40vw;
    font-size: 1.2rem;
    margin: 2.5%;
  }

  #sec05 p {
    text-align: justify;
    font-size: .9rem;
  }

  #sec05 figure.btn {
    margin-top: 7.5%;
  }

  #sec05 figure.btn p {
    font-size: 1.2rem;
  }

  .howto {
    padding: 15% 0;
  }

  .howto h2 {
    font-size: 1.6rem;
    margin-bottom: 2.5%;
  }

  .howto h2 span {
    font-size: 125%;
    line-height: 1.5em;
  }

  .howto .point {
    margin-bottom: 7.5%;
  }

  .howto .point h3 {
    padding: 2.5% 2.5% 3.75%;
    width: 100%;
    font-size: 1rem;
  }

  .howto .point01 img {
    width: 100%;
  }

  .howto .point02 {
    margin-bottom: 15%;
    overflow-y: hidden;
    overflow-x: auto;
  }

  .howto .point02 ul {
    width: 200%;
  }

  .howto.howto02 .point02 ul li img {
    width: 100% !important;
    height: auto !important;
  }

  .howto.howto02 .point02 {
    margin-bottom: 15%;
    overflow-y: hidden;
    overflow-x: auto;
  }

  .howto.howto02 .point02 ul {
    width: 200%;
  }

  .howto .point03 {
    margin-bottom: 15%;
  }

  .howto .point03 figure img {
    width: 75%;
  }

  .howto .point03 ul li {
    width: 100%;
    position: static;
    margin-top: 3.75%;
  }

  .howto .point03 ul li dl dt h4 {
    font-size: 1.2rem;
  }

  .howto .point03 ul li dl dd {
    padding: 3.75%;
  }

  .howto .point03 ul li dl dd h5 {
    font-size: 1rem;
    margin-bottom: 2.5%;
  }

  .howto .point03 ul li dl dd p {
    font-size: .8rem;
    min-height: 1em;
  }

  .howto .steps img {
    width: 100%;
  }

  .howto .point04 h4 {
    font-size: .9rem;
    margin-bottom: 2.5%;
  }

  .howto .point04 img {
    width: 100%;
  }

  .howto .point04 p.att {
    font-size: .7rem;
  }

  .howto .point05 {
    overflow-y: hidden;
    overflow-x: auto;
  }

  .howto .point05 ul {
    width: 200%;
  }

  .howto .point05 ul li {
    margin: 0 2.5%;
  }

  .howto .point05 ul li figure {
    margin-bottom: 2.5%;
  }

  .howto .point05 ul li h4 {
    font-size: 1rem;
  }

  .howto figure.btn {
    margin-top: 7.5%;
  }

  .howto figure.btn p {
    font-size: 1rem;
  }

  #reason {
    padding: 15% 0;
  }

  #reason h2 {
    font-size: 2rem;
    margin-bottom: 2.5%;
  }

  #reason .reason_list dl {
    display: block;
    margin: 10% auto 0;
  }

  #reason .reason_list dl dt {
    width: 100%;
    text-align: center;
    margin-bottom: 3.75%;
  }

  #reason .reason_list dl dd {
    width: 100%;
  }

  #reason .reason_list dl dt h4 {
    margin-bottom: 2.5%;
  }

  #reason .reason_list dl dt h4 span {
    font-size: 1.4rem;
  }

  #reason .reason_list dl dt h4 strong {
    font-size: 1.8rem;
  }

  #reason .reason_list dl dt p {
    font-size: 1rem;
    text-align: justify;
  }

  #reason .reason_list dl:nth-child(2n) dt h4 {
    align-items: center;
    text-align: center;
  }

  #reason .reason_list dl:nth-child(2n) dt p {
    text-align: justify;
  }

  #recommended-users {
    padding: 10% 0 10%;
  }

  #recommended-users h2 {
    font-size: 2rem;
    margin-bottom: 2.5%;
  }

  #recommended-users h3 {
    font-size: 1.5rem;
  }

  #step {
    padding: 7.5% 0 15%;
  }

  #step h2 {
    font-size: 2rem;
  }

  #step h3 {
    font-size: 1.5rem;
  }

  #step h4 {
    font-size: 1.2rem;
  }

  #step h4 strong span {
    font-size: 200%;
  }

  #step .step_list ul {
    display: block;
  }

  #step .step_list ul li {
    flex-direction: row;
    width: 100%;
    margin: 2.5% auto;
  }

  #step .step_list ul li figure {
    margin-bottom: 0;
    width: 50%;
  }

  #step .step_list ul li .txt {
    width: 50%;
  }

  #step .step_list ul li h4 {
    font-size: .75rem;
  }

  #step .step_list ul li h3 {
    font-size: .9rem;
    margin-bottom: 0;
  }

  #step .notice {
    padding: 5% 2.5%;
    font-size: .9rem;
    margin: 10% auto 0;
  }

  #plan {
    padding: 15% 0;
  }

  #plan h2 {
    font-size: 2rem;
  }

  #plan h3 {
    font-size: 1.4rem;
  }

  #plan .camp {
    border: 1.25vw;
    padding: 5%;
  }

  #plan .camp h5 {
    font-size: .8rem;
    margin-bottom: 2.5%;
  }

  #plan .camp h4 {
    font-size: 1.4rem;
  }

  #plan .camp h6 {
    font-size: 1.2rem;
  }

  #plan .camp p {
    font-size: .8rem;
  }

  #plan .camp .price p {
    font-size: .8rem;
  }

  #plan .camp .price p:first-child {
    font-size: 1.2rem;
    margin-bottom: 2.5%;
  }

  #plan .camp .price p strong {
    font-size: 166%;
  }

  #plan .message {
    margin: 15% auto;
  }

  #plan .message h4 {
    font-size: 1.2rem;
    margin-bottom: 2.5%;
  }

  #plan .message p {
    font-size: 1rem;
    line-height: 2em;
  }

  #plan .compare_table {
    margin-top: 15%;
    width: calc(100% + 5vw);
    margin-left: -2.5vw;
  }

  #plan .compare_table table {
    width: 100%;
    border-spacing: 4px;
    font-size: .8rem;
  }

  #plan .compare_table table thead td {
    width: 20%;
  }

  #plan .compare_table table thead th {
    padding: 1em .25em;
  }

  #plan .compare_table table tbody th {
    padding: 1em .25em;
  }

  #plan .compare_table table tbody td {
    font-size: .7rem;
    padding: 1em .25em;
  }

  #plan .compare_table table:after {
    content: "";
    width: calc(26.66% - 8px);
    height: calc(100% - 16px);
    border: 4px solid #1a5ca0;
    position: absolute;
    left: calc(20% + 2px);
    top: 4px;
  }

  #app {
    padding: 7.5% 0;
  }

  #app h2 {
    font-size: 1.6rem;
  }

  #app h3 {
    font-size: 1rem;
  }

  #app .app_slide {
    width: calc(100% + 120vw);
    margin-left: -60vw;
  }

  #form {
    padding: 0;
    border-bottom: 1px solid #333;
  }

  #form .maincontent {
    width: 100%;
    padding: 0 0 15%;
  }

  #form .lead {
    padding: 7.5% 3.75% 0;
  }

  #form .lead h5 {
    font-size: 1rem;
    margin-bottom: 2.5%;
  }

  #form .lead h4 {
    font-size: 1.5rem;
    margin-bottom: 2.5%;
  }

  #form .lead h6 {
    font-size: .84rem;
    margin-bottom: 7.5%;
  }

  #form figure.btn {
    margin: 10% 3.75% 0;
  }

  #form .function {
    margin: 15% 3.75%;
    padding: 3.75%;
  }

  #form .function h4 {
    font-size: 1.1rem;
    margin: 3.75% auto;
  }

  #form .function h3 {
    font-size: 1.4rem;
    margin: 10% auto 3.75%;
  }

  #form .function h3 span {
    display: block;
    font-size: 75%;
    line-height: 1.25em;
  }

  #form .function ul {
    margin: 2.5% 0 7.5%;
  }

  #form .function ul li {
    font-size: .84rem;
  }

  #form .att {
    padding: 3.75%;
    margin: 10% 3.75% 0;
  }

  #form .att h5 {
    font-size: .84rem;
  }

  #form .att ul li {
    font-size: .66rem;
  }

  .pc {
    display: none !important;
  }

  #sen02-1 {
    padding: 5% 0 10%;
  }

  #sen02-1 figure {
    margin: 3.75% auto;
  }

  #sen02-1 figure img {
    width: 100%;
    max-width: 100%;
    position: static;
    transform: none;
  }

  #recommend {
    padding: 20% 0 15%;
  }

  .recommended-users-grid {
    flex-direction: column;
    padding: 0 15px;
    gap: 15px;
  }

  .recommended-user-card {
    margin-bottom: 15px;
    background-color: #fff;
  }

  .howto .point02 ul li img {
    width: 100%;
    height: auto;
  }

  .howto.howto02 .point02 ul li {
    width: 200% !important;
    height: auto !important;
  }

  .howto.howto02 .point02 {
    margin-bottom: 15%;
    overflow-y: hidden;
    overflow-x: auto;
  }

  .howto.howto02 .point02 ul {
    width: 200%;
  }
}

/* —————————————————————
   Form（#form）内のボタンのみ適用
   ————————————————————— */
   #form figure.btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: 400px;
    height: 80px;
    background: linear-gradient(180deg, #00cb3d 0%, #027925 100%);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.25);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.63);
    position: relative;
    transition: 0.3s;
    overflow: hidden;
    z-index: 1;
  }

  #form figure.btn.big a {
    width: 480px;
  }

  #form figure.btn a:hover {
    box-shadow: none;
    opacity: 0.7;
  }

  #form figure.btn a i {
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
    color: #f6e94e;
  }

  /* ——— スマホ対応 ——— */
  @media screen and (max-width: 768px) {
    #form figure.btn a {
      width: 100%;
      height: 15vw;
      border-radius: 1.25vw;
    }
    #form figure.btn.big a {
      width: 100%;
    }
  }



/* My瞬間英作文 */

#my-shunkan {
  background-color: #f5f9ff;
  padding: 40px 0;
}

#my-shunkan .my-shunkan-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 30px;
}

#my-shunkan .my-shunkan-badge {
  display: inline-block;
  background-color: #ff6b6b;
  color: #ffffff;
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 16px;
  margin-bottom: 12px;
}

#my-shunkan h2 {
  color: #144e94;
  margin-bottom: 16px;
}

#my-shunkan .my-shunkan-header p {
  color: #333333;
  font-size: 18px;
  line-height: 1.8;
  margin: 0 auto;
}

#my-shunkan .my-shunkan-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

#my-shunkan .my-shunkan-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(12, 60, 120, 0.12);
  padding: 24px;
  flex: 1 1 260px;
  max-width: 340px;
}

#my-shunkan .my-shunkan-card h3 {
  color: #144e94;
  font-size: 20px;
  margin-bottom: 12px;
}

#my-shunkan .my-shunkan-card p {
  color: #333333;
  line-height: 1.7;
  margin: 0;
}

#my-shunkan .my-shunkan-examples {
  margin-top: 40px;
  display: grid;
  gap: 24px;
}

#my-shunkan .my-shunkan-example-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(12, 60, 120, 0.12);
  padding: 24px;
}

#my-shunkan .my-shunkan-example-card figure {
  margin: 0;
  width: 68px;
  flex-shrink: 0;
}

#my-shunkan .my-shunkan-example-card figure img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

#my-shunkan .example-main {
  color: #144e94;
  font-weight: 700;
  margin-bottom: 8px;
}

#my-shunkan .example-support {
  color: #333333;
  font-weight: 600;
  margin-bottom: 8px;
}

#my-shunkan .example-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

#my-shunkan .example-tags .tag-pill {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background-color: rgba(20, 78, 148, 0.12);
  color: #144e94;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

#my-shunkan .example-sample {
  color: #333333;
  line-height: 1.7;
  margin: 4px 0;
}

#my-shunkan .example-sample span {
  font-weight: 700;
  color: #144e94;
  margin-right: 8px;
}

#my-shunkan .example-sentences {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

#my-shunkan .example-sentences li {
  background-color: rgba(20, 78, 148, 0.08);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 16px rgba(12, 60, 120, 0.08);
}

#my-shunkan .example-sentences p {
  margin: 0;
  color: #233042;
}

#my-shunkan .example-sentences .sentence-en {
  margin-top: 4px;
  color: #144e94;
  font-weight: 600;
}

#my-shunkan .sentence-lang {
  display: inline-block;
  min-width: 32px;
  padding: 2px 8px;
  margin-right: 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background-color: #144e94;
  text-align: center;
}

#my-shunkan .sentence-en .sentence-lang {
  background-color: #ff6b6b;
}

@media screen and (max-width: 768px) {
  #my-shunkan {
    padding: 32px 0;
  }
  
  #my-shunkan .my-shunkan-card {
    max-width: 100%;
  }
  
  #my-shunkan .my-shunkan-example-card {
    flex-direction: column;
    text-align: left;
  }
  
  #my-shunkan .my-shunkan-example-card figure {
    width: 72px;
  }
  
  #my-shunkan .my-shunkan-example-card figure img {
    width: 72px;
    height: 72px;
  }
  
  #my-shunkan .example-tags {
    justify-content: flex-start;
  }
  }