@charset "utf-8";
:root {
  --color-main1: #02121e;
  --color-sub1: #7396ad;
  --color-sub2: #fbd40e;
  --color-sub3: #0a1925;
  --color-sub4: #cbeaff;
  --color-blk1: #333333;
  --color-blk2: #737373;
    --color-blk3: #cccccc;
  --color-blk4: #E9E9E9;
  --color-wht: #FFFFFF;
  --margin-big: 120px;
  --margin-middle: 60px;
  --margin-small: 20px;
  --margin-col: 20px;
  --container-w1: 60px;
  --container-w2: 30px;
}

@media screen and (max-width: 1080px) {
  :root {
    --margin-big: 60px;
    --margin-middle: 30px;
    --margin-col: 10px;
    --container-w1: 30px;
  }
}
@media screen and (max-width: 560px) {
  :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: 1080px) {
  html, body {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  html, body {
    font-size: 12px;
  }
}
body{
	color: var(--color-wht);
	font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
	line-height: 1.8;
  background: var(--color-main1);
  font-weight: 400;
}
img {
	max-width: 100%;
	image-rendering: -webkit-optimize-contrast;
}
::-webkit-full-page-media, :future, :root img{
  image-rendering: auto;
}
svg {
  fill: currentColor;
  max-width: 100%;
}
ol, ul {
    padding-left: 0;
}
p {
	margin: var(--margin-small) 0;
}
input,
button,
select,
textarea {
	font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  outline: none;
}
input,
select,
textarea {
  background: #FFF;
  color: var(--color-blk1);
}

@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
@-webkit-keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

/*
link
---------------------------------------------------------*/

a {
	transition: all .3s ease;
}
a:link {
	color: var(--color-blk1);
	text-decoration: none;
}
a:visited {
	color: var(--color-blk1);
	text-decoration: none;
}
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-gnav03 + main{
  margin-top:100px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 1080px) {
  #header-gnav03 + main{
    margin-top:56px;
  }
}

@keyframes anime_mainbg_top {
	0% { transform: translate(-100% , -100%); }
	100% { transform: translate(0 , 0); }
}
.c_mainbg_top{
  width: 30vw;
  height: 0;
  padding-bottom: 30%;
  background: url(/img/common/main_bg01.svg) center center / 100% 100% no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translate(-100% , -100%);
  animation: anime_mainbg_top 1s ease 0s 1 forwards;
}
@keyframes anime_mainbg_bottom {
	0% { transform: translate(100% , 100%) rotate(180deg); }
	100% { transform: translate(0 , 0) rotate(180deg); }
}
.c_mainbg_bottom{
  width: 30vw;
  height: 0;
  padding-bottom: 30%;
  background: url(/img/common/main_bg01.svg) center center / 100% 100% no-repeat;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  transform: translate(100% , 100%) rotate(180deg);
  display: none;
}
.c_mainbg_bottom.animetion{
  display: block;
  animation: anime_mainbg_bottom 1s ease 0s 1 forwards;
}



header{
	display: flex;
	width: 100%;
  padding: 0 20px;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: var(--color-wht);
  transition: .5s;
  background: var(--color-blk1);
  color: var(--color-wht);
}
header a{
  color: var(--color-wht);
}
header a:link {
  color: var(--color-wht);
	text-decoration: none;
}
header a:visited {
  color: var(--color-wht);
	text-decoration: none;
}

@media screen and (max-width: 1080px) {
  header a{
    color: var(--color-blk1);
  }
  header a:link {
    color: var(--color-blk1);
  }
  header a:visited {
    color: var(--color-blk1);
  }
}


