@charset "UTF-8";
/*-- メディアクエリ --*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .is-sp {
    display: none;
  }
}
@media screen and (min-width: 1080px) {
  .is-sp {
    display: none;
  }
}
/*------------------------------
global > color
------------------------------*/
:root {
  --color-white: #fff;
  --color-text: #333;
  --color-accent: #72AED1;
  --color-gray-light: #D7D7D7;
}

/*------------------------------
global > font
------------------------------*/
:root {
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Asap", sans-serif;
}


/*------------------------------
foundation > base
------------------------------*/
html {
  font-size: 62.5%;
  font-family: var(--font-ja);
}

body {
  font-size: 1.6rem;
  color: var(--color-text);
  line-height: 1.8;
}

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

/*------------------------------
layout > container
------------------------------*/
.l-container {
  max-width: 104rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.l-container-s {
  max-width: 68rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/*------------------------------
LP
------------------------------*/
.mv-text {
  text-align: right;
  margin-top: 1rem;
  padding-right: 1.6rem;
  font-size: 1.1rem;
  color: #585858;
}
@media (min-width: 768px) {
  .mv-text {
    padding-right: 3rem;
    font-size: 1.2rem;
  }
}
.main-contents {
  padding: 50px 0 70px;
}
@media (min-width: 768px) {
  h1 {
    text-align: center;
  }
}

.price {
  padding-top: 80px;
}

.c-title {
  font-weight: 600;
  color: var(--color-accent);
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: .05em;
  text-align: center;
}

.price-container {
  border: 3px solid #72AED1;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 2rem 3.2rem;
  border-radius: 1.4rem;
}

.price-container-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.price-container-box p {
  font-size: 18px;
  letter-spacing: .08em;
  line-height: 1.37;
  margin-top: 1.5rem;
}
.price-container-box span {
  font-size: clamp(48px, 5vw, 64px);
  letter-spacing: .01em;
  font-weight: 600;
  font-family: var(--font-en);
}

.price-container h3 {
  letter-spacing: .08em;
  line-height: 1.53;
  text-align: center;
  margin-top: 1rem;
  font-size: 1.5rem;
}
table {
  width: 100%;
  margin-top: 5rem;
  font-size: 1.4rem;
}
table , td, th {
	border: 1px solid #d7d7d7;
	border-collapse: collapse;
}
table th {
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 600;
  font-size:clamp(13px, 2vw, 1.8rem);
  letter-spacing: .04em;
  line-height: 1.6;
}
td, th {
	padding: .4rem 1rem .4rem .6rem;
	width: 30px;
	height: 25px;
  border-bottom: .1rem solid #D7D7D7;
}


td:last-of-type {
  text-align: right;
}
td:first-of-type{
  width: 24%;
  }
td:nth-child(2){
width: 48%;
}


.last-message {
  text-align: center;
  margin-top: 5rem;
}

.cta {
  padding: 8rem 0 10rem;
  background: url(../../assets/img/cta-bg.jpg) center / cover no-repeat;
}

.cta-message {

  margin-top: 2.4rem;
}
@media (min-width: 768px) {
  .cta-message {
    text-align: center;
  }
}
.company-lists {
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .company-lists {
    display: flex;
    justify-content: center;
  }
}
.company-list {
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .company-list:first-child {
    padding-bottom: 4rem;
    border-bottom: .1rem solid var(--color-gray-light);
  }
}
@media (min-width: 768px) {
.company-list:first-child {
  border-right: .1rem solid var(--color-gray-light);
 }
}

@media (max-width: 767px) {
  .company-list:last-child {
    padding-top: 4rem;
  }
}
.company-list h3 {
font-weight: bold;
font-size: 2rem;
margin-bottom: 2.4rem;
}
.company-list p {
  font-size: 1.5rem;
  line-height: 2.2;
}

.footer {
  text-align: center;
  padding: 2.3rem 1rem;
  background: var(--color-accent);
  color: var(--color-white);
  position: absolute;
  width: 100%;
}

.copyright {
  font-size: 1rem;
  letter-spacing: .1em;
}