:root {
    --text: #2D6584;
    --main-color: #41B8F9;
    --auxiliary-color: #FD7927;
    --back-color: #ECF0F4 ;
    --footer-back-color: #D9F1FE ;
}

.price{
  padding: 60px 20px 0 20px;
  text-align: center;
}
.price_container{
  max-width: 1200px;
  margin-inline: auto;
}
.price .section-title {
  font-size: 32px;
  margin-block: 20px 10px;
  position: relative;
  color: var(--text);
}
.price .section-title::before{
  content: 'price';
  font-size: 14px;
  font-weight: 300;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.section-title::after{
  content: '';
  position: absolute;
  height: 3px;
  width: 7%;
  margin-inline: auto;
  background-color: var(--text);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.price-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-evenly;
  margin-top: 60px;
}
.price-card {
  border-radius: 20px;
  border: var(--main-color) 1px solid;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  max-width: 360px;
  width: 100%;
  text-align: center;
  position: relative;
  margin-top: 30px;
}
.price-card .title {
  border-radius: 20px 20px 0 0;
  width: 100%;
  font-size: 24px;
  margin-bottom: 16px;
  padding: 10px 0;
  color: #fff;
}
.price-card .title.blue {
  background-color: var(--main-color);
}
.price-card .title.orange {
  background-color: var(--auxiliary-color);
}
.price-card ul {
  padding: 5px 20px;
  list-style: none;
  margin: 0;
}
.price-card li {
  display: flex;
  justify-content: space-between;
  margin: 25px 0;
  border-bottom: 1px solid #eee;
  font-weight: 600;
  font-size: 16px;
}
.price-card span{
  color: #323232;
  font-size: 16px;
}
.price-card strong {
  color: #d32f2f;
  font-size: 22px;
}

#small{
  text-align: start;
}
.recommended {
  border: 1px solid var(--auxiliary-color);
  margin-top: 0;
  margin-bottom: 25px;
}
.badge {
  position: absolute;
  top: -32px;
  right: -30px;
  border-radius: 50px;
  font-weight: bold;
}
.badge img{
  height: 60px;
}
.discount small {
  color: #d32f2f;
  font-size: 12px;
}
.price-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  padding-inline: 10%;
}
.price-note img {
  min-width: 325px;
  width: 100%;
  height: auto;
}
.price-card:nth-child(1) {
  display: none;
}

@media (max-width: 1200px) {
  .price-card:nth-child(1) {
    display: block;
  }
  .price-card:nth-child(3) {
    display: none;
  }
  .price-cards {
    flex-direction: column;
    align-items: center;
  }
  .recommended{
    margin-bottom: 0;
  }
  .price-card {
    margin-top: 20px;
  }
  .note-img img {
    margin-top: 20px;
  }
}
@media (max-width: 400px) {
  .price-card strong small{
    font-size: 16px;
  }
}
/* option */
.option{
  padding: 60px 20px;
  text-align: center;
}
.option_container{
  max-width: 1200px;
  margin-inline: auto;
}
.option .section-title {
  font-size: 32px;
  margin-block: 20px 10px;
  position: relative;
  color: var(--text);
}
.option .section-title::before{
  content: 'option';
  font-size: 14px;
  font-weight: 300;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.option_title{
  width: 180px;
}
.option_content{
  font-size: 16px;
  color: #323232;
  margin-block: 40px;
}
.option_images {
  display: flex;
  gap: 10px;
  justify-content:space-between;
  margin-top: 40px;
  align-items: center;
}
.option_arrow1{
  display: block;
}
.option_arrow2{
  display: none;
}
.option_arrow1 img{
  margin-top: 110px;
  width: 100px;
}
.option_arrow2 img{
  height: 100px;
}
.option_images >img{
  max-width: 475px;
}

@media (max-width: 1200px) {
  .option_images {
    flex-direction: column;
  }
  .option_arrow2{
    display: block;
  }
  .option_arrow1{
    display: none;
  }
}
@media (max-width: 768px) {
  .option_images >img {
      width: 350px;
  }
}
/* convenient */
.convenient-section {
  background: var(--back-color);
  padding: 0 20px 40px 20px;
  text-align: center;
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
}
.border_white{
  margin-bottom: 40px;
}
.convenient-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.title_img{
  max-width: 455px;
}
.convenient-box {
  background: white;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}
.convenient-box .box-title{
  display: flex;
  gap: 20px;
}
.convenient-box img {
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
}
.convenient-box h6 {
  color: var(--auxiliary-color);
}
.convenient-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  color: var(--text);
}
.convenient-four{
  margin-top: 70px;
}
.convenient-grid-container{
  max-width: 900px;
  margin-inline: auto;
  margin-block:20px 70px;
}
.convenient-box p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
  font-weight: 500;
  text-align: start;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .border_white img {
      width: 70px;
  }
}
@media (max-width: 530px) {
  .title_img{
    max-width: 350px;
  }
}
@media (max-width: 420px) {
  .title_img{
    max-width: 304px;
  }
}

/* note */
.note{
  text-align: center;
  padding: 0 20px 60px 20px;
}
.option-box {
  display: flex;
  align-items: center;
  border: 2px solid #4a90e2;
  border-radius: 12px;
  padding: 10px 20px;
  max-width: 700px;
  margin: 60px auto 0 auto;
  font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', sans-serif;
  background: #fff;
  position: relative;
}

.option-content {
  flex: 1;
}

.option-title {
  font-weight: bold;
  color: #005bab;
  font-size: 21px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 5px;
  padding-left: 10px;
}

.icon {
  font-size: 1.2em;
  margin-right: 8px;
}

.option-description {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  text-align: start;
  padding-left: 10px;
}

.option-description .note {
  font-size: 0.85em;
  color: #666;
  padding: 0;
}

.option-illustration {
  margin-left: 20px;
}

.option-illustration img {
  width: 100px;
  height: auto;
}
@media (max-width: 530px) {
  .option-description .note{
    text-align: center;
    padding-block: 26px;
  }
}