.header_inner{
  width: 100%;
  max-width: 940px;
  height: 100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/*上スクロール表示、下スクロール非表示用*/
header.scroll{
  transform: translateY(-100%);
}

@media screen and (max-width: 1080px) {
  header{
    height: 56px;
  }
  .header_inner{
    height: 56px;
    margin: auto;
    display: block;
  }
}

/*----------------------------------------*/
.l-logo{
  margin-bottom: 5px;
}
@media screen and (max-width: 1080px) {
  .l-logo{
    padding-right: 60px;
    margin-bottom: 0;
    margin-top: 10px;
  }
}
/*----------------------------------------*/
.l-gnav{
	flex: 1;
	display: flex;
}
@media screen and (max-width: 1080px) {
  .l-gnav {
    display: none;
    position: fixed;
    width: 100vw;
    max-height: 80vh;
    background-color: var(--color-sub2);
    top: 56px;
    left: 0;
    padding: 20px;
    overflow-y: auto;
    background: var(--color-wht);
  }
}
.l-gnav__item{
	margin: 0 10px 0 0;
  height: 40px;
  padding: 0 1em;
  display: flex;
  align-items: center;
  border-radius: 10px 10px 0 0;
  border: 1px solid var(--color-wht);
  border-bottom: none;
}
@media screen and (max-width: 1080px) {
  .l-gnav__item {
    display: block;
    margin: 10px 0;
    height: auto;
  }
}

/*----------------------------------------*/
.l-dropmenu01{
  /* cursor: pointer; */
  transition: all 0.3s;
}
.l-dropmenu01.active{
  background: var(--color-blk4);
}
.l-dropmenu01__bg{
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  padding: 20px;
  background: var(--color-blk4);
  display: none;
}
.l-dropmenu01.active .l-dropmenu01__bg{
  display: block;
  animation: appear .5s ease;
}
@keyframes appear {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

.l-dropmenu01__close{
  cursor: pointer;
  padding-right: 1.5em;
  position: relative;
}
.l-dropmenu01__close::before{
  content: "X";
  position: absolute;
  right: 0;
}
.l-dropmenu01__close:hover{
  text-decoration: underline;
}
@media screen and (max-width: 1080px) {
  .l-dropmenu01__bg{
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    background: var(--color-blk4);
    padding: 0;
  }
}
.l-dropmenu__list{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.l-dropmenu__list > li{
  margin: 0 20px;
}
@media screen and (max-width: 1080px) {
  .l-dropmenu__list > li{
    width: 100%;
    margin: 5px 0;
  }
}


/*----------------------------------------*/
#navbtn {
  display: none;
}
@media screen and (max-width: 1080px) {
  #navbtn {
    position: absolute;
    right: 0;
    top: 0;
    outline: none;
    border: none;
    background: none;
    width: 56px;
    height: 56px;
    cursor: pointer;
    display: inline-block;
    z-index: 999;
    transition: .3s;
    background-color: var(--color-main1);
    padding: 0 14px;
  }
  #navbtn:before, #navbtn:after {
    content: "";
    display: block;
    height: 2px;
    background-color: #fff;
    transform: translateY(-2px);
    transition: 0.3s ease-in-out;
  }
  #navbtn:before {
    transform: translateY(-16px);
    box-shadow: 0 8px #fff;
  }
  #navbtn > span {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 10px;
    margin: auto;
    font-size: 0.8em;
    line-height: 1;
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 1080px) {
  .menuopen {
    overflow: hidden;
  }
  .menuopen body {
    overflow: hidden;
  }
  .menuopen #navbtn:before {
    transform: translateY(-8px) rotate(-45deg);
    box-shadow: none;
  }
  .menuopen #navbtn:after {
    transform: translateY(-10px) rotate(45deg);
    box-shadow: none;
  }
}
#menu_overlay {
  display: none;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
}

/*----------------------------------------*/
.l-gnav__current.current{
  font-weight: 700;
  color: var(--color-main1) !important;
}

/*----------------------------------------*/
.l-pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}
.l-pagetop a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background-color: var(--color-main1);
	border-radius: 50%;
  color: var(--color-wht);
}

/*----------------------------------------*/
.l-main{}

/*----------------------------------------*/
.l-container01 {
  margin: var(--margin-big) 0;
}
.l-container01:first-child {
  margin: var(--margin-middle) 0 var(--margin-big);
}

/*----------------------------------------*/
.l-section01 {
  max-width: calc(940px + (var(--container-w1) * 2));
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-w1);
}

/*----------------------------------------*/
.l-footer{
  border-top: 1px solid var(--color-blk2);
  padding: var(--container-w1);
}
.l-footer_inner{
  display: flex;
  justify-content: space-between;
}
.l-footer_logo{
  margin-right: 20px;
}
.l-footer_nav{
  display: flex;
  justify-content: flex-end;
}
.l-footer_nav_mainmenu{
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
}
.l-footer_nav_mainmenu > li{
  margin: 0 40px 40px 0;
}
.l-footer_nav_mainmenu > li > a{
  font-weight: 700;
}
.l-footer_nav_childmenu > li{
  margin-left: 1em;
}
.l-footer_nav_childmenu > li > a{
  font-size: .9em;
}
.l-footer_nav_submenu{
  border-left: 1px solid var(--color-blk2);
  padding-left: 40px;
}
.l-footer_nav_submenu > li{
  margin-bottom: 10px;
}
.l-footer_nav_submenu > li > a{
  font-size: .9em;
}
.l-footer_bottom{
  margin-top: 40px;
}
.l-footer_bottom > p{
  margin: 0;
}
@media screen and (max-width: 1080px) {

  .l-footer_inner{
    flex-direction: column-reverse;
  }
  .l-footer_logo{
    margin: 0;
    width: 100%;
    text-align: center;
  }
  .l-footer_logo img{
    margin: auto;
  }
  .l-footer_nav{
    margin: 0;
    width: 100%;
    flex-wrap: wrap;
  }
  .l-footer_nav_mainmenu{
    margin: 0;
    width: 100%;
    flex: auto;
    justify-content: center;
  }
  .l-footer_nav_mainmenu > li{
    margin: 0 20px 40px;
  }
  .l-footer_nav_submenu {
    border-left: none;
    padding-left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 40px;
  }
  .l-footer_nav_submenu > li {
    margin: 10px;
  }
}
@media screen and (max-width: 560px) {
  .l-footer_nav_mainmenu > li{
    margin: 0 0 20px;
    width: 100%;
  }
  .l-footer_nav_submenu > li{
    margin: 0 0 20px;
    width: 100%;
  }
}

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

.l-sub_nav_title{
  padding: 20px;
  font-size: 1.2em;
  border: 1px solid var(--color-blk2);
}

.l-sub_nav_menu > li{
  padding: 20px;
  border-bottom: 1px solid var(--color-blk1);
}


