@charset "utf-8";
:root {
  --color-primary: #004EA2;
  --color-secondary: #5F95FF;
  --color-tertiary: #002E66;
  --color-background: #DEE5FF;
  --color-background02: #F2FBFF;
  --color-black: #1B1B1B;
  --color-gray01: #7E7E7E;
	--color-gray02: #CACACA;
  --color-gray03: #F1F1F1;
  --color-white: #FFFFFF;
  --color-accent01: #FF605F;
  --color-accent02: #EFF300;
  --color-accent03: #4D9900;
  --color-red: #FF0000;
  --color-orange: #F5B221;
  --color-lightblue: #C8EFF2;
  --rp120: 120px;
  --rp100: 100px;
  --rp80: 80px;
  --rp60: 60px;
  --rp40: 40px;
  --rp20: 20px;
  --margin-big: 120px;
  --margin-middle: 80px;
  --margin-small: 20px;
  --margin-col: 40px;
  --container-w1: 60px;
  --container-w2: 30px;
  --header-hight: 80px;
}
@media screen and (max-width: 768px) {
  :root {
    --rp120: 100px;
    --rp100: 80px;
    --rp80: 60px;
    --rp60: 40px;
    --rp40: 20px;
    --margin-big: 60px;
    --margin-middle: 60px;
    --margin-col: 20px;
    --container-w1: 30px;
  }
}
@media screen and (max-width: 480px) {
  :root {
    --margin-big: 40px;
    --margin-middle: 20px;
    --container-w1: 20px;
    --container-w2: 20px;
  }
}
/*====================================================================
　Commons
====================================================================*/
html, body {
  width: 100%;
  word-wrap: break-word;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  html, body {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  html, body {
    font-size: 16px;
  }
}
body{
	color: var(--color-black);
	font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
	line-height: 1.8;
  background: #FFF;
  font-weight: 400;
}
img {
  display: block;
	max-width: 100%;
	image-rendering: -webkit-optimize-contrast;
}
::-webkit-full-page-media, :future, :root img{
  image-rendering: auto;
}
svg {
  fill: currentColor;
  max-width: 100%;
}
p {
	margin: var(--rp20) 0 0;
}
input, 
button, 
select, 
textarea {
	font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
}
input, 
select, 
textarea {
  background: #FFF;
}
*:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #333;
}
/*
link
---------------------------------------------------------*/
a {
	transition: all .3s ease;
}
a:link {
	color: var(--color-primary);
	text-decoration: underline;
}
a:visited {
	color: var(--color-primary);
	text-decoration: underline;
}
a:not([class]):link{
  color: var(--color-primary);
  font-weight: 700;
}
a:not([class]):visited{
  color: var(--color-primary);
  font-weight: 700;
}
a:hover {
  opacity: .6;
	text-decoration: underline;
}
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*
navskip
---------------------------------------------------------*/
.navskip { display: none; }
/*====================================================================
Layout……各ページを構成するサイト全体で共通したエリアを管理
====================================================================*/
/*----------------------------------------*/
header{
	display: flex;
	justify-content: space-between;
	width: 100%;
  padding: 0 40px;
  height: 80px;
  position: relative;
  z-index: 999;
  background: var(--color-white);
  transition: .5s;
}
/*上スクロール表示、下スクロール非表示用*/
header.scroll{
  transform: translateY(-100%);
}
@media screen and (max-width: 768px) {
  header{
    padding: 0 20px;
    height: 60px;
  }
}
.l-logo{
  display: flex;
  align-items: center;
}
.l-logo__img{
  display: flex;
  align-items: center;
}
.l-gnav__bg{
  display: flex;
  align-items: center;
}
.l-gnav__btn01{
  background: var(--color-white);
  border: 1px solid var(--color-primary);
  color: var(--color-primary) !important;
  text-decoration: none !important;
  font-weight: 700;
  padding: 8px 52px;
  display: inline-block;
  text-align: center;
  border-radius: 60px;
  position: relative;
  line-height: calc(1em + 8px);
}
.l-gnav__btn01::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url(/img/common/ico_c_arrow01.svg) center center / 100% no-repeat;
}
@media screen and (max-width: 768px) {
  .l-logo {
      flex: 1;
      margin-right: 20px;
    }
  .l-gnav__btn01{
    padding: 8px 32px 8px 20px;
    text-align: left;
  }
  .l-gnav__btn01::before{
    right: 8px;
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 425px) {
  .l-gnav__btn01{
    padding: 4px 32px 4px 20px;
    font-size: 12px;
  }
  .l-gnav__btn01::before{
    right: 8px;
    width: 20px;
    height: 20px;
  }
}
/*----------------------------------------*/
.l-pagetop {
  position: fixed;
  bottom: 20px;
  right: 0;
  z-index: 999;
}
.l-pagetop a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background-color: var(--color-lightblue);
	border-radius: 8px 0 0 8px;
  color: var(--color-white) !important;
  border-top: 1px solid var(--color-primary);
  border-left: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  text-decoration: none !important;
}
.l-pagetop a:hover {
  text-decoration: none !important;
}
.l-pagetop a > span {
  display: none;
}
@media screen and (max-width: 1100px) {
  .l-pagetop {
    bottom: 20px;
  }
  .l-pagetop a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 40px;
    font-size: 10px;
    border-radius: 4px 0 0 4px;
    background-color: var(--color-lightblue);
    color: var(--color-white);
  }
  .l-pagetop a > span {
    display: inline;
  }
}

