@charset "UTF-8";
/*ベースパーツテンプレート*/


/***　パープルカラーテーブル　***/

.purple-table {
	table-layout: fixed;
}


/* ヘッダー */
.purple-table thead th {
	background:#B84C97;
	font-weight: bold;
	color:#fff;
}

/* ボディ項目・フッター項目 */
.purple-table tbody th,
.purple-table tfoot th {
	background:#FCFAF2;
}

/* ボディデータ・フッターデータ */
.purple-table tbody td,
.purple-table tfoot td {
	text-align:center;
}

/***　ネイビーカラーテーブル　***/

.navy-table {
	table-layout: fixed;
}

/* ヘッダー */
.navy-table thead th {
	background:#181B39;
	font-weight: bold;
	color:#fff;
}


/* ボディ項目・フッター項目 */
.navy-table tbody th,
.navy-table tfoot th {
	background:#FFFFFC;
	font-weight: bold;
}

/* ボディデータ・フッターデータ */
.navy-table tbody td,
.navy-table tfoot td {
	text-align:center;
}

/* 偶数行　１行ごとの色変えが不要なら削除 */
.navy-table tr:nth-child(2n) td {
    background: #FBFBF6;
}

/***　線ありテーブル　***/
.sen-table {
  width: 100%;
  border: solid 1px #333;
  border-collapse: collapse;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .sen-table {
    font-size: 12px;
  }
}
.sen-table-Head {
  background: #ccc;
}
.sen-table-Head-Row-Cell {
  border: solid 2px #333;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.sen-table-Body {
  background: #fff;
}
.sen-table-Body-Row-Cell {
  border: solid 2px #333;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  padding-left: 0.5em;
  padding-right: 0.5em;
}

/***　注意ボックス　***/
.box-005 {
    max-width: 400px;
    margin: 0 auto;
    border: 2px solid #f06060;
    border-radius: 5px;
    color: #333333;
}

.box-005 div {
    display: inline-flex;
    align-items: center;
    position: relative;
    top: -13px;
    left: 10px;
    margin: 0 7px;
    padding: 0 8px;
    background: #fff;
    color: #f06060;
    font-weight: 600;
    vertical-align: top;
}

.box-005 svg {
    padding-right: 4px;
}

.box-005 p {
    margin: 0;
    padding: 0 1.5em 1em;
}

/*** 注意ボックス-遠藤編集_20240610 ***/
.box-005-v1 {
    max-width: 100%;
    margin: 0 auto;
    border: 2px solid #f06060;
    border-radius: 5px;
    color: #333333;
}

.box-005-v1 div {
    display: inline-flex;
    align-items: center;
    position: relative;
    top: -13px;
    left: 10px;
    margin: 0 7px;
    padding: 0 8px;
    background: #fff;
    color: #f06060;
    font-weight: 600;
    vertical-align: top;
}

.box-005-v1 svg {
    padding-right: 4px;
}

.box-005-v1 p {
    margin: 0;
    padding: 0 1.5em 1em;
}

/***　吹き出し付きボタンパープル　***/
.button-011 {
    text-align: center;
}

.button-011 div {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform: translateY(7px);
    width: 200px;
    margin: 0 auto;
    padding: .2em 0;
    border: 2px solid #b84c97;
    border-radius: 10px;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .2));
    background-color: #fff;
    color: #b84c97;
    font-size: .8em;
}

.button-011 div::before,
.button-011 div::after {
    position: absolute;
    top: 100%;
    content: '';
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
}


.button-011 div::before {
    width: 16px;
    height: 8px;
    background-color: #b84c97;
}

.button-011 div::after {
    width: 12px;
    height: 6px;
    background-color: #fff;
}

.button-011 button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    margin: 0 auto;
    padding: 1em 2em;
    border: none;
    border-radius: 5px;
    background-color: #b84c97;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
}

.button-011 button::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
}

/***　吹き出し付きボタンパープル-遠藤編集_20240610　***/
.button-011-v1 {
    text-align: center;
}

.button-011-v1 div {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform: translateY(7px);
    width: 200px;
    margin: 0 auto;
    padding: .2em 0;
    border: 2px solid #b84c97;
    border-radius: 10px;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .2));
    background-color: #fff;
    color: #b84c97;
    font-size: .8em;
	z-index:999;
}

.button-011-v1 div::before,
.button-011-v1 div::after {
    position: absolute;
    top: 100%;
    content: '';
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
}


.button-011-v1 div::before {
    width: 16px;
    height: 8px;
    background-color: #b84c97;
}

.button-011-v1 div::after {
    width: 12px;
    height: 6px;
    background-color: #fff;
}

.button-011-v1 button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 475px;
    margin: 0 auto;
    padding: 1em 2em;
    border: none;
    border-radius: 5px;
    background-color: #b84c97;
    color: #fff;
    font-weight: 600;
    font-size: 120%;
}

@media screen and (max-width: 450px){
	.button-011-v1 button {
		max-width: 100%;
        padding: 1.05em;
        margin: 0 auto;
        font-size: 100%;
	}
	.button-011-v1 div {
		width: 55%
	}
}

.button-011-v1 button::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
}


/***　吹き出し付きボタンネイビー　***/
.button-012 {
    text-align: center;
}