/*----------------------------------------*/
.l-2column{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1240px;
  width: 100%;
  margin: var(--margin-middle) auto;
  padding: 0 var(--container-w1);
}
.l-2column_main{
  width: 75%;
}
.l-2column_main .l-container01:first-child{
  margin-top: 0;
}
.l-2column_sub{
  width: calc(25% - 40px);
}
@media screen and (max-width: 1080px) {
  .l-2column_main{
    width: 100%;
  }
  .l-2column_sub{
    width: 100%;
    margin-bottom: 50px;
  }
}


/*----------------------------------------*/
.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 .col0{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col0 > li {
  margin-right: var(--margin-col);
  margin-left: var(--margin-col);
  margin-bottom: var(--margin-col);
}
@media screen and (max-width: 960px) {
  .l-row .col0 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.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: 960px) {
  .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: 560px) {
  .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: 960px) {
  .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: 560px) {
  .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: 960px) {
  .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: 560px) {
  .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: 360px) {
  .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: 960px) {
  .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: 560px) {
  .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: 360px) {
  .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: 960px) {
  .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: 560px) {
  .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: 360px) {
  .l-row .col6 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}


/*====================================================================
Project……再利用予定のないプロジェクト固有のスタイルを管理
====================================================================*/

/*----------------------------------------*/
.p-mainimage{
	/* background: url(/img/top/pic_mainimage01.jpg) center center / cover no-repeat; */
	width: 100%;
	height: calc(100vh - 80px);
  margin-top: 80px;
}
/*----------------------------------------*/
.p-mainimage__img {
	width: 100%;
	animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
@-webkit-keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
.p-mainimage__img li {
	height: calc(100vh - 80px);
	background: center center / cover no-repeat;
}
/* 読み込み時のちらつき対策 */
.p-mainimage__img { opacity: 0; overflow: hidden; }
.p-mainimage__img.slick-initialized { opacity: 1; overflow: visible; }

/*--★★★--------------------------------------*/

.p-topics > li {
  border-bottom: 1px solid var(--color-blk2);
}
.p-topics > li:last-child {
  border-bottom: none;
}
.p-topics > li > a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  text-decoration: none;
  padding: 10px 0 20px;
  color: var(--color-blk1) !important;
}
.p-topics > li > a > .day {
  margin: 10px 20px 0 0;
  font-size: 0.8em;
}
.p-topics > li > a > .category {
  margin: 10px 20px 0 0;
  padding: 0 5px;
  border: 1px solid var(--color-blk2);
  width: 10em;
  text-align: center;
  font-size: 0.8em;
}
.p-topics > li > a > .title {
  width: 100%;
  margin: 10px 0 0 0;
  color: var(--color-main1) !important;
}
.p-topics > li > a:hover > .title {
  text-decoration: underline;
}
@media screen and (max-width: 1080px) {
  .p-topics > li > a > .title {
    flex: auto;
    width: 100%;
  }
}

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

.p-pager ul {
  display: flex;
  justify-content: center;
  margin: 50px 0;
  flex-wrap: wrap;
}
.p-pager li {
  margin: 5px;
}
.p-pager li a {
  text-decoration: none;
  color: var(--color-blk1);
  background: var(--color-blk4);
  padding: 0.5em 1em;
}
.p-pager li a:hover {
  opacity: 0.6;
}
.p-pager li.active a {
  font-weight: bold;
  background: var(--color-blk2);
  color: #FFF;
}

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

.p-map iframe{
  width: 100%;
  height: 50vh;
  border: none;
}

/*----------------------------------------*/
.p-pageimage{
	background: url(/img/common/pic_image01.png) center center / cover no-repeat;
	width: 100%;
	height: calc(60vh - 80px);
  margin-top: 80px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}
.p-pageimage_bg{
  padding: 20px;
}
.p-pageimage_bg > h2{
  text-align: center;
  font-size: 3em;
}
.p-pageimage_bg > p{
  margin: 20px 0 0;
  text-align: center;
  font-size: 1.2em;
}
/*----------------------------------------*/
.p-breadcrumb {
  width: 100%;
  padding: 20px 0;
  margin-top: 0px;
  position: relative;
  z-index: 2;
}
.p-breadcrumb__item {
  display: inline;
  font-size: 0.9rem;
  text-decoration: none;
}
.p-breadcrumb__item:not(:last-child):after {
  content: "＞";
  font-weight: 700;
  margin: 0 .5em;
  color: var(--color-main1);
}
.p-breadcrumb__item a {
  margin-right: 5px;
  font-weight: 400;
  color: var(--color-blk1) !important;
}
.p-breadcrumb__item:last-child a {
  pointer-events: none;
  color: var(--color-main1) !important;
  font-weight: 700;
}

/*----------------------------------------*/
.p-sns__link{
  display: flex;
  align-items: center;
  vertical-align: middle;
}
.p-sns__link > a{
  display: block;
  width: calc(1em * 1.8);
  height: calc(1em * 1.8);
  margin-right: 1em;
}
.p-sns__link > a:last-child{
  margin-right: 0;
}
.p-sns__link > a > img{
  width: calc(1em * 1.8);
}

/*----------------------------------------*/
.p-search_area{
  display: inline-block;
}

.p-search_area form{
  display: flex;
  align-items: center;
  position: relative;
}
.p-search_area input.input_text{
  -webkit-appearance:none;
  width: 130px;
  height: calc(1em * 1.8);
  padding: 0 20px 0 1em;
  border: none;
  border-radius: 50px;
  background:var(--color-blk4) !important;
  background-size: 25px 25px;
  transition: all 0.5s;
  outline: none;
}
.p-search_area input.input_text::placeholder{
  color: var(--color-blk2);
  font-weight: 700;
  line-height: 1;
  font-size: 0.9em;
  letter-spacing: 0.1em;
}
.p-search_area input.input_text:focus{
  width: 200px;
}

.p-search_area input.icon_search{
  width: calc(1em * 1.8 - 6px);
  position: absolute;
  top: 0;
  right: 6px;
  bottom: 0;
  margin: auto;
}
.p-search_area input.icon_search:hover{
  opacity: .5;
}

/*----------------------------------------*/
/* form-nav */
.p-formstep {
  display: flex;
  flex-wrap: wrap;
}
.p-formstep > li {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 13px 0;
    line-height: 1.5;
    background: var(--color-sub1);
    color: #999999;
    height: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.p-formstep > li > .nm {
  width: 100%;
  display: block;
  font-weight: 700;
  font-size: 1.2em;
}
.p-formstep > li > .tx {
  width: 100%;
  display: block;
}
.p-formstep > li:not(:last-child)::before,
.p-formstep > li:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 100%;
    content: '';
    border: 37px solid transparent;
    border-left: 20px solid var(--color-sub1);
    margin: auto;
}
.p-formstep > li:not(:last-child)::before {
    margin-left: 1px;
    border-left-color: #FFF;
}

@media screen and (max-width: 560px) {
  .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 #FFFFFF;
}
}