/*----------------------------------------*/
.l-container01 {
  margin: var(--rp80) 0;
}
.l-container01:first-child {
  margin: var(--rp80) 0 var(--rp80);
}
.p-pagetitle_area + .l-container01{
  margin-top: var(--rp60);
}
.l-container01.bg01 {
  background: var(--color-tertiary);
  margin: 0;
  padding: var(--margin-big) 0;
}
.l-container01.bg__contact {
  background: var(--color-tertiary);
  margin: 0;
  padding: var(--margin-middle) 0;
}
/*----------------------------------------*/
.l-section01 {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-w1);
}
.l-section01.l-section__bg01{
  border: 4px solid var(--color-primary);
  background: var(--color-background02);
  border-radius: 8px;
  padding: var(--rp40);
}
.l-section01.l-section__bg02{
  border: 4px solid var(--color-primary);
  background: var(--color-primary);
  border-radius: 8px;
  padding: var(--rp40);
}
.l-section02 {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-w1);
}
@media screen and (max-width: 768px) {
  .l-section02 {
    padding: 0 ;
  }
}
/*----------------------------------------*/
.l-footer{
  border-top: 1px solid var(--color-primary);
  padding: 20px;
}
.l-footer__inner{
  width: 100%;
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.c-copyright{
  font-size: 14px;
  line-height: calc(1em + 8px);
  color: var(--color-primary);
  margin: 0;
}
.c-proof{
  display: flex;
  gap: 8px;
}
.c-proof li img{
  height: 60px;
}
@media screen and (max-width: 1080px) {
  .l-footer .c-proof{
    padding-right: 32px;
  }
}
@media screen and (max-width: 560px) {
  .c-copyright{
    font-size: 12px;
  }
}
/*----------------------------------------*/
.l-sub__nav__title{
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.2em;
  font-weight: 700;
}
.l-sub__nav__menu{
  margin-left: 20px;
}
.l-sub__nav__menu > li{
  margin-bottom: 10px;
}
.l-sub__nav__menu > li a{
  color: var(--color-primary);
}
@media screen and (max-width: 1080px) {
  .l-sub__nav__menu{
    margin-left: 0;
    padding: 20px;
    border-top: 1px solid var(--color-secondary);
    border-bottom: 1px solid var(--color-secondary);
  }
}
/*----------------------------------------*/
.l-row {
  display: flex;
  flex-wrap: wrap;
}
.l-row__reverse {
  flex-direction: row-reverse;
}
.l-row__center {
  align-items: center;
}
.l-row__jcenter {
  justify-content: center;
}
.l-row__jspaceb {
  justify-content: space-between;
}
.l-row__childflex1 {
  flex: 1;
}
.l-row .col_img_txt{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.l-row .col_img_txt > li {
  margin: 0 calc(var(--margin-col) / 2);
}
.l-row .col_img_txt > li:first-child {
  margin-left: 0;
}
.l-row .col_img_txt > li:last-child {
  margin-right: 0;
}
.l-row .col_img_txt > li img {
  margin: auto;
}
@media screen and (max-width: 768px) {
  .l-row .col_img_txt{
    display: block;
  }
  .l-row .col_img_txt > li {
    margin: 0;
  }
  .l-row .col_img_txt > li:first-child {
    margin-bottom: var(--margin-col);
  }
  .l-row .col_img_txt > li:last-child {
    margin: 0;
  }
  .l-row .col_img_txt > li img {
    margin: auto;
  }
}
.l-row .col0{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.l-row .col0 > li {
  margin: 0 calc(var(--margin-col) / 2);
}
.l-row .col0 > li:first-child {
  margin-left: 0;
}
.l-row .col0 > li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .l-row .col0{
    display: block;
  }
  .l-row .col0 > li {
    margin: 0;
  }
  .l-row .col0 > li:first-child {
    margin-bottom: var(--margin-col);
  }
  .l-row .col0 > li:last-child {
    margin: 0;
  }
}
.l-row .col2{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col2 > li {
  width: calc(100% / 2 - (var(--margin-col) / 2));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.l-row .col2 > li:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 480px) {
  .l-row .col2 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.l-row .col2__2{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col2__2 > li {
  margin-bottom: var(--margin-col);
}
.l-row .col2__2 > li.text > p {
  margin: initial;
}
.l-row .col2__2 > li.text {
  width: calc(( (100% / 3) * 2 ) - (var(--margin-col) / 2));
}
.l-row .col2__2 > li.img {
  width: calc(( (100% / 3) * 1 ) - (var(--margin-col) / 2));
}
@media screen and (max-width: 480px) {
  .l-row .col2__2 > li.text {
    width: 100%;
  }
  .l-row .col2__2 > li.img {
    width: 100%;
  }
}
.l-row .col3{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col3 > li {
  width: calc(100% / 3 - ((var(--margin-col) * 2 ) / 3));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.l-row .col3 > li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .l-row .col3 > li {
    width: calc(100% / 2 - (var(--margin-col) / 2));
  }
  .l-row .col3 > li:nth-child(odd) {
    margin-right: var(--margin-col);
  }
  .l-row .col3 > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .l-row .col3 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.l-row .col4{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col4 > li {
  width: calc(100% / 4 - ((var(--margin-col) * 3 ) / 4));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.l-row .col4 > li:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1080px) {
  .l-row .col4 > li {
    width: calc(100% / 3 - ((var(--margin-col) * 2 ) / 3));
  }
  .l-row .col4 > li:nth-child(4n) {
    margin-right: var(--margin-col);
  }
  .l-row .col4 > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-row .col4 > li {
    width: calc(100% / 2 - (var(--margin-col) / 2));
  }
  .l-row .col4 > li:nth-child(3n) {
    margin-right: var(--margin-col);
  }
  .l-row .col4 > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .l-row .col4 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.l-row .col5{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col5 > li {
  width: calc(100% / 5 - ((var(--margin-col) * 4 ) / 5));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.l-row .col5 > li:nth-child(5n) {
  margin-right: 0;
}
@media screen and (max-width: 1080px) {
  .l-row .col5 > li {
    width: calc(100% / 3 - ((var(--margin-col) * 2 ) / 3));
  }
  .l-row .col5 > li:nth-child(5n) {
    margin-right: var(--margin-col);
  }
  .l-row .col5 > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-row .col5 > li {
    width: calc(100% / 2 - (var(--margin-col) / 2));
  }
  .l-row .col5 > li:nth-child(3n) {
    margin-right: var(--margin-col);
  }
  .l-row .col5 > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .l-row .col5 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.l-row .col6{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col6 > li {
  width: calc(100% / 6 - ((var(--margin-col) * 5 ) / 6));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.l-row .col6 > li:nth-child(6n) {
  margin-right: 0;
}
@media screen and (max-width: 1080px) {
  .l-row .col6 > li {
    width: calc(100% / 3 - ((var(--margin-col) * 2 ) / 3));
  }
  .l-row .col6 > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-row .col6 > li {
    width: calc(100% / 2 - (var(--margin-col) / 2));
  }
  .l-row .col6 > li:nth-child(3n) {
    margin-right: var(--margin-col);
  }
  .l-row .col6 > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .l-row .col6 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
/*----------------------------------------*/
.l-next-arrow{
  position: relative;
  z-index: -1;
}
.l-next-arrow > img{
  position: absolute;
  top:calc((var(--rp80) * -1) * 2 + 20px);
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  max-block-size:initial;
}
/*====================================================================
Project……再利用予定のないプロジェクト固有のスタイルを管理
====================================================================*/
.p-sticky_simulator{
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 999;
}
@media screen and (max-width: 560px) {
  .p-sticky_simulator{
    margin-top: 90px;
  }
}
.p-sticky_simulator__bg{
  background: var(--color-primary);
  opacity: 0;
  transform: translateY(200px);
  transition: opacity .6s , transform .6s;
  padding: 20px;
}
.simulator_Trigger.display .p-sticky_simulator__bg{
  opacity: 1;
  transform: translateY(0);
}
.p-simulator{
  background: var(--color-white);
  max-width: 1000px;
  width: 100%;
  border-radius: 8px;
  padding: 20px;
  margin: auto;
  position: relative;
  max-height: calc(100vh - 40px);
  overflow: auto;
}
.p-simulator__result{
  background: var(--color-white);
  max-width: 1000px;
  width: 100%;
  border-radius: 8px;
  padding: 20px;
  margin: auto;
  position: relative;
}
.p-simulator__title{
  position: relative;
  padding-right: 112px;
}
.p-simuleator__total > ul{
  display: flex;
  gap: 20px;
}
.c-price{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.c-price > .koumoku{
  font-weight: 700;
  line-height: calc(1em + 4px);
  background: var(--color-background);
  padding: 6px 12px;
  border-radius: 4px;
}
.c-price > .price{
  font-size: 24px;
  line-height: calc(1em + 4px);
  font-weight: 700;
}
.c-price > .price > .unit{
  font-size: 16px;
  font-weight: 400;
}
.p-simulator__title__result{
  position: relative;
}
.p-simuleator__total__result{
  display: flex;
  justify-content: center;
}
.p-simuleator__total__result > ul{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-simuleator__total__result .c-price > .koumoku{
  font-size: 20px;
}
.p-simuleator__total__result .c-price > .price{
  font-size: 36px;
}
.p-simuleator__adbtn{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  cursor: pointer;
  color: var(--color-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
}
.p-simuleator__adbtn:hover{
  opacity: .6;
}
.p-simuleator__adbtn::before{
  content: "";
  width: 20px;
  height: 20px;
  background: url(/img/common/ico_c_open.svg) center center / 100% no-repeat;
  margin-right: 4px;
}
.p-simuleator__adbtn::after{
  content: "を開く";
}
.p-simuleator__adbtn.close::before{
  background: url(/img/common/ico_c_crose.svg) center center / 100% no-repeat;
}
.p-simuleator__adbtn.close::after{
  content: "を閉じる";
}
.p-simuleator__detail{
  border-top: 1px solid var(--color-primary);
  margin-top: var(--rp20);
  padding-top: var(--rp20);
}
.p-simuleator__detail__koumoku{
  font-weight: 700;
  font-size: 20px;
  line-height: calc(1em + 4px);
  background: var(--color-background);
  padding: 6px 12px;
  text-align: center;
  border-radius: 4px 4px 0 0;
}
.p-simuleator__detail__table{
  width:100%;
}
.p-simuleator__detail__table tr{
  border-top: 1px solid var(--color-background);
  border-bottom: 1px solid var(--color-background);
}
.p-simuleator__detail__table th,
.p-simuleator__detail__table td{
  vertical-align: top;
  padding: 4px 8px;
}
.p-simuleator__detail__table .price{
  text-align: right;
}
.c-icon{
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-simuleator__detail__table_total{
  padding: 8px 0;
  text-align: right;
}
.p-simuleator__detail__table_total > .c-price{
 justify-content: flex-end;
}
.p-simuleator__zeikomi{
  font-size: 14px;
  line-height: calc(1em + 4px);
  margin: 0 auto 10px;
}
@media screen and (max-width: 1080px) {
  .c-price {
    align-items: center;
  }
  .c-price>.koumoku {
    font-size: 14px;
    padding: 6px 8px;
  }
  .c-price>.price,
  .c-price>.price>.unit {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .p-simuleator__total>ul {
    flex-wrap: wrap;
    gap: 8px;
  }
  .p-simulator__title{
    padding-right: 56px;
  }
  .c-price>.koumoku {
    font-size: 10px;
    padding: 4px 4px;
  }
  .p-simuleator__adbtn::after {
    display: none;
  }
  .p-simuleator__detail__koumoku {
    font-size: 16px;
  }
  .p-simuleator__detail__table {
    font-size: 14px;
  }
  .p-simuleator__detail__table .c-icon img {
    width: 20px;
  }
  .p-simuleator__zeikomi{
    font-size: 12px;
    margin: 0 auto 10px;
  }
  .p-simuleator__total__result .c-price > .koumoku{
    font-size: 16px;
  }
  .p-simuleator__total__result .c-price > .price{
    font-size: 32px;
  }
}
@media screen and (max-width: 560px) {
  .p-simulator {
    padding: 12px;
  }
  .p-simulator__result {
    padding: 12px;
  }
  .c-price>.price,
  .c-price>.price>.unit {
    font-size: 14px;
  }
  .p-simuleator__detail__table,
  .p-simuleator__detail__table tbody,
  .p-simuleator__detail__table tr,
  .p-simuleator__detail__table th,
  .p-simuleator__detail__table td{
    display: block;
    padding: 0;
  }
  .p-simuleator__detail__table tr{
    padding: 8px 0;
  }
  .p-simuleator__total__result .c-price{
    flex-direction: column;
  }
  .p-simuleator__total__result .c-price > .koumoku{
    font-size: 16px;
  }
  .p-simuleator__total__result .c-price > .price{
    font-size: 32px;
  }
}

/*----------------------------------------*/
.p-return{
  position: absolute;
  bottom: 20px;
  left: 0;
  z-index: 1000;
  opacity: 0;
  transition: opacity .6s ;
}
.simulator_Trigger.display .p-return{
  opacity: 1;
}
.p-return button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 46px;
  background-color: var(--color-white);
	border-radius: 0 8px 8px 0;
  color: var(--color-primary) !important;
  border-top: 1px solid var(--color-primary);
  border-right: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 700;
  line-height: calc(1em + 8px);
  cursor: pointer;
  transition: background-color .6s;
}
@media screen and (max-width: 1180px) {
  .p-return{
    top: -20px;
    bottom: initial;
    transform: translateY(-100%);
  }
}
@media (hover: hover) {
  .p-return button:hover {
    background: var(--color-lightblue);
  }
}



/*----------------------------------------*/
.p-pageimage{
	background: url(/img/img_bg01.png) center center / cover no-repeat var(--color-background);
	width: 100%;
  height: 380px;
  display: flex;
  justify-content: center;
}
.p-pageimage__bg {
  padding: var(--rp40);
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}
.p-pageimage__bg > h2{
  text-align: center;
  font-size: 52px;
  font-weight: 900;
  line-height: calc(1em + 16px);
  color: var(--color-primary);
}
.p-pageimage__bg > p{
  margin: 0;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: calc(1em + 8px);
  color: var(--color-primary);
}
.p-pageimage__bg .fu{
  display: flex;
  justify-content: center;
}
.p-pageimage__bg .fu .fu_inner{
  position: relative;
  padding: 0 32px;
}
.p-pageimage__bg .fu .fu_inner::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 12px;
  height: 28px;
  background: url(/img/img_head_fu02.svg) center center / 100% 100% no-repeat;
}
.p-pageimage__bg .fu .fu_inner::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 12px;
  height: 28px;
  background: url(/img/img_head_fu02.svg) center center / 100% 100% no-repeat;
  transform: scale(-1,1);
}
@media screen and (max-width: 660px) {
  .p-pageimage {
    height: 320px;
    background-size: 768px auto;
  }
  .p-pageimage__bg>h2 {
    font-size: 32px;
    line-height: calc(1em + 8px);
  }
}
/*----------------------------------------*/
/* form-nav */
.p-formstep_area{
margin-top: -40px;
padding: 0 var(--rp40);
}
.p-formstep {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin: auto;
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  overflow: hidden;
}
.p-formstep > li {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 20px 30px;
    line-height: 1.5;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.p-formstep > li > .nm {
  width: 100%;
  display: block;
  font-weight: 700;
  font-size: 20px;
  color: var(--color-primary);
}
.p-formstep > li > .tx {
  width: 100%;
  display: block;
  font-weight: 700;
  font-size: 18px;
  flex: 1 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-formstep>li:not(:last-child)::before {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: calc(100% - 1px);
  content: '';
  margin: auto;
  background: url(/img/step_arw01.svg) center left / 100% 100% no-repeat;
  width: 30px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  /* .p-formstep_area{
    padding: 0 20px;
  }
  .p-formstep {
    display: block;
  }
  .p-formstep > li:not(:last-child)::before,
  .p-formstep > li:not(:last-child)::after {
    display: none;
  }
  .p-formstep > li {
    border-bottom: 1px solid var(--color-primary);
    padding: 8px 0;
    flex-direction: row;
  }
  .p-formstep > li > .nm{
    width: 5em;
  }
  .p-formstep > li > .tx{
    width: 11em;
    text-align: left;
  } */
}
@media screen and (max-width: 560px) {
  /* .p-formstep > li > .nm{
    font-size: 12px;
  }
  .p-formstep > li > .tx{
    font-size: 12px;
  } */
  .p-formstep > li {
      padding: 4px 14px;
  }
  .p-formstep>li:not(:last-child)::before{
    width: 12px;
  }
  .p-formstep > li > .nm{
    font-size: 12px;
  }
  .p-formstep > li > .tx{
    font-size: 12px;
  }


}
/* active */
.p-formstep > li.fs__active {
    z-index: 1;
    background: var(--color-primary);
    color: #FFF;
    position: relative;
}
.p-formstep > li.fs__active > .nm {
    color: #FFF;
}
.p-formstep > li.fs__active:not(:last-child)::before {
  background: url(/img/step_arw02.svg) center left / 100% 100% no-repeat;
}
@media screen and (max-width: 768px) {
  /* .p-formstep > li.fs__active::after {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 8px;
      margin: auto;
      width: 24px;
      height: 24px;
      background: url(/img/common/ico_c_arrow01_w.svg) center center / 100% no-repeat;
      z-index: 1;
  } */
}
@media screen and (max-width: 560px) {
  /* .p-formstep > li.fs__active::after{
    width: 16px;
    height: 16px;
  } */
}
/*----------------------------------------*/
.p-form{
    margin: auto;
}
.p-input{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-input:not(:first-child){
  margin-top: var(--rp40);
}
.p-form.contact .p-input:not(:first-child){
  margin-top: 40px !important;
}
.p-input > .title__area{
  display: flex;
  align-items: flex-start;
  width: 100%;
  font-weight: 700;
  position: relative;
  margin-bottom: 4px;
}
.p-input > .title__area > .title{
  font-size: 18px;
  line-height: calc(1em + 8px);
}
.p-input > .input__area{
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.p-input > .input__area .nowrap{
  display: flex;
  align-items: center;
}
.p-input > .input__area .attached{
  margin-right: 8px;
  margin-left: 8px;
}
.p-input > .input__area .attached__f{
  margin-right: 8px;
  min-width: 24px;
}
.p-input > .input__area .subtitle__area{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.p-input > .input__area .subtitle__area .subtitle{
  line-height: calc(1em + 8px);
}
.input__flex1{
  flex: 1;
}
.input__flex1.inbtn__area{
  display: flex;
  gap: 8px 20px;
  flex-wrap: wrap;
}
.input__width01{
  width: calc(5em + 16px + 4px);
}
.input__width02{
  width: calc(8em + 16px + 4px);
}
.input__width03{
  width: calc(10em + 16px + 4px);
}
@media screen and (max-width: 560px) {
  .p-input > .title__area > .title{
    font-size: 16px;
  }
  .p-input > .input__area{
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
  }
  .p-input > .input__area .subtitle__area{
    width: 100%;
  }
.input__error{
  font-size: 14px;
  line-height: calc(1em + 8px);
}
}
@media screen and (max-width: 480px) {
  .input__width01{
    width: 100%;
  }
  .input__width02{
    width: 200%;
  }
  .input__width03{
    width: 100%;
  }
}
/*必須・任意*/
.p-required{
  background: var(--color-accent01);
  color: var(--color-white);
  border-radius: 3px;
  font-size: 16px;
  padding: 4px 16px;
  line-height: calc(1em + 4px);
  display: flex;
  align-items: center;
  margin-right: 8px;
}
.p-required.any{
  background: var(--color-gray02);
  color: var(--color-black);
}
@media screen and (max-width: 560px) {
.p-required{
  font-size: 14px;
  padding: 4px 8px;
  white-space: nowrap;
}
}
/*ツールチップ　ヒント*/
.p-tooltip .tip__ico{
  position: absolute;
  top: 0;
  right: 0;
  width: calc(1em * 1.8);
  height: calc(1em * 1.8);
  display: block;
  cursor: pointer;
}
.p-tooltip .tip__ico:hover{
  opacity: .6;
}
.p-tooltip .tip__ico::before{
  content: "？";
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: calc(1em * 1.8);
  height: calc(1em * 1.8);
  background: var(--color-primary);
  border-radius: calc(1em * 1.8);
  color: var(--color-white);
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
}
.p-tooltip .tip__text{
  width: max-content;
  max-width: 100%;
  background: var(--color-gray03);
  font-size: 0.8em;
  padding: .5em .8em;
  position: absolute;
  bottom: calc(1.7em * 1.8);
  right: 0;
  opacity: 0;
  transform-origin: bottom right;
  transform: scale(0 , 0) ;
  transition: all .3s;
  z-index: 10;
}
.p-tooltip .tip__text::after{
  content: "";
  position: absolute;
  bottom: -10px;
  right: calc((1em * 1.8) / 3);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 10px solid var(--color-gray03);
  border-bottom: 0;
}
.p-tooltip .tip__text > p{
  margin: .5em 0;
}
.p-tooltip .tip__ico:hover + .tip__text{
  display: block;
  transform: scale(1 , 1);
  opacity: 1;
}
/*セレクトボックス*/
.p-input select{
  border-radius: 3px;
  border: 2px solid var(--color-gray02);
  display: inline-block;
  padding: 6px 32px 6px 8px;
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  background: url(/img/common/ico_select_arrow01.svg) top 14px right 8px / 16px no-repeat var(--color-white);
}
.p-input select:focus{
  border: 1px solid var(--color-primary);
}
/*テキストエリア*/
.p-input textarea{
  border-radius: 3px;
  border: 2px solid var(--color-gray02);
  padding: 8px 8px;
  font-size: 16px;
  line-height: 24px;
  height: 8em;
}
.p-input textarea:focus{
  border: 1px solid var(--color-primary);
}
/*その他*/
.p-input input[type="file"]{
  cursor: pointer;
  width: 18em;
}
/*入力フォームまわり*/
.p-input input:not([type="submit"]):not([type="reset"]):not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="color"]):not([type="range"]):not([type="button"]):not([type="hidden"]){
  border-radius: 4px;
  border: 2px solid var(--color-gray02);
  padding: 6px 8px;
  font-size: 16px;
  line-height: 24px;
}
.p-input input:not([type="submit"]):not([type="reset"]):not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="color"]):not([type="range"]):not([type="button"]):not([type="hidden"]):focus{
  border: 2px solid var(--color-primary);
}
.checkimg__sp{
  display: none;
}
@media screen and (max-width: 560px) {
  .checkimg__pc{
    display: none;
  }
  .checkimg__sp{
    display: block;
  }
}

/*disabled*/
input[type="text"]:disabled{
  background-color: var(--color-gray03) !important;
  border-color: var(--color-gray02) !important;
}
input[type="radio"]:disabled,
input[type="checkbox"]:disabled{
  cursor: default !important;
}
input[type="radio"]:disabled+label,
input[type="checkbox"]:disabled+label{
  color: var(--color-gray02) !important;
}
input[type="radio"]:disabled+label:hover,
input[type="checkbox"]:disabled+label:hover{
  border-color: inherit !important;
  opacity: 1 !important;
  cursor: initial;
}
.p-checklist02 input[type="radio"]:disabled+label,
.p-checklist02 input[type="checkbox"]:disabled+label,
.p-checklist03 input[type="radio"]:disabled+label,
.p-checklist03 input[type="checkbox"]:disabled+label,
.p-checklist04 input[type="radio"]:disabled+label,
.p-checklist04 input[type="checkbox"]:disabled+label,
.p-checklist05 input[type="radio"]:disabled+label,
.p-checklist05 input[type="checkbox"]:disabled+label,
.p-checklist06 input[type="radio"]:disabled+label,
.p-checklist06 input[type="checkbox"]:disabled+label
{
  color: var(--color-gray02) !important;
  background-color: var(--color-gray03) !important;
}
select:disabled{
  background-color: var(--color-gray03) !important;
  border-color: var(--color-gray02) !important;
}
textarea:disabled{
  background-color: var(--color-gray03) !important;
  border-color: var(--color-gray02) !important;
}
button:disabled{
  background-color: var(--color-gray01) !important;
  border-color: var(--color-gray01) !important;
  color: var(--color-white) !important;
}
button:disabled:hover{
  transform: initial;
  cursor: initial;
}
button:disabled::before{
  display: none;
}




/*ラジオボタン・チェックボックスパターン1*/
.p-checklist{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.p-checklist > li{
  position: relative;
  display: flex;
  gap: 4px;
}
.p-checklist label{
  display: flex;
  cursor: pointer;
  line-height: calc(1em + 8px);
}
.p-checklist input[type="radio"]{
  appearance: none;
  background: url(/img/common/ico_radio01.svg) center center / 100% auto no-repeat;
  width: 24px;
  height: 24px;
  display: inline-block;
  cursor: pointer;
  outline: none;
}
.p-checklist input[type="radio"]:checked{
  background: url(/img/common/ico_radio01_h.svg) center center / 100% auto no-repeat;
}
.p-checklist input[type="checkbox"]{
  appearance: none;
  background: url(/img/common/ico_checkbox01.svg) center center / 100% auto no-repeat;
  width: 24px;
  height: 24px;
  display: inline-block;
  cursor: pointer;
  outline: none;
}
.p-checklist input[type="checkbox"]:checked{
  background: url(/img/common/ico_checkbox01_h.svg) center center / 100% auto no-repeat;
}
/*ラジオボタン・チェックボックスパターン2*/
.p-checklist02{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.p-checklist02 > li{
  position: relative;
  flex: 1;
  display: flex;
}
.p-checklist02 > li .tx01{
  font-weight: 700;
  font-size: 18px;
  line-height: calc(1em + 8px);
  margin-top: 8px;
}
.p-checklist02 > li .tx01.min{
  font-size: 16px;
  letter-spacing: -0.05em;
}
.p-checklist02 input[type="radio"],
.p-checklist02 input[type="checkbox"] {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
}
.p-checklist02 input[type="radio"]+label,
.p-checklist02 input[type="checkbox"]+label{
  line-height: 1;
  width: 100%;
  cursor: pointer;
  border-radius: 8px;
  border: 2px solid var(--color-gray02);
  background: var(--color-white);
  padding: 20px;
  position: relative;
  transition: opacity .3s;
}
.p-checklist02 input[type="radio"]+label::before{
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url(/img/common/ico_radio01.svg) center center / 100% 100% no-repeat;
}
.p-checklist02 input[type="checkbox"]+label::before{
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url(/img/common/ico_checkbox01.svg) center center / 100% 100% no-repeat;
}
.p-checklist02 input[type="radio"]+label:hover,
.p-checklist02 input[type="checkbox"]+label:hover{
  opacity: 0.6;
  background: var(--color-lightblue);
  border: 2px solid var(--color-primary);
}
.p-checklist02 input[type="radio"]:checked+label,
.p-checklist02 input[type="checkbox"]:checked+label{
  background: var(--color-lightblue);
  border: 2px solid var(--color-primary);
}
.p-checklist02 input[type="radio"]:checked+label::before{
  background: url(/img/common/ico_radio01_h.svg) center center / 100% 100% no-repeat;
}
.p-checklist02 input[type="checkbox"]:checked+label::before{
  background: url(/img/common/ico_checkbox01_h.svg) center center / 100% 100% no-repeat;
}
@media screen and (max-width: 768px) {
  .p-checklist02{
    flex-direction: column;
    gap: 8px;
  }
  .p-checklist02 > li .tx01.min{
    font-size: 18px;
    letter-spacing: inherit;
  }
}
@media screen and (max-width: 560px) {
  .p-checklist02 > li .tx01{
    font-size: 16px !important;
  }
}
/*ラジオボタン・チェックボックスパターン3*/
.p-checklist03{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.p-checklist03 > li{
  position: relative;
  flex: 1;
  display: flex;
}
.p-checklist03 > li .inner{
  display: flex;
  gap: 20px;
  height: 100%;
}
.p-checklist03 > li .inner > .detail{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.p-checklist03 > li .inner > .price{
  width: 160px;
  border-left: 1px solid var(--color-gray02);
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-checklist03 > li .inner > .price .unit{
  font-size: .8em;
}
.p-checklist03 > li .inner > .price img{
  margin: 0 auto 12px;
}
.p-checklist03 > li .tx01{
  font-weight: 700;
  font-size: 18px;
  line-height: calc(1em + 8px);
}
.p-checklist03 > li .tx02{
  font-size: 14px;
  line-height: calc(1em + 8px);
}
.p-checklist03 input[type="radio"],
.p-checklist03 input[type="checkbox"] {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
}
.p-checklist03 input[type="radio"]+label,
.p-checklist03 input[type="checkbox"]+label{
  line-height: 1;
  width: 100%;
  min-height: 240px;
  cursor: pointer;
  border-radius: 8px;
  border: 2px solid var(--color-gray02);
  background: var(--color-white);
  padding: 20px 20px 20px 48px;
  position: relative;
  transition: opacity .3s;
}
.p-checklist03 input[type="radio"]+label::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url(/img/common/ico_radio01.svg) center center / 100% 100% no-repeat;
}
.p-checklist03 input[type="checkbox"]+label::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url(/img/common/ico_checkbox01.svg) center center / 100% 100% no-repeat;
}
.p-checklist03 input[type="radio"]+label:hover,
.p-checklist03 input[type="checkbox"]+label:hover {
  opacity: 0.6;
  background: var(--color-lightblue);
  border: 2px solid var(--color-primary);
}
.p-checklist03 input[type="radio"]:checked+label,
.p-checklist03 input[type="checkbox"]:checked+label{
  background: var(--color-lightblue);
  border: 2px solid var(--color-primary);
}
.p-checklist03 input[type="radio"]:checked+label::before{
  background: url(/img/common/ico_radio01_h.svg) center center / 100% 100% no-repeat;
}
.p-checklist03 input[type="checkbox"]:checked+label::before{
  background: url(/img/common/ico_checkbox01_h.svg) center center / 100% 100% no-repeat;
}
@media screen and (max-width: 768px) {
  .p-checklist03 {
    gap: 8px;
  }
  .p-checklist03 > li .inner{
    flex-direction: column;
    gap: 20px;
  }
  .p-checklist03 > li .inner > .price{
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    width: 100%;
    border-left: none;
    border-top: 1px solid var(--color-gray02);
    padding: 20px 0 0 0;
  }
  .p-checklist03 > li .inner > .price img[src="/img/img_no1.svg"]{
    width: 60px;
    margin: 0;
  }
  .p-checklist03 input[type="radio"]+label,
  .p-checklist03 input[type="checkbox"]+label{
    min-height: initial;
  }
}
@media screen and (max-width: 560px) {
  .p-checklist03>li .tx01 {
    font-size: 16px;
  }
}
/*ラジオボタン・チェックボックスパターン4*/
.p-checklist04{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.p-checklist04 > li{
  position: relative;
  flex: 1;
  display: flex;
}
.p-checklist04 > li .inner{
  display: flex;
  gap: 20px;
  height: 100%;
}
.p-checklist04 > li .inner > .detail{
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.p-checklist04 > li .inner > .detail > .block.tx01{
  flex: 1;
}
.p-checklist04 > li .inner > .detail > .block.tx01:has( + .img){
  width: 160px;
  flex: initial;
}
.p-checklist04 > li .inner > .detail > .block.img{
  flex: 1;
}
.p-checklist04 > li .inner > .price{
  width: 160px;
  border-left: 1px solid var(--color-gray02);
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-checklist04 > li .inner > .price .unit{
  font-size: .8em;
}
.p-checklist04 > li .inner > .price img{
  margin: 0 auto 12px;
}
.p-checklist04 > li .tx01{
  font-weight: 700;
  font-size: 18px;
  line-height: calc(1em + 8px);
}
.p-checklist04 > li .tx02{
  font-size: 14px;
  line-height: calc(1em + 8px);
}
.p-checklist04 input[type="radio"],
.p-checklist04 input[type="checkbox"] {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
}
.p-checklist04 input[type="radio"]+label,
.p-checklist04 input[type="checkbox"]+label{
  line-height: 1;
  width: 100%;
  cursor: pointer;
  border-radius: 8px;
  border: 2px solid var(--color-gray02);
  background: var(--color-white);
  padding: 20px 20px 20px 48px;
  position: relative;
  transition: opacity .3s;
}
.p-checklist04 input[type="radio"]+label::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url(/img/common/ico_radio01.svg) center center / 100% 100% no-repeat;
}
.p-checklist04 input[type="checkbox"]+label::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url(/img/common/ico_checkbox01.svg) center center / 100% 100% no-repeat;
}
.p-checklist04 input[type="radio"]+label:hover,
.p-checklist04 input[type="checkbox"]+label:hover {
  opacity: 0.6;
  background: var(--color-lightblue);
  border: 2px solid var(--color-primary);
}
.p-checklist04 input[type="radio"]:checked+label,
.p-checklist04 input[type="checkbox"]:checked+label{
  background: var(--color-lightblue);
  border: 2px solid var(--color-primary);
}
.p-checklist04 input[type="radio"]:checked+label::before{
  background: url(/img/common/ico_radio01_h.svg) center center / 100% 100% no-repeat;
}
.p-checklist04 input[type="checkbox"]:checked+label::before{
  background: url(/img/common/ico_checkbox01_h.svg) center center / 100% 100% no-repeat;
}
@media screen and (max-width: 768px) {
  .p-checklist04 {
    gap: 8px;
  }
  .p-checklist04 > li .inner{
    flex-direction: column;
    gap: 20px;
  }
  .p-checklist04 > li .inner > .detail{
    flex-direction: column;
    align-items: flex-start;
  }
  .p-checklist04 > li .inner > .price{
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    width: 100%;
    border-left: none;
    border-top: 1px solid var(--color-gray02);
    padding: 20px 0 0 0;
  }
  .p-checklist04 > li .inner > .price img[src="/img/img_no1.svg"]{
    width: 60px;
    margin: 0;
  }
  .p-checklist04 input[type="radio"]+label,
  .p-checklist04 input[type="checkbox"]+label{
    min-height: initial;
  }
  .p-checklist04 > li .inner > .detail > .block.tx01{
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .p-checklist04>li .tx01 {
    font-size: 16px;
  }
}
/*ラジオボタン・チェックボックスパターン5*/
/* .p-checklist05{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.p-checklist05 > li{
  position: relative;
  flex: 1;
  display: flex;
}
.p-checklist05 > li .inner{
  display: flex;
  gap: 20px;
  height: 100%;
}
.p-checklist05 > li .inner > .detail{
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.p-checklist05 > li .inner > .price{
  width: 160px;
  border-left: 1px solid var(--color-gray02);
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-checklist05 > li .inner > .price .unit{
  font-size: .8em;
}
.p-checklist05 > li .inner > .price img{
  margin: 0 auto 12px;
}
.p-checklist05 > li .tx01{
  font-weight: 700;
  font-size: 18px;
  line-height: calc(1em + 8px);
}
.p-checklist05 > li .tx02{
  font-size: 14px;
  line-height: calc(1em + 8px);
}
.p-checklist05 input[type="radio"],
.p-checklist05 input[type="checkbox"] {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
}
.p-checklist05 input[type="radio"]+label,
.p-checklist05 input[type="checkbox"]+label{
  line-height: 1;
  width: 100%;
  cursor: pointer;
  border-radius: 8px;
  border: 2px solid var(--color-gray02);
  background: var(--color-white);
  padding: 20px 20px 20px 48px;
  position: relative;
  transition: opacity .3s;
}
.p-checklist05 input[type="radio"]+label::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url(/img/common/ico_radio01.svg) center center / 100% 100% no-repeat;
}
.p-checklist05 input[type="checkbox"]+label::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url(/img/common/ico_checkbox01.svg) center center / 100% 100% no-repeat;
}
.p-checklist05 input[type="radio"]+label:hover,
.p-checklist05 input[type="checkbox"]+label:hover {
  opacity: 0.6;
  background: var(--color-lightblue);
  border: 2px solid var(--color-primary);
}
.p-checklist05 input[type="radio"]:checked+label,
.p-checklist05 input[type="checkbox"]:checked+label{
  background: var(--color-lightblue);
  border: 2px solid var(--color-primary);
}
.p-checklist05 input[type="radio"]:checked+label::before{
  background: url(/img/common/ico_radio01_h.svg) center center / 100% 100% no-repeat;
}
.p-checklist05 input[type="checkbox"]:checked+label::before{
  background: url(/img/common/ico_checkbox01_h.svg) center center / 100% 100% no-repeat;
}
@media screen and (max-width: 768px) {
  .p-checklist05 {
    gap: 8px;
  }
  .p-checklist05 > li .inner{
    flex-direction: column;
    gap: 20px;
  }
  .p-checklist05 > li .inner > .detail{
    flex-direction: column;
    align-items: flex-start;
  }
  .p-checklist05 > li .inner > .price{
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    width: 100%;
    border-left: none;
    border-top: 1px solid var(--color-gray02);
    padding: 20px 0 0 0;
  }
  .p-checklist05 > li .inner > .price img[src="/img/img_no1.svg"]{
    width: 60px;
    margin: 0;
  }
  .p-checklist05 input[type="radio"]+label,
  .p-checklist05 input[type="checkbox"]+label{
    min-height: initial;
  }
}
@media screen and (max-width: 560px) {
  .p-checklist05>li .tx01 {
    font-size: 16px;
  }
} */
/*ラジオボタン・チェックボックスパターン6*/
.p-checklist06{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.p-checklist06 > li{
  position: relative;
  flex: 1;
  display: flex;
}
.p-checklist06 > li .inner{
  display: flex;
  gap: 20px;
  height: 100%;
}
.p-checklist06 > li .inner > .detail{
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.p-checklist06 > li .inner > .detail > .block.tx01{
  width: 300px;
}
.p-checklist06 > li .inner > .detail > .block.img{
  flex: 1;
  line-height: calc(1em + 12px);
}
.p-checklist06 > li .inner > .price{
  width: 160px;
  border-left: 1px solid var(--color-gray02);
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-checklist06 > li .inner > .price .unit{
  font-size: .8em;
}
.p-checklist06 > li .inner > .price img{
  margin: 0 auto 12px;
}
.p-checklist06 > li .tx01{
  font-weight: 700;
  font-size: 18px;
  line-height: calc(1em + 8px);
}
.p-checklist06 > li .tx02{
  font-size: 14px;
  line-height: calc(1em + 8px);
}
.p-checklist06 input[type="radio"],
.p-checklist06 input[type="checkbox"] {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
}
.p-checklist06 input[type="radio"]+label,
.p-checklist06 input[type="checkbox"]+label{
  line-height: 1;
  width: 100%;
  cursor: pointer;
  border-radius: 8px;
  border: 2px solid var(--color-gray02);
  background: var(--color-white);
  padding: 20px 20px 20px 48px;
  position: relative;
  transition: opacity .3s;
}
.p-checklist06 input[type="radio"]+label::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url(/img/common/ico_radio01.svg) center center / 100% 100% no-repeat;
}
.p-checklist06 input[type="checkbox"]+label::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url(/img/common/ico_checkbox01.svg) center center / 100% 100% no-repeat;
}
.p-checklist06 input[type="radio"]+label:hover,
.p-checklist06 input[type="checkbox"]+label:hover {
  opacity: 0.6;
  background: var(--color-lightblue);
  border: 2px solid var(--color-primary);
}
.p-checklist06 input[type="radio"]:checked+label,
.p-checklist06 input[type="checkbox"]:checked+label{
  background: var(--color-lightblue);
  border: 2px solid var(--color-primary);
}
.p-checklist06 input[type="radio"]:checked+label::before{
  background: url(/img/common/ico_radio01_h.svg) center center / 100% 100% no-repeat;
}
.p-checklist06 input[type="checkbox"]:checked+label::before{
  background: url(/img/common/ico_checkbox01_h.svg) center center / 100% 100% no-repeat;
}
@media screen and (max-width: 768px) {
  .p-checklist06 {
    gap: 8px;
  }
  .p-checklist06 > li .inner{
    flex-direction: column;
    gap: 20px;
  }
  .p-checklist06 > li .inner > .detail{
    flex-direction: column;
    align-items: flex-start;
  }
  .p-checklist06 > li .inner > .price{
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    width: 100%;
    border-left: none;
    border-top: 1px solid var(--color-gray02);
    padding: 20px 0 0 0;
  }
  .p-checklist06 > li .inner > .price img[src="/img/img_no1.svg"]{
    width: 60px;
    margin: 0;
  }
  .p-checklist06 input[type="radio"]+label,
  .p-checklist06 input[type="checkbox"]+label{
    min-height: initial;
  }
  .p-checklist06 > li .inner > .detail > .block.tx01{
    width: 100%;
  }
  .p-checklist06 > li .inner > .detail > .block.img{
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  .p-checklist06>li .tx01 {
    font-size: 16px;
  }
}
/*送信ボタン・リセットボタン*/
.p-formbutton{
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-formbutton > button,
.p-formbutton > input{
  margin: 0 .5em;
}
/*-------------------------------------------*/
.p-pagetitle_area{
  margin-top: var(--rp80);
  padding: 0 100px;
}
.p-pagetitle{
  width: 100%;
  max-width: 900px;
  margin: auto;
  background: var(--color-primary);
  display: flex;
  justify-content: center;
  position: relative;
}
.p-pagetitle::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 80px;
  background: url(/img/img_ribbon.svg) center center / 100% 100% no-repeat;
  transform: translateX(-72px) translateY(28px);
  z-index: -1;
}
.p-pagetitle::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 80px;
  background: url(/img/img_ribbon.svg) center center / 100% 100% no-repeat;
  transform: translateX(72px) translateY(28px) scale(-1, 1);
  z-index: -1;
}
.p-pagetitle h2{
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  padding: 16px 20px;
  gap: 20px;
  position: relative;
  text-align: center;
}
.p-pagetitle h2 .il{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transform: translateX(-100%) translateY(-10px) scale(1.2);
  transform-origin: bottom right;
}
@media screen and (max-width: 768px) {
  .p-pagetitle_area {
    padding: 0 20px;
  }
  .p-pagetitle{
    border-radius: 8px;
  }
  .p-pagetitle h2 {
    gap: 0px;
    flex-direction: column;
  }
  .p-pagetitle h2 .tx01 {
    position: relative;
  }
  .p-pagetitle h2 .il {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transform: translateX(calc(-100% - 10px)) translateY(0) scale(2);
    transform-origin: bottom right;
  }
  .p-pagetitle::before{
    content: "";
    position: absolute;
    top: initial;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 60px;
    background: url(/img/img_ribbon.svg) center center / 100% 100% no-repeat;
    transform: translateX(-28px) translateY(15px);
    z-index: -1;
    display: none;
  }
  .p-pagetitle::after{
    content: "";
    position: absolute;
    top: initial;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 60px;
    background: url(/img/img_ribbon.svg) center center / 100% 100% no-repeat;
    transform: translateX(28px) translateY(15px) scale(-1, 1);
    z-index: -1;
    display: none;
  }
}
/*-------------------------------------------*/
.p-otoku01__area{
  border: 2px solid #F5B221;
  border-radius: 8px;
  background: #FEFFDE;
  padding: 20px;
}
.p-otoku01__area h4{
  color: #B97F00;
}
/*-------------------------------------------*/
.p-reslut__btn__il-area{
  position: relative;
}
.p-reslut__btn__il-area > .left{
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  transform: translateY(-20px);
}
.p-reslut__btn__il-area > .right{
  position: absolute;
  top: 0;
  right: 0;
  margin: auto;
  transform: translateY(-20px);
}
@media screen and (max-width: 1080px) {
  .p-reslut__btn__il-area > .left{
    width: 100px;
    transform: translateY(0) translateX(-20px);
  }
  .p-reslut__btn__il-area > .right{
    width: 100px;
    transform: translateY(0) translateX(20px);
  }
}
@media screen and (max-width: 900px) {
  .p-reslut__btn__il-area{
    display: none;
  }
}
.p-reslut__btn-area{
  display: flex;
  gap: 20px;
}
.p-reslut__btn-list{
  flex: 1;
}
.p-reslut__btn-list > .c-formbtn03{
  height: 100%;
}
.p-reslut__btn-area + .p-reslut__btn-area{
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-reslut__btn-area{
    flex-direction: column;
    gap: 8px;
  }
  .p-reslut__btn-area + .p-reslut__btn-area{
    margin-top: 8px;
  }
}
/*-------------------------------------------*/
.p-btn__area{
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  margin: auto;
  padding: 0 var(--rp40);
}
.p-btn__area > a,
.p-btn__area > button{
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-btn__area{
    gap: 8px;
  }
}



/*errorクラスがついた状態*/
.input__error{
  width: 100%;
  color: #fb3433;
  border: 1px solid var(--color-accent01);
  background: #fff1f1;
  padding: 4px 16px;
  display: flex;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  line-height: calc(1em + 12px);
  margin-top: 4px;
}
.input__error02{
  width: 100%;
  color: #fb3433;
  display: flex;
  justify-content: flex-start;
  font-weight: 700;
  font-size: 16px;
  line-height: calc(1em + 12px);
  margin-top: 4px;
}
.error input[type="text"]{
  border-color: var(--color-accent01) !important;
  background: #fff1f1;
}
.error select{
  border-color: var(--color-accent01) !important;
  background: #fff1f1;
}
.error textarea{
  border-color: var(--color-accent01) !important;
  background: #fff1f1;
}

.error .p-checklist input[type="radio"]{
  background-image: url(/img/common/ico_radio01_e.svg);
}
.error .p-checklist input[type="radio"]:checked{
  background-image: url(/img/common/ico_radio01_h.svg);
}

.error .p-checklist input[type="checkbox"]{
  background-image: url(/img/common/ico_checkbox01_e.svg);
}
.error .p-checklist input[type="checkbox"]:checked{
  background-image: url(/img/common/ico_checkbox01_h.svg);
}

.error .p-checklist02 input[type="radio"]+label,
.error .p-checklist02 input[type="checkbox"]+label,
.error .p-checklist03 input[type="radio"]+label,
.error .p-checklist03 input[type="checkbox"]+label,
.error .p-checklist04 input[type="radio"]+label,
.error .p-checklist04 input[type="checkbox"]+label,
.error .p-checklist05 input[type="radio"]+label,
.error .p-checklist05 input[type="checkbox"]+label,
.error .p-checklist06 input[type="radio"]+label,
.error .p-checklist06 input[type="checkbox"]+label
{
  border-color: var(--color-accent01);
  background: #fff1f1;
}



/*error後の入力済み状態*/
.error .is-filled input[type="text"]{
  border-color: var(--color-gray02) !important;
  background: #fff;
}
.error .is-filled select{
  border-color: var(--color-gray02) !important;
  background: #fff;
}
.error .is-filled textarea{
  border-color: var(--color-gray02) !important;
  background: #fff;
}

.error .is-filled .p-checklist input[type="radio"]{
  background-image: url(/img/common/ico_radio01.svg);
}
.error .is-filled .p-checklist input[type="radio"]:checked{
  background-image: url(/img/common/ico_radio01_h.svg);
}

.error .is-filled .p-checklist input[type="checkbox"]{
  background-image: url(/img/common/ico_checkbox01.svg);
}
.error .is-filled .p-checklist input[type="checkbox"]:checked{
  background-image: url(/img/common/ico_checkbox01_h.svg);
}

.error .is-filled .p-checklist02 input[type="radio"]+label,
.error .is-filled .p-checklist02 input[type="checkbox"]+label,
.error .is-filled .p-checklist03 input[type="radio"]+label,
.error .is-filled .p-checklist03 input[type="checkbox"]+label,
.error .is-filled .p-checklist04 input[type="radio"]+label,
.error .is-filled .p-checklist04 input[type="checkbox"]+label,
.error .is-filled .p-checklist05 input[type="radio"]+label,
.error .is-filled .p-checklist05 input[type="checkbox"]+label,
.error .is-filled .p-checklist06 input[type="radio"]+label,
.error .is-filled .p-checklist06 input[type="checkbox"]+label
{
  border-color: var(--color-gray02);
  background: var(--color-white);
}
.error .is-filled .p-checklist02 input[type="radio"]:checked+label,
.error .is-filled .p-checklist02 input[type="checkbox"]:checked+label,
.error .is-filled .p-checklist03 input[type="radio"]:checked+label,
.error .is-filled .p-checklist03 input[type="checkbox"]:checked+label,
.error .is-filled .p-checklist04 input[type="radio"]:checked+label,
.error .is-filled .p-checklist04 input[type="checkbox"]:checked+label,
.error .is-filled .p-checklist05 input[type="radio"]:checked+label,
.error .is-filled .p-checklist05 input[type="checkbox"]:checked+label,
.error .is-filled .p-checklist06 input[type="radio"]:checked+label,
.error .is-filled .p-checklist06 input[type="checkbox"]:checked+label
{
  border-color: var(--color-primary);
  background: var(--color-lightblue);
}


/*-------------------------------------------*/

.p-contact--step{
  display: flex;
  gap: 32px;
  padding: 0;
}
.p-contact--step__list{
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  flex: 1;
}
.p-contact--step__list:not(:last-child)::before{
  content: "";
  background: url(/img/common/ico_c_arrow01.svg) center center no-repeat;
  width: 16px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -10px;
  margin: auto;
  transform: translateX(100%);
}
.p-contact--step__list .il{
  position: absolute;
  top: 10px;
  right: 0;
  width: 100px;
}
.p-contact--step__list .title{
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}
.p-contact--step__list .title .nm{
  width: 100%;
  display: block;
  font-weight: 700;
  font-size: 20px;
  line-height: calc(1em + 8px);
  color: var(--color-primary);
  text-shadow:
    2px  2px 1px #ffffff,
  -2px  2px 1px #ffffff,
    2px -2px 1px #ffffff,
  -2px -2px 1px #ffffff,
    2px  0px 1px #ffffff,
    0px  2px 1px #ffffff,
  -2px  0px 1px #ffffff,
    0px -2px 1px #ffffff;
}
.p-contact--step__list .title .tx{
  width: 100%;
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: calc(1em + 8px);
  min-height: 52px;
  text-shadow:
    2px  2px 1px #ffffff,
  -2px  2px 1px #ffffff,
    2px -2px 1px #ffffff,
  -2px -2px 1px #ffffff,
    2px  0px 1px #ffffff,
    0px  2px 1px #ffffff,
  -2px  0px 1px #ffffff,
    0px -2px 1px #ffffff;
}
@media screen and (max-width: 768px) {
  .p-contact--step{
    flex-direction: column;
  }
  .p-contact--step__list{
    gap: 4px;
    padding: 12px 20px;
  }
  .p-contact--step__list:not(:last-child)::before{
    top: initial;
    bottom: -8px;
    left: 50%;
    right: auto;
    margin: auto;
    transform: initial;
    transform: translateY(100%) rotate(90deg);
  }
  .p-contact--step__list .il{
    position: absolute;
    top: 50%;
    bottom: 50%;
    left: initial;
    right: 20px;
    margin: auto;
    width: 70px;
    opacity: 0.2;
    max-block-size:initial;
    /* display: none; */
  }
  .p-contact--step__list .title{
    flex-direction: row;
    gap: 8px;
  }
  .p-contact--step__list .title .nm{
    width: initial;
    font-size: 16px;
  }
  .p-contact--step__list .title .tx{
    width: initial;
    min-height: initial;
    flex: 1;
    font-size: 16px;
  }
  .p-contact--step__list .title .tx br{
    display: none;
  }
  .p-contact--step__list .text{
    position: relative;
    font-size: 14px;
    line-height: calc(1em + 8px);
    text-shadow:
      2px  2px 1px #ffffff,
    -2px  2px 1px #ffffff,
      2px -2px 1px #ffffff,
    -2px -2px 1px #ffffff,
      2px  0px 1px #ffffff,
      0px  2px 1px #ffffff,
    -2px  0px 1px #ffffff,
      0px -2px 1px #ffffff;
  }
}

/*-------------------------------------------*/
/*====================================================================
Component……再利用可能な小さな単位のモジュールを管理（ボタンなど）
====================================================================*/
/*-------------------------------------------*/
.c-btn01{
  background: var(--color-white);
  border: 1px solid var(--color-primary);
  color: var(--color-primary) !important;
  text-decoration: none !important;
  font-weight: 700;
  padding: 8px 52px;
  display: inline-block;
  text-align: center;
  border-radius: 60px;
  position: relative;
  line-height: calc(1em + 8px);
}
.c-btn01::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url(/img/common/ico_c_arrow01.svg) center center / 100% no-repeat;
}
@media screen and (max-width: 768px) {
  .c-btn01{
    padding: 8px 32px 8px 20px;
    text-align: left;
  }
  .c-btn01::before{
    right: 8px;
    width: 20px;
    height: 20px;
  }
}
.c-btn02{
  background: var(--color-white);
  color: var(--color-primary) !important;
  text-decoration: none !important;
  padding: 1em calc(2em) 1em 1em;
  display: inline-block;
  text-align: center;
  border: 1px solid var(--color-primary);
  border-radius: 10px;
  position: relative;
  font-weight: 700;
  line-height: 1.4;
}
.c-btn02::before{
  content: "";
  border: 2px solid var(--color-primary);
  border-top: none;
  border-left: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1em;
  margin: auto;
  width: calc(1em - 5px);
  max-width: 14px;
  height: calc(1em - 5px);
  max-height: 14px;
  transform: rotate(-45deg);
}
.c-btn03{
  background: var(--color-accent02);
  border: 1px solid var(--color-primary);
  color: var(--color-black) !important;
  text-decoration: none !important;
  font-weight: 700;
  padding: 16px 52px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 60px;
  position: relative;
  line-height: calc(1em + 8px);
  transition: background-color .3s , transform .2s;
}
.c-btn03::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 32px;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url(/img/common/ico_c_arrow01.svg) center center / 100% no-repeat;
}
.c-btn03 > .txt01{
  font-size: 20px;
  line-height: calc(1em + 8px);
}
.c-btn03 > .txt02{
  font-size: 36px;
  line-height: calc(1em + 8px);
}
.c-btn03:hover{
  transform: translateY(4px);
  background: #d5d900;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .c-btn03{
    padding: 8px 32px 8px 20px;
  }
  .c-btn03 > .txt01{
    font-size: 16px;
    line-height: calc(1em + 8px);
  }
  .c-btn03 > .txt02{
    font-size: 24px;
    line-height: calc(1em + 8px);
}
  .c-btn03::before{
    right: 16px;
    width: 20px;
    height: 20px;
  }
}
.c-btn04{
  border-radius: 60px;
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  color: var(--color-primary) !important;
  padding:20px 52px;
  cursor: pointer;
  font-size: 20px;
  line-height: calc(1em + 8px);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: background-color .3s , transform .2s;
  text-align: center;
  text-decoration: none !important;
}
.c-btn04:hover{
  transform: translateY(4px);
  background: var(--color-background);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .c-btn04{
    font-size: 16px;
    padding: 12px 32px 12px 20px;
    min-width: 200px;
  }
}
.c-btn05{
  border-radius: 60px;
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  color: var(--color-white) !important;
  padding:20px 52px;
  cursor: pointer;
  font-size: 20px;
  line-height: calc(1em + 8px);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: background-color .3s , transform .2s;
  text-align: center;
  text-decoration: none !important;
}
.c-btn05:hover{
  transform: translateY(4px);
  background: var(--color-tertiary);
  border: 2px solid var(--color-tertiary);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .c-btn05{
    font-size: 16px;
    padding: 12px 32px 12px 20px;
    min-width: 200px;
  }
}
.c-formbtn01{
  border-radius: 60px;
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding:20px 52px;
  cursor: pointer;
  min-width: 300px;
  font-size: 24px;
  line-height: calc(1em + 8px);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: background-color .3s , transform .2s;
  text-align: center;
  text-decoration: none !important;
}
.c-formbtn01.gray{
  background: var(--color-gray01);
}
.c-formbtn01 .icon{
  height: 1em;
}
.c-formbtn01.arrow::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url(/img/common/ico_c_arrow01_w.svg) center center / 100% 100% no-repeat;
}
.c-formbtn01.illust{
  padding-right: 100px;
  padding-left: 100px;
}
.c-formbtn01.illust > .img{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  margin: auto;
  width: 80px;
  max-block-size:initial;
  transform: translateY(-16px);
}
.c-formbtn01:hover{
  transform: translateY(4px);
  background: var(--color-tertiary);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .c-formbtn01{
    font-size: 16px;
    padding: 12px 32px 12px 20px;
    min-width: 200px;
  }
  .c-formbtn01.arrow::after{
    right: 8px;
    width: 20px;
    height: 20px;
  }
  .c-formbtn01.illust{
    padding-right: 32px;
    padding-left: 32px;
  }
  .c-formbtn01.illust > .img{
    display: none;
  }
}
.c-formbtn02{
  border-radius: 60px;
  background: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding:16px 52px;
  cursor: pointer;
  min-width: 240px;
  font-size: 20px;
  line-height: calc(1em + 8px);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: background-color .3s , transform .2s;
  text-align: center;
  text-decoration: none !important;
}
.c-formbtn02 .icon{
  height: 1em;
}
.c-formbtn02.arrow::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url(/img/common/ico_c_arrow01.svg) center center / 100% 100% no-repeat;
}
.c-formbtn02:hover{
  transform: translateY(4px);
  background: var(--color-background);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .c-formbtn02{
    font-size: 16px;
    padding: 8px 32px 8px 20px;
    text-align: left;
  }
  .c-formbtn02.arrow::after{
    right: 8px;
    width: 20px;
    height: 20px;
  }
}
.c-formbtn03{
  border-radius: 60px;
  background: var(--color-white);
  color: var(--color-primary);
  padding:16px 52px;
  cursor: pointer;
  min-width: 240px;
  font-size: 20px;
  line-height: calc(1em + 8px);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: background-color .3s , transform .2s;
  text-align: center;
  text-decoration: none !important;
}
.c-formbtn03 .icon{
  height: 1em;
}
.c-formbtn03.arrow::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url(/img/common/ico_c_arrow01.svg) center center / 100% 100% no-repeat;
}
.c-formbtn03:hover{
  transform: translateY(4px);
  background: var(--color-background);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .c-formbtn03{
    font-size: 16px;
    padding: 8px 32px 8px 20px;
  }
  .c-formbtn03.arrow::after{
    right: 16px;
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 560px) {
  .c-formbtn03{
    font-size: 14px;
  }
}

.c-formbtn04{
  border-radius: 4px;
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding:8px 16px;
  cursor: pointer;
  font-size: 16px;
  line-height: calc(1em + 8px);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: background-color .3s , transform .2s;
  text-align: center;
  text-decoration: none !important;
  white-space: nowrap;
}
.c-formbtn04:hover{
  transform: translateY(2px);
  background: var(--color-tertiary);
  opacity: 1;
}

/*----------------------------------------*/
.c-box01{
  padding: 1em;
  border: 1px solid var(--color-gray01);
}
.c-box01 > p{
  margin: 0;
}
/*----------------------------------------*/
.c-title01{
  text-align: center;
  position: relative;
  border-bottom: 2px solid var(--color-primary);
  padding: 0 140px var(--rp20) 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 28px;
  line-height: calc(1em + 12px);
  font-weight: 700;
  z-index: 0;
}
.c-title01 > .icon{
  width: 36px;
  min-width: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-title01 > .left{
  position: absolute;
  bottom: 0;
  left: -20px;
  z-index: -1;
  display: flex;
  align-items: center;
}
.c-title01 > .right{
  position: absolute;
  bottom: 0;
  right: -20px;
  z-index: -1;
  display: flex;
  align-items: center;
}
.c-title01 > .left > img,
.c-title01 > .right > img{
  max-block-size: initial;
}
.c-title01 > .icon > img{
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-title01{
    flex-direction: column;
    padding: 0 100px var(--rp20) 100px;
    font-size: 24px;
  }
  .c-title01{
    padding: 0 0 var(--rp20) 0;
  }
  .c-title01:has( > .left),
  .c-title01:has( > .right){
    padding-top: 80px;
  }
  .c-title01 > .left{
    width: 80px;
    top: 0;
    left: 0;
    right: 0;
    bottom: initial;
    margin: auto;
    transform: translateY(0);
  }
  .c-title01 > .right{
    width: 80px;
    top: 0;
    left: 0;
    right: 0;
    bottom: initial;
    margin: auto;
    transform: translateY(0);
  }
  .c-title01 .left + .right,
  .c-title01 .right + .left
  {
    transform: translateY(0) translateX(50%);
  }
  .c-title01 .left:has(+.right),
  .c-title01 .right:has(+.left){
    transform: translateY(0) translateX(-50%);
  }
}
.c-title_clear{
  text-align: center;
  color: #4D9900;
  text-decoration: underline;
}
.c-title_unclear{
  text-align: center;
  color: #FF605F;
  text-decoration: underline;
}
.c-title02{
  display: flex;
  justify-content: center;
  gap: 8px;
}
.c-heading01{
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 24px;
  line-height: calc(1em + 12px);
  font-weight: 700;
  color: var(--color-primary);
}
.c-heading01 > .inner{
  position: relative;
  padding: 0 32px;
}
.c-heading01 > .inner::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 12px;
  height: 28px;
  background: url(/img/img_head_fu02.svg) center center / 100% 100% no-repeat;
}
.c-heading01 > .inner::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 12px;
  height: 28px;
  background: url(/img/img_head_fu02.svg) center center / 100% 100% no-repeat;
  transform: scale(-1,1);
}
@media screen and (max-width: 768px) {
  .c-heading01{
    font-size: 20px;
  }
  .c-heading01 > .inner{
    padding: 0 20px;
  }
}
.c-heading02{
  display: flex;
  justify-content: center;
  text-align: center;
  background: var(--color-background);
  padding: 12px 16px;
  font-size: 24px;
  line-height: calc(1em + 12px);
  font-weight: 700;
  color: var(--color-primary);
}
@media screen and (max-width: 768px) {
  .c-heading02{
    font-size: 20px;
  }
}
/*----------------------------------------*/
.c-ul__disc {
  list-style-type: none;
}
.c-ul__disc > li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1em;
}
.c-ul__disc > li:before {
  position: absolute;
  top: 0.7em;
  left: 0;
  content: "";
  background: var(--color-black);
  border-radius: 10px;
  width: 0.5em;
  height: 0.5em;
}
.c-ul__number {
  list-style: decimal;
  padding-left: 1em;
}
.c-ul__number > li {
  margin-bottom: 0.5em;
}
.c-ul__number > li::marker {
  color: var(--color-black);
}
/*----------------------------------------*/
.c-table01 th,
.c-table01 td{
  border: 1px solid var(--color-gray02);
  padding: .5em;
}
.c-table01 th{
  background: var(--color-gray03);
}
/*-------------------------------------------*/
.c-notes{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-notes p{
  margin: 0;
  font-size: 14px;
  line-height: calc(1em + 8px);
}
@media screen and (max-width: 560px) {
  .c-notes p{
    font-size: 12px;
  }
}
/*-------------------------------------------*/
.p-privacymark__area {
  display: flex;
  padding: var(--rp20);
  justify-content: center;
  gap: 16px;
  align-items: center;
  border: 2px solid var(--color-primary);
  background: var(--color-white);
  border-radius: 8px;
}
.p-privacymark__area > p {
  margin: 0;
}
@media screen and (max-width: 560px) {
  .p-privacymark__area {
    flex-direction: column;
    gap: 8px;
  }
  .p-privacymark__area > p {
    font-size: 14px;
  }
}
.p-consent{
  background: var(--color-lightblue);
  padding: var(--rp20);
  border-radius: 8px;
}
.p-consent .input__area{
  justify-content: center;
}

.c-loading01::before{
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: url(/img/common/ico_loading.svg) center center / 100% auto no-repeat;
  margin: auto;
}



/*====================================================================
.bundle…一括で装飾を変える
====================================================================*/
.b-campaign.l-section01.l-section__bg01{
  background-color: #FEFFDE;
  border-color: var(--color-orange);
}
.b-campaign .c-title01{
  border-color: var(--color-orange);
}
.b-campaign .c-heading02{
  background-color: #FFC231;
  color: var(--color-black);
}
.b-campaign .p-checklist02 input[type="radio"]:checked+label,
.b-campaign .p-checklist02 input[type="checkbox"]:checked+label,
.b-campaign .p-checklist02 input[type="radio"]+label:hover,
.b-campaign .p-checklist02 input[type="checkbox"]+label:hover,
.b-campaign .p-checklist03 input[type="radio"]:checked+label,
.b-campaign .p-checklist03 input[type="checkbox"]:checked+label,
.b-campaign .p-checklist03 input[type="radio"]+label:hover,
.b-campaign .p-checklist03 input[type="checkbox"]+label:hover,
.b-campaign .p-checklist04 input[type="radio"]:checked+label,
.b-campaign .p-checklist04 input[type="checkbox"]:checked+label,
.b-campaign .p-checklist04 input[type="radio"]+label:hover,
.b-campaign .p-checklist04 input[type="checkbox"]+label:hover,
.b-campaign .p-checklist05 input[type="radio"]:checked+label,
.b-campaign .p-checklist05 input[type="checkbox"]:checked+label,
.b-campaign .p-checklist05 input[type="radio"]+label:hover,
.b-campaign .p-checklist05 input[type="checkbox"]+label:hover,
.b-campaign .p-checklist06 input[type="radio"]:checked+label,
.b-campaign .p-checklist06 input[type="checkbox"]:checked+label,
.b-campaign .p-checklist06 input[type="radio"]+label:hover,
.b-campaign .p-checklist06 input[type="checkbox"]+label:hover{
  background-color: #FFF376;
  border-color: var(--color-orange);
}
/*-------------------------------------------*/
/*====================================================================
.article__area…記事部分の装飾まとめ
====================================================================*/
.article__area a:not([class]):link{
  color: var(--color-primary);
  font-weight: 700;
}
.article__area a:not([class]):visited{
  color: var(--color-primary);
  font-weight: 700;
}
.article__area img:not([class]){
  height: initial !important;
}
.article__area a:not([class]):link{
  color: var(--color-primary);
}
.article__area a:not([class]):visited{
  color: var(--color-primary);
}
.article__area h1:not([class]),
.article__area h2:not([class]){
  margin: var(--margin-big) 0 60px;
  font-size: 2.2em;
  font-weight: 900;
  position: relative;
}
.article__area h3:not([class]){
  margin: var(--margin-middle) 0 1em;
  font-size: 1.5em;
  font-weight: 700;
  padding-left: .5em;
  position: relative;
  border-left: 6px solid var(--color-primary);
}
.article__area h4:not([class]){
  font-size: 1.2em;
  font-weight: 700;
  padding-bottom: .5em;
  margin: var(--margin-middle) 0 1em;
  position: relative;
}
.article__area h4:not([class])::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--color-secondary);
}
.article__area h4:not([class])::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 30%;
  background: var(--color-primary);
}
.article__area h5:not([class]){
  font-size: 1.2em;
  font-weight: 700;
  margin: var(--margin-middle) 0 1em;
  position: relative;
}
.article__area h5:not([class]) > span{
  display: inline-block;
  border: 1px solid var(--color-primary);
  padding: 0.5em 1em;
}
.article__area h6:not([class]){
  font-size: 1.2em;
  font-weight: 700;
  margin: var(--margin-middle) 0 1em;
  position: relative;
  padding: 0.5em 1em;
  background: var(--color-tertiary);
}
.article__area h1:first-child,
.article__area h2:first-child{
  margin-top: 0;
}
.article__area h1:not([class]) + h1:not([class]),
.article__area h1:not([class]) + h2:not([class]),
.article__area h1:not([class]) + h3:not([class]),
.article__area h1:not([class]) + h4:not([class]),
.article__area h1:not([class]) + h5:not([class]),
.article__area h1:not([class]) + h6:not([class]),
.article__area h2:not([class]) + h2:not([class]),
.article__area h2:not([class]) + h3:not([class]),
.article__area h2:not([class]) + h4:not([class]),
.article__area h2:not([class]) + h5:not([class]),
.article__area h2:not([class]) + h6:not([class])
{margin-top: 40px;}
.article__area h3:not([class]) + h3:not([class]),
.article__area h3:not([class]) + h4:not([class]),
.article__area h3:not([class]) + h5:not([class]),
.article__area h3:not([class]) + h6:not([class]),
.article__area h4:not([class]) + h4:not([class]),
.article__area h4:not([class]) + h5:not([class]),
.article__area h4:not([class]) + h6:not([class]),
.article__area h5:not([class]) + h5:not([class]),
.article__area h5:not([class]) + h6:not([class])
{margin-top: 40px;}
@media screen and (max-width: 768px) {
  .article__area h1:first-child,
  .article__area h2:first-child{
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .article__area h1:not([class]) br,
  .article__area h2:not([class]) br,
  .article__area h3:not([class]) br,
  .article__area h4:not([class]) br,
  .article__area h5:not([class]) br,
  .article__area h6:not([class]) br{
    display: none;
  }
  .article__area h1:not([class]),
  .article__area h2:not([class]){
    font-size: 2rem;
    line-height: 1.5;
  }
  .article__area h3:not([class]){
    line-height: 2;
  }
  .article__area h3:not([class]) > span{
    font-size: 1.6rem;
  }
  .article__area h4:not([class]){
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .article__area h5:not([class]){
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .article__area h6:not([class]){
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
.article__area ul:not([class]){
  list-style-type: none;
  margin: var(--margin-small) 0 var(--margin-small) 0.5em;
}
.article__area ul:not([class]) > li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1em;
}
.article__area ul:not([class]) > li:before {
  position: absolute;
  top: 0.75em;
  left: 0;
  content: "";
  background: var(--color-primary);
  width: 6px;
  height: 6px;
  border-radius: 3px;
}
.article__area ul.checklist{
  list-style-type: none;
  margin: var(--margin-small) 0 var(--margin-small) 0.5em;
}
.article__area ul.checklist > li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1em;
}
.article__area ul.checklist > li:before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(315deg);
}
.article__area ol:not([class]) {
  list-style: decimal;
  margin: var(--margin-small) 0 var(--margin-small) 0.5em;
  padding-left: 1em;
}
.article__area ol:not([class]) > li {
  margin-bottom: 0.5em;
}
.article__area ol:not([class]) > li::marker {
  font-weight: 700;
  color: var(--color-primary);
}
.article__area ol:not([class]) > li::before {
  color: var(--color-black);
}
.article__area table:not([class]) {
  width: 100%;
}
.article__area table:not([class]) th,
.article__area table:not([class]) td {
  border: 1px solid var(--color-gray02);
  padding: .5em;
}
.article__area table:not([class]) th{
  background: var(--color-gray03);
  width: 0;
  white-space: nowrap;
}
.article__area table:not([class]) th + th,
.article__area table:not([class]) th:has(+ th){
  background: var(--color-gray03);
  width: auto;
  white-space:initial;
}
/*====================================================================
Utility…調整のための便利クラスなどを管理
====================================================================*/
.u-left {  text-align: left !important;}
.u-right {  text-align: right !important;}
.u-center {  text-align: center;}
.u-center--pc {  text-align: center;}
@media screen and (max-width: 768px) {
	.u-center--pc {  text-align: left;}
	.u-center--sp {  text-align: center;}
}
@media screen and (max-width: 768px) {
  .u-spbr{
    display: none;
  }
}
.u-lh10{line-height: 1 !important;}
.u-lh12{line-height: 1.2 !important;}
.u-lh14{line-height: 1.4 !important;}
.u-lh16{line-height: 1.6 !important;}
.u-lh18{line-height: 1.8 !important;}
.u-lh20{line-height: 2 !important;}
/*----------------------------------------*/
.u-fnt--bold{font-weight: bold !important;}
.u-fnt--w01{font-weight: 100 !important;}
.u-fnt--w02{font-weight: 200 !important;}
.u-fnt--w03{font-weight: 300 !important;}
.u-fnt--w04{font-weight: 400 !important;}
.u-fnt--w05{font-weight: 500 !important;}
.u-fnt--w06{font-weight: 600 !important;}
.u-fnt--w07{font-weight: 700 !important;}
.u-fnt--w08{font-weight: 800 !important;}
.u-fnt--w09{font-weight: 900 !important;}
/*----------------------------------------*/
.u-fnt--size14{
  font-size: 14px;
  line-height: calc(1em + 8px);
}
.u-fnt--size14b{
  font-size: 14px;
  line-height: calc(1em + 8px);
  font-weight: 700;
}
.u-fnt--size16{
  font-size: 16px;
  line-height: calc(1em + 8px);
}
.u-fnt--size16b{
  font-size: 16px;
  line-height: calc(1em + 8px);
  font-weight: 700;
}
.u-fnt--size18{
  font-size: 18px;
  line-height: calc(1em + 8px);
}
.u-fnt--size18b{
  font-size: 18px;
  line-height: calc(1em + 8px);
  font-weight: 700;
}
.u-fnt--size20{
  font-size: 20px;
  line-height: calc(1em + 8px);
}
.u-fnt--size20b{
  font-size: 20px;
  line-height: calc(1em + 8px);
  font-weight: 700;
}
.u-fnt--size24{
  font-size: 24px;
  line-height: calc(1em + 12px);
}
.u-fnt--size24b{
  font-size: 24px;
  line-height: calc(1em + 12px);
  font-weight: 700;
}
.u-fnt--size28{
  font-size: 28px;
  line-height: calc(1em + 12px);
}
.u-fnt--size28b{
  font-size: 28px;
  line-height: calc(1em + 12px);
  font-weight: 700;
}
.u-fnt--size32{
  font-size: 32px;
  line-height: calc(1em + 12px);
}
.u-fnt--size32b{
  font-size: 32px;
  line-height: calc(1em + 12px);
  font-weight: 700;
}
.u-fnt--size36b{
  font-size: 36px;
  line-height: calc(1em + 16px);
  font-weight: 700;
}
.u-fnt--size36{
  font-size: 36px;
  line-height: calc(1em + 16px);
}
.u-fnt--size40{
  font-size: 40px;
  line-height: calc(1em + 16px);
}
.u-fnt--size40b{
  font-size: 40px;
  line-height: calc(1em + 16px);
  font-weight: 700;
}
@media screen and (max-width: 560px) {
.u-fnt--size14{
  font-size: 14px;
  line-height: calc(1em + 8px);
}
.u-fnt--size14b{
  font-size: 14px;
  line-height: calc(1em + 8px);
  font-weight: 700;
}
.u-fnt--size16{
  font-size: 16px;
  line-height: calc(1em + 8px);
}
.u-fnt--size16b{
  font-size: 16px;
  line-height: calc(1em + 8px);
  font-weight: 700;
}
.u-fnt--size18{
  font-size: 18px;
  line-height: calc(1em + 8px);
}
.u-fnt--size18b{
  font-size: 18px;
  line-height: calc(1em + 8px);
  font-weight: 700;
}
.u-fnt--size20{
  font-size: 20px;
  line-height: calc(1em + 8px);
}
.u-fnt--size20b{
  font-size: 20px;
  line-height: calc(1em + 8px);
  font-weight: 700;
}
.u-fnt--size24{
  font-size: 20px;
  line-height: calc(1em + 12px);
}
.u-fnt--size24b{
  font-size: 20px;
  line-height: calc(1em + 12px);
  font-weight: 700;
}
.u-fnt--size28{
  font-size: 24px;
  line-height: calc(1em + 12px);
}
.u-fnt--size28b{
  font-size: 24px;
  line-height: calc(1em + 12px);
  font-weight: 700;
}
.u-fnt--size32{
  font-size: 28px;
  line-height: calc(1em + 12px);
}
.u-fnt--size32b{
  font-size: 28px;
  line-height: calc(1em + 12px);
  font-weight: 700;
}
.u-fnt--size36b{
  font-size: 32px;
  line-height: calc(1em + 12px);
  font-weight: 700;
}
.u-fnt--size36{
  font-size: 32px;
  line-height: calc(1em + 12px);
}
.u-fnt--size40{
  font-size: 36px;
  line-height: calc(1em + 16px);
}
.u-fnt--size40b{
  font-size: 36px;
  line-height: calc(1em + 16px);
  font-weight: 700;
}
}
/*----------------------------------------*/
.u-fnt--ssss {font-size:0.6em;}
.u-fnt--sss {font-size:0.7em;}
.u-fnt--ss {font-size:0.8em;}
.u-fnt--s {font-size:0.9em;}
.u-fnt--l {font-size:1.1em;}
.u-fnt--ll {font-size:1.2em;}
.u-fnt--lll {font-size:1.4em;}
.u-fnt--llll {font-size:1.6em;}
.u-fnt--lllll {font-size:1.8em;}
.u-fnt--llllll {font-size:2em;}
.u-fnt--lllllll {font-size:2.2em;}
.u-fnt--llllllll {font-size:2.4em;}
.u-fnt--lllllllll {font-size:3em;}
/*----------------------------------------*/
.u-fntcolor--main1 {color: var(--color-primary) !important;}
.u-fntcolor--sub1 {color: #9bd5cc !important;}
.u-fntcolor--red {color: #e41010 !important;}
.u-fntcolor--orange {color: #e48510 !important;}
.u-fntcolor--yellow {color: #e4cf10 !important;}
.u-fntcolor--green {color: #0f9a00 !important;}
.u-fntcolor--blue {color: #1041e4 !important;}
.u-fntcolor--purple {color: #840bc0 !important;}
.u-fntcolor--black {color: var(--color-black) !important;}
.u-fntcolor--white {color: var(--color-white) !important;}
.u-fntcolor--accent01 {color: var(--color-accent01) !important;}
.u-fntcolor--accent02 {color: var(--color-accent02) !important;}
.u-fntcolor--accent03 {color: var(--color-accent03) !important;}
/*----------------------------------------*/
.u-m--layout01  {margin-top: var(--margin-big) !important;}
.u-m--layout02  {margin-top: var(--margin-middle) !important;}
.u-m--layout03  {margin-top: var(--margin-small) !important;}
.u-m10  {margin: 10px !important;}
.u-m20  {margin: 20px !important;}
.u-m30  {margin: 30px !important;}
.u-m40  {margin: 40px !important;}
.u-m50  {margin: 50px !important;}
.u-m60  {margin: 60px !important;}
.u-m70  {margin: 70px !important;}
.u-m80  {margin: 80px !important;}
.u-m90  {margin: 90px !important;}
.u-m100  {margin: 100px !important;}
.u-mt0  {margin-top: 0 !important;}
.u-mt10 {margin-top: 10px !important;}
.u-mt20 {margin-top: 20px !important;}
.u-mt30 {margin-top: 30px !important;}
.u-mt40 {margin-top: 40px !important;}
.u-mt50 {margin-top: 50px !important;}
.u-mt60 {margin-top: 60px !important;}
.u-mt70 {margin-top: 70px !important;}
.u-mt80 {margin-top: 80px !important;}
.u-mt90 {margin-top: 90px !important;}
.u-mt100 {margin-top: 100px !important;}
.u-mtrp20 {margin-top: var(--rp20) !important;}
.u-mtrp40 {margin-top: var(--rp40) !important;}
.u-mtrp60 {margin-top: var(--rp60) !important;}
.u-mtrp80 {margin-top: var(--rp80) !important;}
.u-mtrp100 {margin-top: var(--rp100) !important;}
.u-mtrp120 {margin-top: var(--rp120) !important;}
.u-mbrp20 {margin-bottom: var(--rp20) !important;}
.u-mbrp40 {margin-bottom: var(--rp40) !important;}
.u-mbrp60 {margin-bottom: var(--rp60) !important;}
.u-mbrp80 {margin-bottom: var(--rp80) !important;}
.u-mbrp100 {margin-bottom: var(--rp100) !important;}
.u-mbrp120 {margin-bottom: var(--rp120) !important;}
.u-mb0  {margin-bottom: 0 !important;}
.u-mb10 {margin-bottom: 10px !important;}
.u-mb20 {margin-bottom: 20px !important;}
.u-mb30 {margin-bottom: 20px !important;}
.u-mb40 {margin-bottom: 40px !important;}
.u-mb50 {margin-bottom: 50px !important;}
.u-mb60 {margin-bottom: 60px !important;}
.u-mb70 {margin-bottom: 70px !important;}
.u-mb80 {margin-bottom: 80px !important;}
.u-mb90 {margin-bottom: 90px !important;}
.u-mb100 {margin-bottom: 100px !important;}
.u-ml0  {margin-left: 0 !important;}
.u-ml10 {margin-left: 10px !important;}
.u-ml20 {margin-left: 20px !important;}
.u-ml30 {margin-left: 30px !important;}
.u-ml40 {margin-left: 40px !important;}
.u-mr0  {margin-right: 0 !important;}
.u-mr10 {margin-right: 10px !important;}
.u-mr20 {margin-right: 20px !important;}
.u-mr30 {margin-right: 30px !important;}
.u-mr40 {margin-right: 40px !important;}
.u-mauto {margin: auto !important;}
.u-m0   {margin: 0 !important;}
/*----------------------------------------*/
.u-p10  {padding: 10px !important;}
.u-p20  {padding: 20px !important;}
.u-p30  {padding: 30px !important;}
.u-p40  {padding: 40px !important;}
.u-p50  {padding: 50px !important;}
.u-p60  {padding: 60px !important;}
.u-p70  {padding: 70px !important;}
.u-p80  {padding: 80px !important;}
.u-p90  {padding: 90px !important;}
.u-p100  {padding: 100px !important;}
.u-pt0  {padding-top: 0 !important;}
.u-pt10 {padding-top: 10px !important;}
.u-pt20 {padding-top: 20px !important;}
.u-pt40 {padding-top: 40px !important;}
.u-pt50 {padding-top: 50px !important;}
.u-pt60 {padding-top: 60px !important;}
.u-pt70 {padding-top: 70px !important;}
.u-pt80 {padding-top: 80px !important;}
.u-pt90 {padding-top: 90px !important;}
.u-pt100 {padding-top: 100px !important;}
.u-pb0  {padding-bottom: 0 !important;}
.u-pb10 {padding-bottom: 10px !important;}
.u-pb20 {padding-bottom: 20px !important;}
.u-pb40 {padding-bottom: 40px !important;}
.u-pb50 {padding-bottom: 50px !important;}
.u-pb60 {padding-bottom: 60px !important;}
.u-pb70 {padding-bottom: 70px !important;}
.u-pb80 {padding-bottom: 80px !important;}
.u-pb90 {padding-bottom: 90px !important;}
.u-pb100 {padding-bottom: 100px !important;}
.u-pl0  {padding-left: 0 !important;}
.u-pl10 {padding-left: 10px !important;}
.u-pl20 {padding-left: 20px !important;}
.u-pl40 {padding-left: 40px !important;}
.u-pr0  {padding-right: 0 !important;}
.u-pr10 {padding-right: 10px !important;}
.u-pr20 {padding-right: 20px !important;}
.u-pr40 {padding-right: 40px !important;}
.u-p0   {padding: 0 !important;}
/*----------------------------------------*/
.u-w100p {  width: 100% !important;}
.u-wauto {  width: auto !important;}
.u-wmx320 {  width: 100% !important;max-width: 320px !important;}
.u-wmx560 {  width: 100% !important;max-width: 560px !important;}
/*----------------------------------------*/
.u-kadomaru01{border-radius: 10px;}
.u-kadomaru02{border-radius: 20px;}
/*----------------------------------------*/
.u-border01{border:1px solid var(--color-primary)}
.u-border02{border:2px solid var(--color-primary)}
.u-bordertop01{border-top:1px solid var(--color-primary)}
.u-borderbottom01{border-bottom:1px solid var(--color-primary)}
/*----------------------------------------*/
.u-nolink{pointer-events: none;}
@media screen and (max-width: 768px) {
.u-sp_none{display: none;}
}
.u-indent01{
  text-indent: -1em;
  padding-left: 1em;
}
.u-wmx620{
  max-width: 620px;
}
.u-wmx580{
  max-width: 580px;
}
/*====================================================================
animation
====================================================================*/
/*順々に表示する*/
@keyframes Display__order {
	0% { opacity: 0; }
	100% { opacity: 1;filter: blur(0); transform: translateY(0);}
}
.animeTrigger.display__order .order1,
.animeTrigger.display__order .order2,
.animeTrigger.display__order .order3,
.animeTrigger.display__order .order4,
.animeTrigger.display__order .order5,
.animeTrigger.display__order .order6,
.animeTrigger.display__order .order7,
.animeTrigger.display__order .order8,
.animeTrigger.display__order .order9,
.animeTrigger.display__order .order10{
  opacity: 0;
  filter: blur(30px);
  transform: translateY(100px);
}
.animeTrigger.display__order.animation .order1{
	animation: Display__order 1.2s ease .5s 1 forwards;
}
.animeTrigger.display__order.animation .order2{
	animation: Display__order 1.2s ease 1s 1 forwards;
}
.animeTrigger.display__order.animation .order3{
	animation: Display__order 1.2s ease 1.5s 1 forwards;
}
.animeTrigger.display__order.animation .order4{
	animation: Display__order 1.2s ease 2s 1 forwards;
}
.animeTrigger.display__order.animation .order5{
	animation: Display__order 1.2s ease 2.5s 1 forwards;
}
.animeTrigger.display__order.animation .order6{
	animation: Display__order 1.2s ease 3s 1 forwards;
}
.animeTrigger.display__order.animation .order7{
	animation: Display__order 1.2s ease 3.5s 1 forwards;
}
.animeTrigger.display__order.animation .order8{
	animation: Display__order 1.2s ease 4s 1 forwards;
}
.animeTrigger.display__order.animation .order9{
	animation: Display__order 1.2s ease 4.5s 1 forwards;
}
.animeTrigger.display__order.animation .order10{
	animation: Display__order 1.2s ease 5s 1 forwards;
}
/*フェード*/
@keyframes fade {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
@-webkit-keyframes fade {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
.animeTrigger.a-fade{
  opacity: 0;
}
.animeTrigger.animation.a-fade{
  animation: fade 1s ease 0s 1 forwards;
}
@keyframes fadeup {
	100% { opacity: 1;transform: translateY(0); }
}
@-webkit-keyframes fadeup {
	100% { opacity: 1;transform: translateY(0); }
}
.animeTrigger.a-fadeup{
  opacity: 0;
  transform: translateY(100px);
}
.animeTrigger.animation.a-fadeup{
  animation: fadeup 1s ease 0.25s 1 forwards;
}
@keyframes top__animation01 {
  50% { opacity: .5;transform: scale(1.05); }
	100% { opacity: 1;transform: scale(1); }
}
@-webkit-keyframes top__animation01 {
  50% { opacity: .5;transform: scale(1.05); }
	100% { opacity: 1;transform: scale(1); }
}
.a-top__animation01{
  opacity: 0;
  transform: scale(0.95);
  animation: top__animation01 1s ease 0s 1 forwards;
}
.a-top__animation02{
  opacity: 0;
  transform: translateY(100px);
  animation: fadeup 1s ease 0.25s 1 forwards;
}
/*====================================================================
print
====================================================================*/
/* 印刷用スタイル */
@media print {
  body, html {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .animeTrigger,
  .a-fadeup,
  .a-fade,
  .a-top__animation01,
  .a-top__animation02 {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/*====================================================================
sp hover / cheacked
====================================================================*/
@media (hover: none) and (pointer: coarse) {
  a:hover,
  button:hover,
  .c-btn01:hover,
  .c-btn02:hover,
  .c-btn03:hover,
  .c-formbtn01:hover,
  .c-formbtn02:hover,
  .c-formbtn03:hover,
  .p-checklist02 input[type="radio"]+label:hover,
  .p-checklist02 input[type="checkbox"]+label:hover,
  .p-checklist03 input[type="radio"]+label:hover,
  .p-checklist03 input[type="checkbox"]+label:hover,
  .p-checklist04 input[type="radio"]+label:hover,
  .p-checklist04 input[type="checkbox"]+label:hover,
  .p-checklist05 input[type="radio"]+label:hover,
  .p-checklist05 input[type="checkbox"]+label:hover,
  .p-checklist06 input[type="radio"]+label:hover,
  .p-checklist06 input[type="checkbox"]+label:hover,
  .l-pagetop a:hover
  {
    opacity: 1 !important;
    text-decoration: none !important;
    transform: none !important;
  }
  .p-checklist02 input[type="radio"]:checked+label,
  .p-checklist02 input[type="checkbox"]:checked+label,
  .p-checklist03 input[type="radio"]:checked+label,
  .p-checklist03 input[type="checkbox"]:checked+label,
  .p-checklist04 input[type="radio"]:checked+label,
  .p-checklist04 input[type="checkbox"]:checked+label,
  .p-checklist05 input[type="radio"]:checked+label,
  .p-checklist05 input[type="checkbox"]:checked+label,
  .p-checklist06 input[type="radio"]:checked+label,
  .p-checklist06 input[type="checkbox"]:checked+label
  {
    background-color: var(--color-lightblue);
    border: 2px solid var(--color-primary);
  }
  .p-checklist02 input[type="radio"]:checked,
  .p-checklist02 input[type="checkbox"]:checked,
  .p-checklist03 input[type="radio"]:checked,
  .p-checklist03 input[type="checkbox"]:checked,
  .p-checklist04 input[type="radio"]:checked,
  .p-checklist04 input[type="checkbox"]:checked,
  .p-checklist05 input[type="radio"]:checked,
  .p-checklist05 input[type="checkbox"]:checked,
  .p-checklist06 input[type="radio"]:checked,
  .p-checklist06 input[type="checkbox"]:checked
  {
    border: 2px solid var(--color-primary);
    background: none;
    z-index: 1;
    border-radius: 8px;
  }
}
