@charset "UTF-8";
* {
  box-sizing: border-box;
}
body {
  color: #000;
  width: 100%;
}
img {
  max-width: 100%;
  height: auto;
}
.sp {
  display: none;
}
.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/* ------- page_heading ------- */
#header .page_heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 20px;
}
#header .page_heading_left {
  display: flex;
  align-items: center;
}
#header .page_heading_logo {
  font-size: 2.2rem;
  font-weight: bold;
  border-right: 1px solid #d4d4d4;
  padding: 0 15px 0 0;
  margin: 0 15px 0 0;
}
#header .page_heading_logo a:link,
#header .page_heading_logo a:visited {
  color: #000;
}
#header .page_heading_logo a:hover {
  text-decoration: none;
}
#header .page_heading_name {
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  #header .page_heading {
    flex-direction: column;
    align-items: start;
    margin: 0 0 18px;
  }
  #header .page_heading_left {
    flex-direction: column;
    align-items: start;
  }
  #header .page_heading_logo {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 2.4rem;
  }
  #header .page_heading_name {
    font-size: 1.6rem;
  }
  #header .page_heading_right {
    display: none;
  }
}
/* --------- MV --------- */
.mv {
  max-width: 1440px;
  margin: 0 auto;
}
.mv_container {
  position: relative;
  width: fit-content;
  margin: auto;
}
/* --------- contents --------- */
#contents {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: 'Hiragino Sans','ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
}
.contents_inner {
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .contents_inner {
    width: 90%;
  }
} 
@media screen and (max-width: 767px) {
  #contents {
    padding: 0;
  }
}
/* --------- ttl --------- */
.sec_ttl {
  background-color: #FFEBD9;
}
.sec_ttl .contents_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.sec_ttl p {
  font-weight: bold;
  font-size: 40px;
  padding: 30px 0 10px;
  letter-spacing: 0;
}
.sec_ttl p span {
  position: relative;
}
.sec_ttl p span::before {
  position: absolute;
  content: "・";
  font-size: 0.8em;
  width: 1em;
  height: 1em;
  top: -1em;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .sec_ttl p {
    font-size: 3.3vw;
    padding: 3vw 0 1.6vw;
  }
} 
@media screen and (max-width: 767px) {
  .sec_ttl p {
    font-size: 5.4vw;
    padding: 5vw 0 3vw;
    text-align: center;
  }
}
/* --------- intro --------- */
.sec_intro {
  background-color: #FF7800;
  padding: 40px 0;
}
.sec_intro .contents_inner {
  display: flex;
  position: relative;
}
.sec_intro_overlay {
  position: absolute;
  right: 3.5%;
  top: 13%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.sec_intro_overlay h2 {
  font-size: 40px;
  font-weight: bold;
  color: #3C005A;
}
.sec_intro_overlay_txt p {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #231815;
}
.sec_intro_overlay_txt p:last-of-type {
  margin-bottom: 0;
}
.sec_intro_overlay_example {
  font-size: 24px;
  display: flex;
  font-weight: 400;
}
@media screen and (max-width: 1280px) {
  .sec_intro { 
    padding: 4vw 0;
  }
  .sec_intro_overlay {
    right: 8%;
    top: 14.5%;
  }
  .sec_intro_overlay h2 {
    font-size: 3.3vw;
  }
  .sec_intro_overlay_txt p {
    font-size: 1.8vw;
    margin-bottom: 1vw;
  }
  .sec_intro_overlay_example {
    font-size: 1.6vw;
  }
} 
@media screen and (max-width: 767px) {
  .sec_intro { 
    padding: 6vw 0;
  }
  .sec_intro .contents_inner {
    width: 82.8%;
  }
  .sec_intro_overlay {
    right: 50%;
    transform: translateX(50%);
    top: 2%;
    width: fit-content;
    height: 94%;
    justify-content: flex-end;
    align-items: center;
    white-space: nowrap;
  }
  .sec_intro_overlay h2 {
    font-size: 5.4vw;
    margin-bottom: auto;
  }
  .sec_intro_overlay_txt p {
    font-size: 3.8vw;
    margin-bottom: 3vw;
    line-height: 1.3;
    letter-spacing: 0;
  }
  .sec_intro_overlay_example {
    display: none;
  }
}
/* --------- reason --------- */
.sec_reason {
  background-color: #FFEBD9;
  padding: 100px 0 56px;
}
.sec_reason .contents_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sec_reason_intro {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  border: 1px solid #3C005A;
  border-radius: 40px;
  margin-bottom: 60px;
  position: relative;
}
.sec_reason_intro h2 {
  font-size: 43px;
  font-weight: bold;
  display: block;
  background-color: #FFEBD9;
  padding: 0 8px;
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  color: #3C005A;
}
.sec_reason_intro_txt {
  display: flex;
  align-items: flex-start;
  padding: 50px 0 40px;
  transform: translateX(2%);
}
.sec_reason_intro_txt img {
  width: 100px;
  height: 90px;
  transform: translateY(-20%);
  object-fit: contain;
}
.sec_reason_intro_txt p {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0;
  margin-left: 1%;
  white-space: nowrap;
  line-height: 1.3;
}
.sec_reason_intro_txt p span {
  color: #3C005A;
  font-weight: 800;
}
.sec_reason_intro::after{
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 55px solid transparent;
  border-right: 55px solid transparent;
  border-top: 40px solid #3C005A;
}
.sec_reason_example {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #fff;
  border-radius: 40px;
  width: 48.5%;
  padding: 25px 40px 33px;
  align-items: flex-start;
}
.sec_reason_example h4 {
  color: #3C005A;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0;
}
@media screen and (max-width: 1280px) {
  .sec_reason {
    padding: 7vw 0 6vw;
  }
  .sec_reason_intro {
    border-radius: 3vw;
    margin-bottom: 5vw;
  }
  .sec_reason_intro h2 {
    font-size: 3.3vw;
  }
  .sec_reason_intro_txt {
    padding: 4vw;
  }
  .sec_reason_intro_txt img {
    width: 5vw;
    height: 5vw;
  }
  .sec_reason_intro_txt p {
    font-size: 2.3vw;
  }
  .sec_reason_intro::after{
    bottom: -4vw;
    border-left: 5vw solid transparent;
    border-right: 5vw solid transparent;
    border-top: 4vw solid #3C005A;
  }
  .sec_reason_example {
    border-radius: 3vw;
    padding: 3vw 3vw;
  }
  .sec_reason_example h4 {
    font-size: 1.9vw;
    margin-bottom: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .sec_reason {
    padding: 13vw 0 9vw;
  }
  .sec_reason .contents_inner {
    width: 82.8%;
  }
  .sec_reason_intro {
    border-radius: 6vw;
    margin-bottom: 10vw;
  }
  .sec_reason_intro h2 {
    font-size: 5.8vw;
  }
  .sec_reason_intro_txt {
    padding: 6.5vw 0 5vw;
    align-items: center;
    transform: unset;
  }
  .sec_reason_intro_txt img {
    width: 16vw;
    height: 16vw;
    margin-left: -1vw;
    transform: translateY(4%);
  }
  .sec_reason_intro_txt p {
    font-size: 4.3vw;
    line-height: 1.5;
  }
  .sec_reason_intro::after{
    bottom: -6vw;
    border-left: 8vw solid transparent;
    border-right: 8vw solid transparent;
    border-top: 6vw solid #3C005A;
  }
  .sec_reason_example {
    width: 100%;
    padding: 3vw 7.8vw 4vw;
    margin-bottom: 4vw;
    min-height: 62vw;
    align-items: flex-start;
  }
  .sec_reason_example:last-of-type {
    margin-bottom: 0;
  }
  .sec_reason_example h4 {
    font-size: 3.4vw;
    margin-bottom: 2vw;
  }
  .sec_reason_example:last-child h4 {
    margin-bottom: 3.7vw;
  }
}
/* --------- trouble --------- */
.sec_trouble {
  padding: 80px 0;
  overflow: hidden;
}
.sec_trouble .contents_inner {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
}
.sec_trouble h2 {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 0;
}
.sec_trouble h2 span {
  text-decoration: underline;
  text-decoration-color: #FF7800;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}
.sec_trouble_img {
  z-index: 1;
  transform: scale(1.02);
  position: relative;
  left: -0.5%;
}
.sec_trouble_overlay_list {
  position: absolute;
  top: 13.3%;
  right: 2.1%;
  min-width: 72.5%;
  z-index: 1;
}
.sec_trouble_overlay_list li {
  margin-bottom: 50px;
  background-color: #fff;
  border-radius: 100px;
  display: flex;
  position: relative;
}
.sec_trouble_overlay_list a {
  display: flex;
  background-color: #fff;
  align-items: center;
  border-radius: 100px;
  height: 68px;
  border: 2px solid #3C005A;
  text-decoration: none !important;
  width: 100%;
}
.sec_trouble_overlay_list a:hover {
  opacity: 0.7;
}
.sec_trouble_overlay_list a:hover+img {
  filter: brightness(1.3);
}
.sec_trouble_overlay_list span {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3C005A;
  border-radius: 50%;
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  line-height: 74px;
  text-align: center;
  padding-right: 2px;
}
.sec_trouble_overlay_list p {
  font-size: 25px;
  font-weight: bold;
  padding-left: 10px;
  color: #3C005A;
  position: relative;
  flex: 1;
  letter-spacing: 0;
  top: 4px;
}
.sec_trouble_overlay_list p::after {
  position: absolute;
  content: "";
  right: 88px;
  top: 45%;
  border-left: 12.5px solid transparent;
  border-right: 12.5px solid transparent;
  border-top: 16px solid #3C1D66;
  transform: translateY(-50%);
}
.sec_trouble_overlay_list img {
  width: 68px;
  height: 68px;
  margin-left: auto;
  transform: scale(1.4);
  border: 1.5px solid #3C005A;
  border-radius: 50%;
  position: absolute;
  right: 0;
}
.sec_trouble_overlay_txt {
  position: absolute;
  top: 58%;
  right: 7.3%;
}
.sec_trouble_overlay_txt h3 {
  font-size: 43px;
  color: #3C005A;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 3px;
}
.sec_trouble_overlay_txt p {
  font-size: 27px;
}
@media screen and (max-width: 1280px) {
  .sec_trouble {
    padding: 5vw 0;
  }
  .sec_trouble h2 {
    font-size: 3.1vw;
    margin-bottom: 2vw;
  }
  .sec_trouble_overlay_list {
    top: 14%;
    right: 3.5%;
    min-width: 70%;
  }
  .sec_trouble_overlay_list li {
    margin-bottom: 4vw;
  }
  .sec_trouble_overlay_list a {
    height: 4.5vw;
  }
  .sec_trouble_overlay_list span {
    width: 4.5vw;
    height:4.5vw;
    font-size: 3vw;
    position: relative;
    left: -0.1vw;
    line-height: 4.6vw;
    padding-right: 1px;
  }
  .sec_trouble_overlay_list p {
    font-size: 1.6vw;
    padding-left: 1vw;
    top: 1px;
  }
  .sec_trouble_overlay_list p::after {
    border-left: 1vw solid transparent;
    border-right: 1vw solid transparent;
    border-top: 1.25vw solid #3C1D66;
    right: 6.5vw;
  }
  .sec_trouble_overlay_list img {
    width: 4.5vw;
    height: 4.5vw;
  }
  .sec_trouble_overlay_txt {
    top: 59%;
    right: 6.5%;
  }
  .sec_trouble_overlay_txt h3 {
    font-size: 3vw;
    margin-bottom: 1vw;
  }
  .sec_trouble_overlay_txt p {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 767px) {
  .sec_trouble {
    padding: 10vw 0 11vw;
  }
  .sec_trouble .contents_inner {
    width: 82.8%;
  }
  .sec_trouble_img {
    transform: scale(1.21);
    margin: 10vw 0; 
    left: unset;
  }
  .sec_trouble h2 {
    font-size: 5.7vw;
    transform: scale(1.07);
    margin-bottom: 13vw;
    text-align: center;
  }
  .sec_trouble h2 span {
    text-decoration-thickness: 0.3vw;
    text-underline-offset: 1.5vw;
  }
  .sec_trouble h2 b {
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }
  .sec_trouble_overlay_list {
    top: 17%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  .sec_trouble_overlay_list li {
    margin-bottom: 7.5vw;
    width: 100%;
  }
  .sec_trouble_overlay_list a {
    height: 12vw;
  }
  .sec_trouble_overlay_list span {
    width: 12vw;
    height:12vw;
    font-size: 7vw;
    position: relative;
    left: -1vw;
    line-height: 4vw;
    line-height: 12.1vw;
    padding-right: 1px;
  }
  .sec_trouble_overlay_list p {
    font-size: 3.2vw;
    padding: 3vw 4vw 3vw 1vw;
    line-height: 4vw;
    white-space: nowrap;
    top: 0.3vw;
  }
  .sec_trouble_overlay_list p::after {
    right: 14.5vw;
    border-left: 2vw solid transparent;
    border-right: 2vw solid transparent;
    border-top: 2.5vw solid #3C1D66;
  }
  .sec_trouble_overlay_list img {
    width: 12vw;
    height: 12vw;
    transform: scale(1.1);
    right: 0.7vw;
  }
  .sec_trouble_overlay_txt {
    top: 61.8%;
    right: -5%;
  }
  .sec_trouble_overlay_txt h3 {
    font-size: 4.2vw;
    margin-bottom: 3vw;
  }
  .sec_trouble_overlay_txt p {
    font-size: 3.6vw;
  }
}
/* --------- solution --------- */
.sec_solution {
  background-color: #FFE4CC;
  position: relative;
  top: -287px;
  margin-bottom: -287px;
}
.sec_solution .contents_inner {
  padding-top: 252px;
  padding-bottom: 55px;
  position: relative;
}
.sec_solution_ttl {
  position: absolute;
  top: 58px;
  right: 26.3%;
}
.sec_solution_ttl p {
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}
.sec_solution_ttl h2 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.3;
}
.sec_solution_item {
  background-color: #fff;
  border: 2px solid #3C005A;
  padding: 22px 30px 20px;
  display: flex;
  border-radius: 30px;
  margin-bottom: 110px;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.sec_solution_item_txt {
  display: flex;
  flex-direction: column;
}
.sec_solution_item_txt h3 {
  font-size: 40px;
  font-weight: 700;
  display: flex;
  align-items: center;
  color: #3C005A;
  margin-bottom: 1rem;
  letter-spacing: 0;
}
.sec_solution_item_txt h3 span {
  font-size: 50px;
  width: 70px;
  height: 70px;
  color: #fff;
  display: flex;
  background-color: #3C005A;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 15px;
  display: inline-block;
  line-height: 76px;
  text-align: center;
  padding-right: 2px;
}
.sec_solution_item_txt  p {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0;
}
.sec_solution_item_txt > p {
  color: #FF3000;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}
.sec_solution_item_txt sup {
  white-space: nowrap;
}
.sec_solution_item img {
  transform: scale(1.35);
  border: 1.5px solid #3C005A;
  border-radius: 30px;
  width: 330px;
  height: auto;
  object-fit: cover;
  position: relative;
  left: -2%;
}
.sec_solution_item .caution {
  position: absolute;
  font-size: 13px;
  bottom: -30px;
  left: 0;
}
@media screen and (max-width: 1280px) {
  .sec_solution {
    top: -20vw;
    margin-bottom: -20vw;
  }
  .sec_solution .contents_inner {
    padding-top: 18.5vw;
    padding-bottom: 3vw;
  }
  .sec_solution_ttl {
    top: 4vw;
    right: 25%;
  }
  .sec_solution_ttl p {
    font-size: 3vw;
  }
  .sec_solution_ttl h2 {
    font-size: 5vw;
  }
  .sec_solution_item {
    padding: 2vw 3vw 1vw;
    margin-bottom: 8vw;
    border-radius: 3vw;
  }
  .sec_solution_item_txt h3 {
    font-size: 2.8vw;
    margin-bottom: 1vw;
  }
  .sec_solution_item_txt h3 span {
    font-size: 3vw;
    width: 4.5vw;
    height: 4.5vw;
    margin-right: 1vw;
    line-height: 4.6vw;
    padding-right: 1px;
  }
  .sec_solution_item_txt  p {
    font-size: 1.8vw;
  }
  .sec_solution_item_txt > p {
    margin-bottom: 1.8vw;
    font-size: 2.2vw;
  }
  .sec_solution_item img {
    width: 25vw;
    border-radius: 3vw;
    left: 1.5%;
  }
  .sec_solution_item .caution {
    font-size: 1.5vw;
    bottom: -3.2vw;
  }
}
@media screen and (max-width: 767px) {
  .sec_solution {
    top: -40vw;
    margin-bottom: -40vw;
  }
  .sec_solution .contents_inner {
    padding-top: 45vw;
    padding-bottom: 2vw;
    width: 82.8%;
  }
  .sec_solution_ttl {
    top: 8vw;
    right: -2.5%;
  }
  .sec_solution_ttl p {
    font-size: 4.7vw;
    margin-bottom: 1vw;
  }
  .sec_solution_ttl h2 {
    font-size: 8.7vw;
    line-height: 1.1;
  }
  .sec_solution_list {
    position: relative;
    top: -4vw;
  }
  .sec_solution_item {
    padding: 5vw 5.5vw;
    margin-bottom: 5vw;
    flex-wrap: wrap;
    border-width: 1.5px;
    border-radius: 6vw;
  }
  .sec_solution_item_txt {
    width: 100%;
  }
  .sec_solution_item_txt h3 {
    font-size: 5.2vw;
    margin-bottom: 4vw;
    line-height: 1.2;
  }
  .sec_solution_item_txt h3 span {
    font-size: 7vw;
    line-height: 7vw;
    width: 12vw;
    height: 12vw;
    margin-right: 4vw;
    line-height: 12.1vw;
    padding-right: 1px;
  }
  .sec_solution_item_txt p {
    font-size: 3.4vw;
    letter-spacing: 0;
    line-height: 1.5;
  }
  .sec_solution_item_txt > p {
    margin-bottom: 1vw;
    font-size: 3.8vw;
    letter-spacing: 0;
  }
  .sec_solution_item_txt > div {
    margin-bottom: 5vw;
  }
  .sec_solution_item img {
    width: 100%;
    transform: scale(1);
    border-width: 1.5px;
    border-radius: 6vw;
    left: unset;
  }
  .sec_solution_item .caution {
    font-size: 2.8vw;
    margin-top: 1vw;
    position: relative;
    bottom: unset;
    left: unset;
  }
}
/* --------- product --------- */
.sec_product {
  background-color: rgba(240, 240, 240, 1);
  padding: 45px 0;
}
.sec_product .contents_inner {
  width: 1140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sec_product_ttl {
  font-size: 55px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
.sec_product_txt {
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 38px;
  text-align: center;
  color: #464646;
  letter-spacing: 0;
}
.sec_product_content {
  display: flex;
  margin-bottom: 36px;
  align-items: stretch;
}
.sec_product_content figure {
  min-width: 40%;
  width: 40%;
}
.productinfo_contents_text {
  margin-left: 1%;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0;
}
.productinfo_contents_text ul {
  margin-bottom: 20px;
  color: #464646;
}
.productinfo_contents_text ul li {
  margin-bottom: 6px;
}
.productinfo_contents_text img {
  width: 55%;
  margin-bottom: 15px;
}
.productinfo_contents_text .caution {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0px;
  display: flex;
    align-items: flex-start;
  color: #231815;
}
.productinfo_contents_text .caution span:first-of-type {
  white-space: nowrap;
}
.sec_product_btn {
  background-color: #271E8C;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  padding: 27px 0px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  position: relative;
  width: 40%;
  letter-spacing: 0;
}
.sec_product_btn:link {
  color: #fff;
}
.sec_product_btn:visited {
  color: #fff;
}
.sec_product_btn:hover {
  text-decoration: none;
  opacity: 0.7;
}
.sec_product_btn::after {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  rotate: 45deg;
  position: absolute;
  top: 50%;
  right: 37px;
  transform: translateY(-13px);
}
.sec_product_btn:first-of-type {
  margin-bottom: 85px;
}
.sec_product_content:last-of-type {
  align-items: flex-end;
}
.sec_product_content:last-of-type figure {
  transform: scale(1.09);
  position: relative;
  left: -1.7%;
}
.sec_product_content:last-of-type .productinfo_contents_text img {
  width: 51%;
}
@media screen and (max-width: 1280px) {
  .sec_product {
    padding: 5vw 0;
  }
  .sec_product .contents_inner {
    width: 92%;
  }
  .sec_product_ttl {
    font-size: 4vw;
    margin-bottom: 4vw;
  }
  .sec_product_txt {
    margin-bottom: 3vw;
    font-size: 3vw;
  }
  .sec_product_content {
    margin-bottom: 3vw;
  }
  .sec_product_content figure {
    min-width: 40%;
  }
  .productinfo_contents_text {
    margin-left: 2vw;
  }
  .productinfo_contents_text ul {
    margin-bottom: 1.6vw;
  }
  .productinfo_contents_text ul li {
    font-size: 1.8vw;
  }
  .productinfo_contents_text img {
    width: 30vw;
    margin-bottom: 2vw;
  }
  .productinfo_contents_text .caution {
    font-size: 1.5vw;
  }
  .sec_product_btn {
    padding: 2.5vw 10vw;
    font-size: 1.8vw;
  }
  .sec_product_btn::after {
    width: 1.5vw;
    height: 1.5vw;
    right: 2.5vw;
    transform: translateY(-70%);
  }
  .sec_product_btn:first-of-type {
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 767px) {
  .sec_product {
    width: 100%;
    padding: 10vw 0;
  }
  .sec_product .contents_inner {
    width: 82.8%;
  }
  .sec_product_ttl {
    font-size: 7.3vw;
    margin-bottom: 5.2vw;
  }
  .sec_product_txt {
    margin-bottom: 8vw;
    font-size: 5vw;
  }
  .sec_product_content {
    flex-wrap: wrap;
    margin-bottom: 5vw;
  }
  .sec_product_content figure {
    width: 90%;
  }
  .productinfo_contents_text img {
    width: 59%;
    margin-bottom: 3vw;
  }
  .productinfo_contents_text {
    margin-left: 0;
  }
  .productinfo_contents_text ul {
    margin-bottom: 15px;
  }
  .productinfo_contents_text ul li {
    font-size: 3.4vw;
    margin-bottom: 6px;
  }
  .productinfo_contents_text .caution {
    font-size: 2.8vw;
  }
  .sec_product_btn:first-of-type {
    margin-bottom: 11vw;
  }
  .sec_product_btn {
    width: 100%;
    font-size: 4vw;
    padding: 6vw;
  }
  .sec_product_btn::after {
    width: 4vw;
    height: 4vw;
    right: 8vw;
    transform: translateY(-70%);
  }
  .sec_product_content:last-of-type figure {
    transform: unset;
    left: unset;
  }
  .sec_product_content:last-of-type figure {
    width: 87%;
  }
  .sec_product_content:last-of-type .productinfo_contents_text img {
    width: 52%;
  }
  .sec_product_content:last-of-type .productinfo_contents_text {
    position: relative;
    top: -3vw;
  }
}
/* ------- sec_contact ------- */
.sec_contact {
  padding: 80px 0;
}
.sec_contact:last-of-type {
  padding-bottom: 0 !important;
}
.sec_contact_ttl {
  font-size: 55px;
  font-weight: 600;
  width: fit-content;
  margin: 0 auto 20px;
  color: #464646;
}
.sec_contact_btns {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  gap: 12px 30px;
}
.sec_contact_btn {
  display: flex;
  justify-content: center;
  padding: 25px 0px;
  width: 37%;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  position: relative;
  border-radius: 8px;
  background-color: #10218B;
  letter-spacing: 0;
}
.sec_contact_btn:link {
  color: #fff;
}
.sec_contact_btn:visited {
  color: #fff;
}
.sec_contact_btn:hover {
  text-decoration: none;
  opacity: 0.7;
}
.sec_contact_btn img {
  width: 15px;
  object-fit: contain;
  margin-left: 5px;
}
@media screen and (max-width: 1280px) {
  .sec_contact {
    padding: 7vw 8vw;
  }
  .sec_contact_ttl {
    font-size: 5vw;
    margin: 0 auto 3vw;
  }
  .sec_contact_btn {
    padding: 2.2vw 0vw;
    font-size: 2.5vw;
    width: 45vw;
  }
}
@media screen and (max-width:767px) {
  .sec_contact {
    padding: 7vw 0 8vw;
  }
  .sec_contact .contents_inner {
    width: 82.8%;
  }
  .sec_contact_ttl {
    font-size: 6.7vw;
    margin: 0 auto 4.5vw;
    text-align: center;
    line-height: 1.3;
  }
  .sec_contact_btns {
    flex-direction: column;
    width: 74.5%;
    gap: 4vw 0;
  }
  .sec_contact_btn {
    font-size: 3.8vw;
    padding: 3.3vw 0;
    width: 100%;
    max-width: unset;
  }
}
/* ------- footer_common_parts ------- */
.headMod03 {
  display: none;
}
.noteMod01 {
  text-align: center;
}
.noteMod01 .catch,
.noteMod01 .txt {
  font-size: 1.2rem;
  display: inline;
}
#contents .detailSection .ttl h3 {
  font-weight: bold;
}
.subNav {
  margin: 0 0 70px;
}
#contents .subSection .subNav .layCol01 {
  width: 305px;
}
#contents .subSection .subNav .layCol02 {
  width: 305px;
  float: left;
}
#contents .subSection .subNav .ttl {
  font-size: 1.6rem;
}
#contents .subSection .subNav .listBlock .list li {
  font-size: 1.36rem;
}
.fsM {
  font-size: 1.36rem;
}
@media screen and (max-width: 767px) {
  #contents .detailSection {
    width: 90%;
    padding: 0;
  }
  .noteMod01 {
    text-align: left;
    padding: 0 0 0 3em;
    text-indent: -3em;
  }
  #contents .subSection {
    width: 100%;
  }
  #contents .subSection .subNav .layCol01,
  #contents .subSection .subNav .layCol02,
  #contents .subSection .subNav .layCol03 {
    width: 100%;
    float: none;
  }
}
.purchase .txt-cmmt {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .purchase .tbl-cell {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .purchase .btn-tel .ico-box {
    background-position: left 17% center;
  }
  .purchase .ico-box .ico-space {
    padding: 30px 5% 30px 34%;
  }
  .purchase .ico-box .ico-space > p {
    display: flex;
    flex-wrap: wrap;
  }
  .purchase .ico-box .ico-space .txt-small {
    transform: translateX(-6px);
    margin-top: 8px;
  }
}
@media screen and (max-width: 414px) {
  .purchase .btn-dl .ico-box,
  .purchase .btn-tel .ico-box {
    background-position: left 8% center;
  }
  .purchase .btn-dl .ico-box .ico-space {
    padding: 30px 5% 30px 27%;
    font-size: 5.5vw;
  }
  .purchase .ico-box .ico-space {
    padding: 30px 5% 30px 27%;
  }
  .purchase .btn-tel .txt-deco {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 320px) {
  .sec_product_btn {
    font-size: 1.4rem;
    padding: 18px 0;
  }
}