/* active */

.p-formstep > li.fs_active {
    z-index: 1;
    background: var(--color-main1);
    color: #FFF;
}
.p-formstep > li.fs_active:not(:last-child)::after {
    border-left-color: var(--color-main1);
}
.p-formstep > li.fs_active:not(:last-child)::before {
    border-left: none;
}


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

.p-form{
    margin: auto;
}
.p-input{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: calc(var(--margin-small)) ;
}
.p-input > .title_area{
  display: flex;
  align-items: flex-start;
  width: 100%;
  font-weight: 700;
  margin-bottom: 4px;
  position: relative;
}
.p-input > .input_area{
  flex: 1;
}

/*必須・任意*/
.p-required{
  background: var(--color-main1);
  color: var(--color-wht);
  border-radius: 3px;
  font-size: 0.8em;
  padding: .2em .5em;
  display: flex;
  align-items: center;
  margin-right: .5em;
}
.p-required.any{
  background: var(--color-blk3);
  color: var(--color-blk1);
}

/*ツールチップ　ヒント*/

.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-main1);
  border-radius: calc(1em * 1.8);
  color: var(--color-wht);
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
}



.p-tooltip .tip_text{
  width: max-content;
  max-width: 100%;
  background: var(--color-blk4);
  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-blk4);
  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: 1px solid var(--color-blk2);
  display: inline-block;
  padding: .3em .5em;
  line-height: 1.8;
  width: 100%;
}
.p-input select:focus{
  border: 1px solid var(--color-main1);
}

/*テキストエリア*/
.p-input textarea{
  border-radius: 3px;
  border: 1px solid var(--color-blk2);
  padding: .3em .5em;
  line-height: 1.8;
}
.p-input textarea:focus{
  border: 1px solid var(--color-main1);
}

/*その他*/
.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: 3px;
  border: 1px solid var(--color-blk2);
  padding: .3em .5em;
  line-height: 1.8;
}
.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: 1px solid var(--color-main1);
}

