:root {
  --navy-dark: #0f2540;
  --red: #cc2222;
  --gray-light: #f4f7fb;
  --text-mid: #3a4a5c;
}
	
html,
body {
  width: 100%;
  overflow-x: hidden;
}
	
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

a {
    color: #006ae8;
	text-decoration: none;
    outline: none;
}

body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*PCでは無効（改行しない）*/
.sma{
    display: none;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:768px) {
    .sma{
        display: block;
    }
}

.container {
  text-align: center;
}

.container img {
  max-width: 100%;
  width: 900px;
  height: auto;
}
	
p {margin: 0 0 20px 0;}

/* SUMMER CTA */
.summer-section {
  background: linear-gradient(135deg, #c9961a 0%, #e8b840 50%, #c9961a 100%);
  padding: 10px 40px;
}

.summer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.summer-inner h2 {
  font-size: 2.0rem;
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1.4;
  margin-bottom: 16px;
}

.summer-inner p {
  color: var(--navy-dark);
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 40px;
}

.summer-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.summer-box {
  background: rgba(255,255,255,.5);
  border-radius: 6px;
  padding: 20px;
  text-align: left;
}

.summer-box-label {
  font-size: .72rem;
  font-weight: 900;
  color: var(--navy-dark);
  background: rgba(26,42,92,.12);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.summer-box-val {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.5;
}

.summer-box-val.period {
  color: var(--red);
  font-size: 1rem;
}

.cta-note {
  margin-top: 16px;
  font-size: .78rem;
  color: var(--navy-dark);
  opacity: .7;
}
	
.form-section {
  padding: 40px 10px;
}
	
.form {
  text-align: left;
  margin: 0 auto;
  max-width: 100%;
  width: 900px;
}

.form2 {
  text-align: left;
  margin: 0 auto;
  max-width: 100%;
  width: 500px;
}

.contact-info {
  text-align: left;
  padding: 20px;
  border: 2px solid #d8e6f5;
  border-radius: 10px;
  background: #fafcff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.contact-item {
  font-size: 18px;
  margin: 12px 0;
}

.contact-item a {
  color: #0073e6;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.price-section {
  background: var(--gray-light);
  padding: 60px 40px;
}

.price-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.price-label {
  font-size: 1.2rem;
  color: var(--text-mid);
  font-weight: 700;
  margin-bottom: 12px;
}

.price-main {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.price-main span {
  font-size: 2.5rem;
  font-weight: 900;
}
	
.old-price {
  color: #999;
  text-decoration: line-through;
  margin-left: 10px;
}
	
.arrow {
  color: var(--red);
  margin-left: 10px;
  margin-right: 10px;
}

.price-sub {
  font-size: .85rem;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.price-note {
  font-size: .82rem;
  color: var(--red);
  font-weight: 700;
  background: rgba(204,34,34,.06);
  border: 1px solid rgba(204,34,34,.2);
  padding: 12px 24px;
  border-radius: 4px;
  display: inline-block;
}
	
h3.id1 {
    color: #158b2b;
    position: relative;
    padding-left: 25px;
    font-size: 30px;
    font-weight: 600;
}
	
h3.id1:before {
    position: absolute;
    content: '';
    bottom: -10px;
    left: 0;
    width: 0;
    height: 0;
    border: none;
    border-left: solid 15px transparent;
    border-bottom: solid 15px #a6ddb0;
}
	
h3.id1:after {
    position: absolute;
    content: '';
    bottom: -10px;
    left: 10px;
    width: 100%;
    border-bottom: solid 3px #a6ddb0;
}

p.id1 {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.8;
}

.faq-section {
  padding: 40px 10px;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid #dde8f8;
    border-radius: 8px;
    overflow: hidden;
}

.faq-q {
    text-align: left;
    background: #e8f0fe;
    padding: 14px 18px;
    font-weight: 700;
    font-size: 14px;
    color: #003d8f;
    margin: 0;
}

.faq-a {
    text-align: left;
    padding: 14px 18px;
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    margin: 0;
    background: #fff;
}
	
.faq-buttons {
  text-align: center;
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.faq-btn {
  display: inline-block;
  background: #0073e6;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  transition: 0.2s;
  width: 220px;
}

.faq-btn:hover {
  background: #005bb5;
  color: #fff !important;
}

.faq-btn-video {
  background: #e28b00;
}

.faq-btn-video:hover {
  background: #c27600;
}

.faq-columns {
  display: flex;
  gap: 20px;
}

.faq-column {
  flex: 1;
  padding: 0px;
  text-align: center;
}

.faq-column h4 {
  padding-top: 20px;
  margin-top: 0;
  color: #e28b00;
}

.faq-column p {
  min-height: 50px;
  font-size: 14px;
  line-height: 1.6;
}

.faq-column ul {
  text-align: left;
  padding-left: 80px;
  margin: 10px 0 20px;
}

.faq-column li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
}

.share-box {
  text-align: center;
  padding: 0px 20px;
  border-radius: 12px;
  max-width: 800px;
  margin: 30px auto;
}

.share-box h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #333;
}

.share-box p {
  margin-bottom: 20px;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 12px 18px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
  font-size: 15px;
}

.share-btn:hover {
  opacity: 0.85;
}

.copy-btn {
  background: #555;
}

.mail-btn {
  background: #0073e6;
}
	
.pdf-section {
  background: var(--gray-light);
  padding: 40px 10px;
}
	
.pdf-container {
  margin: 0 auto;
  max-width: 100%;
  width: 720px;
  padding-bottom: 25px;
}
	
.pdf-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    background: #fafafa;
}

.pdf-frame {
    width: 100%;
    height: 80vh !important;
    border: none;
    display: block;
}

.pdf-download {
    margin-top: 10px;
    text-align: right;
}

.pdf-download a {
    display: inline-block;
    padding: 8px 14px;
    background-color: #1a73e8;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9em;
}

@media (max-width:900px) {
  .summer-section,
  .price-section {
    padding: 30px 16px;
  }
  .summer-boxes {
    grid-template-columns: 1fr;
  }
.summer-inner h2 {
  font-size: 1.4rem;
}
}
	
@media (max-width:600px) {
  .summer-inner h2,
  .summer-inner p {
    text-align: left;
  }
  .faq-columns {
    flex-direction: column;
  }
.price-main {
  font-size: 1.2rem;
  line-height: 1.3;
}
.price-main span {
  font-size: 2rem;
}
}