.button-012 div {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform: translateY(7px);
    width: 150px;
    margin: 0 auto;
    padding: .2em 0;
    border: 2px solid #181B39;
    border-radius: 10px;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .2));
    background-color: #fff;
    color: #181B39;
    font-size: .8em;
}

.button-012 div::before,
.button-012 div::after {
    position: absolute;
    top: 100%;
    content: '';
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
}


.button-012 div::before {
    width: 16px;
    height: 8px;
    background-color: #181B39;
}

.button-012 div::after {
    width: 12px;
    height: 6px;
    background-color: #fff;
}

.button-012 button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    margin: 0 auto;
    padding: 1em 2em;
    border: none;
    border-radius: 5px;
    background-color: #181B39;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
}

.button-012 button::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
}

/* ホバーボタンネイビー */
.button008 a {
    background: #181B39;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    z-index:0;
}
.button008 a:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    display: block;
    background: #B84C97;
    transition: .3s;
    left:0;
}
.button008 a:hover {
    color: #fff;
}
.button008 a:hover:before {
    width: 100%;
    z-index: -1;
}

/* ホバーボタンパープル */
.button009 a {
    background: #B84C97;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    z-index:0;
}
.button009 a:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    display: block;
    background: #181B39;
    transition: .3s;
    left:0;
}
.button009 a:hover {
    color: #fff;
}
.button009 a:hover:before {
    width: 100%;
    z-index: -1;
}

.layout-second > .img-warp{
    margin-left: 30px;
    margin-right: 30px;
}


@media screen and (max-width: 768px) {
    .layout-second > .img-warp{
    padding: 10px;
    margin: -20px 0 0 0;
    }
}

/*** テーブルデザイン-遠藤編集_20240612 ***/

.table-001{
  width: 100%;
  border-spacing: 0;
}

.table-001 th{
  border-bottom: solid 2px #b84c97;
  padding: 10px 5%;
}

.table-001 td{
  border-bottom: solid 2px #EFD6E7;
  text-align: center;
  padding: 10px 5%;
}

.table-002 {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  text-align: center;
	margin: 1% 0;
}
.table-002 th, .table-002 td {
	border: 2px solid #B84C97;
	padding: 1em;
	vertical-align: middle;
}
.table-002 thead th {
  background-color: #b84c97;
  color: #fff;
  border: 2px solid #b84c97;
  border-right: 2px solid #B84c97;
  border-bottom: 2px solid #b84c97;
}
.table-002 thead th:last-of-type {
  border-right: 2px solid #b84c97;
}
.table-002 tbody th {
  color: #b84c97;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 753px) {
	.table-002 td{
		margin: -2px 0% 0% 0%;
	}
	.table-002 {
    text-align: center;
	width: 100%;
	margin: 0% 0.5% 4.5%;
	padding: 15px 10px;
  }
  .table-002 thead {
    display:none;
  }
  .table-002 th, .table-002 td {
    display: block;
    border: solid #B84C97 2px;
    margin: -2px 0;
  }
  .table-002 tbody th{
    background: #FFF;
    color:#b84c97;
  }


.table-002 td::before{
    color: #b84c97;
    font-weight: bold;
    display: inline-block;
    width: 20%;
    min-width: 4em;
  }
}

.table-002-midashi{
	max-width: 100%;
	background-color: #b84c97;
	color: #fff;
	width: 100%;
	vertical-align: middle;
	text-align: center;
	margin: 4.5% 0.5% 0;
	padding: 15px 0px;
	font-weight: bold;
}

.table-002-midashi p{
	color: #fff;
	text-align: center;
}

/***@media screen and (max-width: 753px){
.resal-mobile{
	width: 5%;
	vertical-align: middle;}
.resal-pc{
	display:none;}
}
@media screen and (min-width: 754px){
.resal-pc{
width: 2%;
vertical-align: middle;}
.resal-mobile{display: none}}***/

.resal{
	display: inline-block;
	width: 20px;
	height: 20px;
	vertical-align: middle
}

/*追従バナー*/

/* CSS */
.fixed_banner {
    position: fixed; 
    z-index: 888888;
    bottom: 30px;
    right: 30px;
    left: auto;
    /*background-color: #ffffff;*/ /* 追加：バナーの背景色を指定 */
    padding: 5px; /* 追加：バナーの内側の余白 */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* 追加：影の追加 */
    /*border-radius: 10px;*/ /* 追加：角丸の設定 */
}

.fixed_banner_close {
    position: absolute;
    z-index: 999999;
    top: -12px;
    right: -12px;
    width: 24px; /* 追加：ボタンの幅と高さを指定 */
    height: 24px;
    cursor: pointer; 
}

.fixed_banner_img {
    width: 100%; /* 修正：画像の幅を100%に */
    max-width: 350px; /* 追加：最大幅を指定 */
}

@media screen and (max-width: 750px){
	.fixed_banner_img{
    width:auto; /* 修正：画像の幅を100%に */
    max-width: 225px; /* 追加：最大幅を指定 */}
	.fixed_banner_img a{
	max-width: 225px;}
}

.fixed_banner_img img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

.round_btn {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%; 
    background: #B84c97;
	transition-duration: 0.25s;
}

.round_btn::before,
.round_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px; 
    height: 15px;
    background: #ffffff;
}

.round_btn::before {
    transform: translate(-50%,-50%) rotate(45deg);
}

.round_btn::after {
    transform: translate(-50%,-50%) rotate(-45deg);
}