/*ラジオボタン・チェックボックス*/
.p-checklist{
  display: flex;
}
.p-checklist > li{
  margin-right: 1em;
  position: relative;
  display: flex;
}
.p-checklist label{
  display: inline-block;
  line-height: 1;
  margin-left: 1.2em;
}
.p-checklist input[type="radio"]{
  all: initial;
  background: url(/img/common/ico_radio01_1.svg) center center / 100% auto no-repeat;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
.p-checklist input[type="radio"]:checked{
  background: url(/img/common/ico_radio01_2.svg) center center / 100% auto no-repeat;
}
.p-checklist input[type="checkbox"]{
  all: initial;
  background: url(/img/common/ico_checkbox01_1.svg) center center / 100% auto no-repeat;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
.p-checklist input[type="checkbox"]:checked{
  background: url(/img/common/ico_checkbox01_2.svg) center center / 100% auto no-repeat;
}

/*送信ボタン・リセットボタン*/
.p-formbutton{
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-formbutton > button,
.p-formbutton > input{
  margin: 0 .5em;
}




/*--★★★--------------------------------------*/

.p-faq{
  background: var(--color-wht);
  padding: var(--margin-small);
  margin-bottom: var(--margin-small);
  color: var(--color-blk1);
  border-radius: 4px;
}
.p-faq:last-child{
  margin-bottom: 0;
}
.p-faq__q{
  cursor: pointer;
  position: relative;
}
.p-faq__q:hover{
  opacity: .6;
}
.p-faq__q::before{
  content: "";
  display: inline-block;
  width: 2px;
  height: 12px;
  background: var(--color-blk1);
  position: absolute;
  right: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all .3s;
}
.p-faq__q::after{
  content: "";
  display: inline-block;
  width: 2px;
  height: 12px;
  background: var(--color-blk1);
  position: absolute;
  right: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(90deg);
  transition: all .3s;
}
.p-faq__q.faq_close::before{
  opacity: 0;
}
.p-faq__q.faq_close::after{
  transform: rotate(450deg);
}
.p-faq__q > p{
  position: relative;
  display: block;
  padding-left: calc(1.2em * 1.8);
  padding-right: calc(12px + .5em);
}
.p-faq__q > p:first-child{
  margin: 0;
}
.p-faq__q > p:last-child{
  margin-bottom: 0;
}
.p-faq__q > p:first-child::before{
  content: "Q";
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: calc(1em * 1.8);
  height: calc(1em * 1.8);
  background: var(--color-sub2);
  border-radius: calc(1em * 1.8);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-sub3);
  font-weight: 700;
}
.p-faq__a {
  margin-top: calc(var(--margin-small) + 10px);
}
.p-faq__a > p{
  position: relative;
  display: block;
  padding-left: calc(1.2em * 1.8);
  padding-right: calc(12px + .5em);
}
.p-faq__a > p:first-child{
  margin: 0;
}
.p-faq__a > p:last-child{
  margin-bottom: 0;
}
.p-faq__a > p:first-child::before{
  content: "A";
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: calc(1em * 1.8);
  height: calc(1em * 1.8);
  background: var(--color-blk1);
  border-radius: calc(1em * 1.8);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-wht);
  font-weight: 700;
}


.p-login{
  background: url(/user/mypage/img/bg01.jpg) center center / cover no-repeat;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-login_inner{
  width: 100%;
  max-width: 660px;
  min-height: 300px;
  position: relative;
  margin: var(--margin-middle);
  color: var(--color-main1);
}

.p-login_title img{
  margin: auto;
}

.p-login_inner .c-tab01-list .c-tab01-list-item{
    flex: 1;
    border-radius: 4px 4px 0 0;
    background-color: var(--color-sub3);
    color: var(--color-wht);
}
.p-login_inner .c-tab01-list .c-tab01-list-item.c-tab-btn-active{
    background-color: var(--color-sub1);
}




/*====================================================================
Component……再利用可能な小さな単位のモジュールを管理（ボタンなど）
====================================================================*/

/*-★★★---------------------------------------*/

.c-btn-icon01{
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-btn-icon01 > .icon{
  margin-right: 0.5em;
  display: inline-block;
}
.c-btn-icon01 > .icon img{
  width: 1.2em;
}
.c-btn-icon01 > .text{
  line-height: 1.4;
  display: inline-block;
}
.c-btn01{
  background: var(--color-sub2);
  color: var(--color-main1) !important;
  font-weight: 700;
  text-decoration: none !important;
  padding: 1em calc(1em + 28px) 1em calc(1em + 12px);
  display: inline-block;
  text-align: center;
  border-radius: 60px;
  position: relative;
  line-height: 1.4;
  transition: background .3s;
}
.c-btn01::before{
  content: "";
  border: 2px solid var(--color-main1);
  border-top: none;
  border-left: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 28px;
  margin: auto;
  width: calc(1em - 5px);
  max-width: 14px;
  height: calc(1em - 5px);
  max-height: 14px;
  transform: rotate(-45deg);
}
.c-btn01:hover{
    background: #92850c;
}



.c-btn02{
  background: var(--color-wht);
  color: var(--color-main1) !important;
  font-weight: 700;
  text-decoration: none !important;
  padding: 1em calc(1em + 28px) 1em calc(1em + 12px);
  display: inline-block;
  text-align: center;
  border-radius: 60px;
  position: relative;
  line-height: 1.4;
  transition: background .3s;
}
.c-btn02::before{
  content: "";
  border: 2px solid var(--color-main1);
  border-top: none;
  border-left: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 28px;
  margin: auto;
  width: calc(1em - 5px);
  max-width: 14px;
  height: calc(1em - 5px);
  max-height: 14px;
  transform: rotate(-45deg);
}
.c-btn02:hover{
    background: #6b6b6b;
}

.c-formbtn01{
  border-radius: 3px;
  background: var(--color-main1);
  color: var(--color-wht);
  padding: 0.5em 2em;
}
.c-formbtn01:hover{
  opacity: .6;
}
.c-formbtn02{
  border-radius: 3px;
  background: var(--color-blk4);
  color: var(--color-blk1);
  padding: 0.5em 2em;
}
.c-formbtn02:hover{
  opacity: .6;
}


/*----------------------------------------*/
.c-link_list li {
  display: block;
  position: relative;
  padding-left: 1em;
}
.c-link_list li:before {
  position: absolute;
  left: 0;
  content: ">";
  font-weight: 700;
  font-size: 1em;
}
.c-link_list li:after {
  display: none;
}


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



/*----------------------------------------*/
.c-title01{
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.c-title02{
  font-size: 2em;
  font-weight: 700;
  padding-bottom: .5em;
  margin: 1em 0;
  position: relative;
}
.c-title02::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--color-sub1);
}
.c-title02::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 30%;
  background: var(--color-main1);
}
.c-title03{
  font-size: 1.5em;
  font-weight: 700;
  padding: .5em;
  margin: 1em 0;
  position: relative;
  background: var(--color-sub1);
}
.c-title04{
  font-size: 1.5em;
  font-weight: 700;
  padding-left: .5em;
  margin: 1em 0;
  position: relative;
  border-left: 10px solid var(--color-main1);
}
.c-title05{
  font-size: 1.5em;
  font-weight: 700;
  padding: .5em;
  margin: 1em 0;
  position: relative;
  border: 1px solid var(--color-main1);
}

/*----------------------------------------*/
.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-blk1);
  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-blk1);
}

/*--★★★--------------------------------------*/
.c-page_anchor{
  padding: 0 0 25px 0;
  border-bottom: 1px solid var(--color-main1);
}
.c-page_anchor > ul{
  display: flex;
  flex-wrap: wrap;
}

.c-page_anchor > ul > li {
  position: relative;
  padding: 0 1em 0 calc(20px + .5em);
  margin: .5em 1em .5em 0;
}
.c-page_anchor > ul > li:before {
  content: "";
  background: var(--color-main1);
  width: 20px;
  height: 20px;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #d81862;
}
.c-page_anchor > ul > li::after {
  content: "";
  border: 1px solid var(--color-wht);
  border-top: none;
  border-left: none;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  font-weight: 700;
  position: absolute;
  left: 5px;
  top: -6px;
  bottom: 0;
  margin: auto;
  color: #d81862;
}



/*----------------------------------------*/
.c-table01 th,
.c-table01 td{
  border: 1px solid var(--color-blk3);
  padding: .5em;
}
.c-table01 th{
  background: var(--color-blk4);
}


/*--★★★--------------------------------------*/
.slick-prev{
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  margin: auto;
  z-index: 1;
  border: none;
  background: none;
}
.slick-prev::before{
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  border-left: 5px solid var(--color-main1);
  border-top: 5px solid var(--color-main1);
  transform: rotate(-45deg);
}
.slick-prev:hover{
  opacity: 0.6;
}
.slick-next{
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto;
  z-index: 1;
  border: none;
  background: none;
}
.slick-next::before{
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-left: 5px solid var(--color-main1);
  border-top: 5px solid var(--color-main1);
  transform: rotate(135deg);
}
.slick-next:hover{
  opacity: 0.6;
}
.slick-dots{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.slick-dots > li{
  border: none;
  border-radius: 50px;
  width: 10px;
  height: 10px;
  background: var(--color-sub1);
  font-size: 0;
  margin: 0 10px;
  cursor: pointer;
}
.slick-dots > li.slick-active{
  background: var(--color-main1);
}
.slick-dots > li:hover{
  opacity: .6;
}

.c-slider01{
  padding-left: 25px;
  padding-right: 25px;
}
.c-slider01 .slick-slide > a{
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
  border: 1px solid var(--color-blk1);
  margin: 0 10px;
  padding: 20px;
  color: var(--color-blk1) !important;
  border-radius: 10px;
}

.c-slider02{
  padding-left: 25px;
  padding-right: 25px;
}
.c-slider02 .slick-slide > a{
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
  border: 1px solid var(--color-blk1);
  margin: 0 10px;
  padding: 20px;
  color: var(--color-blk1) !important;
  border-radius: 10px;
}

.c-slider03{
  padding-left: 25px;
  padding-right: 25px;
}
.c-slider03 .slick-slide > a{
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
  border: 1px solid var(--color-blk1);
  margin: 0 10px;
  padding: 20px;
  color: var(--color-blk1) !important;
  border-radius: 10px;
}

/*--★★★--------------------------------------*/

.c-tab01-list{
  display: flex;
  gap: 8px;
}
.c-tab01-list-item{
  text-align: center;
  padding: 0.5em 1.5em 0.4em;
  cursor: pointer;
  border: none;
  background: var(--color-sub2);
  border-radius: 10px 10px 0 0;
  transition: all .4s;
}
.c-tab01-list-item:hover{
  opacity: .6;
}
.c-tab01-contents{
  background: #FFF;
  border: 2px solid var(--color-sub1);
  display: none;
  padding: 20px;
}
.c-tab-btn-active{
  background: var(--color-sub1);
  font-weight: 700;
}
.c-tab-contents-active{
  display: block;
}


/*====================================================================
.article_area…記事部分の装飾まとめ
====================================================================*/


.c-title100{
  font-size: 2em;
  font-weight: 700;
  text-align: left;
  margin: 140px 0 1.5em 0;
  position: relative;
  border-bottom: 1px solid var(--color-blk3);
  padding: .5em .5em .6em;
  line-height: 1;
  color: #FFF;
  background: var(--color-blk1);
  border-radius: 10px 0 0 0;
}
.l-section01 .c-title100:first-child{
  margin: 0 0 1.5em 0;
}






.article_area a:not([class]):link{
  color: var(--color-main1);
}
.article_area a:not([class]):visited{
  color: var(--color-main1);
}



.article_area h1:not([class]),
.article_area h2:not([class]){
  margin: var(--margin-big) 0 40px;
  font-size: 24px;
  line-height: calc(1em + 12px);
  font-weight: 700;
  position: relative;
  border-bottom: 1px solid var(--color-sub1);
  padding-bottom: 12px;
}

.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-sub1);
}
.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-sub1);
}
.article_area h4:not([class])::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 30%;
  background: var(--color-main1);
}
.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-main1);
  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-sub2);
}


.l-section01 + h1:not([class]):first-child,
.l-section01 + h2:not([class]):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: 660px) {
  .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-main1);
  width: 0.8em;
  height: 4px;
}
.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-main1);
  border-bottom: 2px solid var(--color-main1);
  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-main1);
}
.article_area ol:not([class]) > li::before {
  color: var(--color-blk1);
}

.article_area table:not([class]) {
  width: 100%;
}
.article_area table:not([class]) th,
.article_area table:not([class]) td {
  border: 1px solid var(--color-blk3);
  padding: .5em;
  background: var(--color-wht);
    color: var(--color-main1);
}
.article_area table:not([class]) th{
  background: var(--color-blk4);
  width: 0;
  white-space: nowrap;
}
.article_area table:not([class]) th + th,
.article_area table:not([class]) th:has(+ th){
  background: var(--color-blk4);
  width: auto;
  white-space:initial;
}


.article_area h1:first-child,
.article_area h2:first-child{
  margin-top: 0;
}


/*====================================================================
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: 1080px) {
	.u-center_pc {  text-align: left;}
	.u-center_sp {  text-align: center;}
}
@media screen and (max-width: 1080px) {
  .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--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--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-main1) !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-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-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-mb0  {margin-bottom: 0 !important;}
.u-mb10 {margin-bottom: 10px !important;}
.u-mb20 {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-ml40 {margin-left: 40px !important;}
.u-mr0  {margin-right: 0 !important;}
.u-mr10 {margin-right: 10px !important;}
.u-mr20 {margin-right: 20px !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-kadomaru01{border-radius: 10px;}
.u-kadomaru02{border-radius: 20px;}
/*----------------------------------------*/
.u-border01{border:1px solid var(--color-main1)}
.u-border02{border:2px solid var(--color-main1)}
.u-bordertop01{border-top:1px solid var(--color-main1)}
.u-borderbottom01{border-bottom:1px solid var(--color-main1)}
/*----------------------------------------*/
.u-nolink{pointer-events: none;}


.p-body_bg01{
    background: url(/user/mypage/img/bg02.jpg) top center / 1920px auto no-repeat var(--color-main1);
}

.p-navbar-brand img{
    height: 40px;
}
@media screen and (min-width: 768px) {
    .p-navbar-brand{
        display: none;
    }
}


.p-main{
    display:flex;
    justify-content: center;
}
.p-main_side{
    display:flex;
    justify-content: center;
    width:380px;
    padding:0;
    align-items: flex-start;
    padding: 0 0 0 60px ;
}
.p-main_side_inner{
    display:flex;
    flex-direction: column;
    padding: 32px;
    gap:20px;
    flex:1;
    background: var(--color-sub3);
    border:1px solid var(--color-sub1);
}
@media screen and (max-width: 1080px) {
    .p-main_side{
        display: none;
    }
}

@media screen and (max-width: 1080px) {
    .sp-p-headnav{
        background-color: var(--color-main1);
    }
    .sp-p-main_side{
        color: var(--color-wht);
        padding:20px;
    }
    .sp-p-main_side_inner{
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .sp-p-main_side_inner a{
        font-size: 16px;
        font-weight: 700;
        color: var(--color-wht);
        padding: 16px 0 8px;
    }
    .sp-p-main_side_inner a.active{
        color: var(--color-sub2) !important;
    }
    .sp-p-main_side_inner a:not(:first-child){
        border-top: 1px solid var(--color-sub1);
    }
}

.p-user_point{
    background: var(--color-sub2);
    padding:8px 16px;
    color:var(--color-blk1);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.p-main_main{
    display:flex;
    flex:1;
    padding: 0 100px;
    margin-bottom: var(--margin-big);
    max-width: 1340px;
}
.p-main_main main{
    flex: 1;
}
@media screen and (max-width: 768px) {
    .p-main_main{
    padding: 0 40px;
    }
}
@media screen and (max-width: 560px) {
    .p-main_main{
    padding: 0 20px;
    }
}

.p-nav{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
}
.p-nav > li > a{
    display: flex;
    gap: 4px;
    align-items: center;
    color: var(--color-wht);
    font-size: 18px;
    line-height: calc(1em + 6px);
    font-weight: 700;
}


.p-footer{
    border-top: 1px solid var(--color-sub1);
    background: var(--color-main1);
}
.p-footer_inner{
    padding: 60px 100px 0;
}
.p-footer_menu{
    display: flex;
    justify-content: center;
    gap: 40px;
}
.p-footer_menu_list > a{
    color: var(--color-wht);
    padding: 0;
    font-weight: 700;
    font-size: 18px;
}
.p-footer_text01{
    font-size: 14px;
    line-height: calc(1em + 12px);
    color: var(--color-wht);
    text-align: center;
}
@media screen and (max-width: 768px) {
    .p-footer_inner{
        padding: 40px 40px 0;
    }
    .p-footer_menu{
        flex-direction: column;
        gap: 20px;
    }
    .p-footer_text01{
        text-align: left;
    }
}
@media screen and (max-width: 560px) {
    .p-footer_inner{
        padding: 20px 20px 0;
    }
}


.c-box01{
  background: var(--color-wht);
  color: var(--color-main1);
}
.c-box01 .img img{
    width: 100%;
}
.c-box01_inner{
  padding: 32px;
    display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-box01 p{
  margin: 0;
}

.c-box02_area{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.c-box02{
    background: var(--color-wht);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--color-main1);
}
.c-box02_inner01{
    display: flex;
    gap: 16px;
}
.c-box02_inner01 > .img{
    flex: 1;
}
.c-box02_inner01 > .img img{
    width: 100%;
}
.c-box02_inner01 > .text{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.c-box02_inner01 > .text .text_inner:not(:first-child){
    border-top: 1px solid var(--color-sub1);
    padding-top: 8px;
}
.c-box02_inner02{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.c-box02_inner02 > h3{
    margin: 0 !important;
}
.c-box02_inner02 > p{
    margin: 0 !important;
}


.c-box03_area{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.c-box03{
    background: var(--color-wht);
    padding: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--color-main1);
}
.c-box03_inner01{
    flex: 1;
    min-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.c-box03_inner01 > .img{
    flex: 1;
}
.c-box03_inner01 > .img img{
    width: 100%;
}
.c-box03_inner01 > .text{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: #e6f1f3;
}
.c-box03_inner01 > .text .text_inner:not(:first-child){
    border-top: 1px solid var(--color-sub1);
    padding-top: 8px;
}
.c-box03_inner02{
    width: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}
.c-box03_inner02 > h3{
    margin: 0 !important;
}
.c-box03_inner02 > p{
    margin: 0 !important;
}
@media screen and (max-width: 768px) {
    .c-box03{
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
    }
    .c-box03_inner01{
        flex: initial;
        min-width: initial;
        width: 100%;
    }
    .c-box03_inner02{
        flex: initial;
        min-width: initial;
        width: 100%;
    }
}



.waku_jisseki{
    display: flex;
    justify-content: center;
}
.waku_jisseki_inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex: 1;
    gap: var(--margin-col);
}
.waku_jisseki .box{
    width: calc(100% / 3 - ((var(--margin-col) * 2 ) / 3));
    background: url(/user/mypage/img/waku_jisseki.png) center center / 100% 100% no-repeat;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.waku_jisseki .box p{
    margin: 0;
}
.waku_jisseki .box .text01{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 8px;
    font-size: 20px;
    font-weight: 700;
}
.waku_jisseki .box .text02{
    display: flex;
    justify-content: center;
}
.waku_jisseki .box .text02 .hit{
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    background: #1041e4;
    padding: 8px 16px;
}
.waku_jisseki .box .text03{
    text-align: center;
}
@media screen and (max-width: 1440px) {
    .waku_jisseki .box{
        width: calc(100% / 2 - ((var(--margin-col) * 1 ) / 2));
    }
}
@media screen and (max-width: 560px) {
    .waku_jisseki .box{
        width: 100%;
    }
}

.c-formbtn03{
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 40px 16px 16px;
    background: var(--color-sub2);
    color: var(--color-main1);
    border-radius: 4px;
    border: 1px solid var(--color-sub1);
    height: 100%;
    transition: background .3s;
    position: relative;
    font-weight: 700;
    line-height: calc(1em + 4px);
}
.c-formbtn03::before{
    content: "";
    background: url(/user/mypage/img/icon_arrow01.svg) center center / 100% 100% no-repeat;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 8px;
    margin: auto;
}
.c-formbtn03_text01{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    line-height: calc(1em + 8px);
}
.c-formbtn03_text01 .sup{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    line-height: calc(1em);
    background: #e48510;
    padding: 4px 16px;
    border-radius: 4px;
}
.c-formbtn03_text02{
    border-top: 1px solid var(--color-sub1);
    display: flex;
    justify-content: flex-end;
    font-size: 20px;
    font-weight: 700;
}
.c-formbtn03:hover{
    background: #92850c;
}


.p-mailbox{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.p-mailbox_inner{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.p-mailbox_inner > li{
    display: flex;
    gap: 16px;

}
.p-mailbox_inner > li > a{
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 48px 16px 48px;
    position: relative;
    flex: 1;
    background: var(--color-wht);
}
.p-mailbox_inner > li > a::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 16px;
    margin: auto;
    background: url(/user/mypage/img/icon04_b.svg) center center / 100% auto no-repeat;
    width: 24px;
    height: 24px;
}
.p-mailbox_inner > li > a::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    margin: auto;
    background: url(/user/mypage/img/icon_arrow01.svg) center center / 100% auto no-repeat;
    width: 24px;
    height: 24px;
}
.p-mailbox_inner > li > a > .title{
    flex: 1;
    font-weight: 700;
}
@media screen and (max-width: 560px) {
.p-mailbox_inner > li > a{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    text-align: left;
}
}
