@charset "UTF-8";

/*一覧
---------------------------------------------------------*/
.entry_list .flex_box {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.entry_list .flex_box .txt_box {
	width: calc(97% - 250px);
}
.entry_list .flex_box .img_box {
	width: 250px;
	height: 140px;
	overflow: hidden;
	position: relative;
	box-sizing: border-box;
	border: solid 1px #e6e6e6;
}
.entry_list .flex_box .img_box img {
	width: 100%;
	max-width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.entry_list .flex_box .txt_box {
	width:67%;
}
.entry_list .flex_box .img_box {
	width: 30%;
	height: 120px;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.entry_list .flex_box {
	display: block;
}
.entry_list .flex_box .txt_box {
	width: 100%;
}
.entry_list .flex_box .img_box {
	width:70%;
	max-width: 250px;
	height: 140px;
	margin: 5% auto 0 auto;
}
}



/*カテゴリーリンク
---------------------------------------------------------*/
.case_link {
	display: -webkit-flex;
	display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	margin-bottom: 40px;
}
.case_link li {
	width: 24.25%;
	margin-right: 1%;
	margin-bottom: 1%;
}
.case_link li:nth-of-type(4n) {
	margin-right: 0;
}
.case_link li a {
	display: block;
	background: #E9EDF9;
	color: #113667;
	font-size: 110%;
	font-weight: bold;
	letter-spacing: normal;
	line-height: 1.2em;
	height: 4.5em;
	border-radius: 5px;
	position: relative;
}
.case_link li.active a,
.case_link li a:hover {
	background: #113667;
	color: #fff;
}
.case_link li a span {
	position: absolute;
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding-left: .8em;
	padding-right: 1.2em;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.case_link li a::before {
	font-family: 'fontello';
	content: '\e805';
	position: absolute;
	right: .5em;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	font-weight: normal;
	font-size: 70%;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.case_link {
	margin-bottom: 4%;
}
.case_link li a {
	font-size: 1.8vw;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.case_link {
    -webkit-justify-content: space-between;
    justify-content: space-between;
	margin-bottom: 8%;
}
.case_link li {
	width: 49.5%;
	margin-right: 0;
}
.case_link li a {
	font-size: 90%;
	height: 4.0em;
}
}



/*メンズマガジン：一覧
---------------------------------------------------------*/
#magazine .btnDeco a{
	padding: .8em 1.5em;
	padding-right: 2.5em;
	color: #333 !important;
	font-weight: normal;
	line-height: 100%;
}
#magazine .btnDeco a::before {
	content: '\e805';
	color: #2550C5;
	font-size: 70%;
	right: .5em;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
#magazine .btnDeco:hover{
	border-color: #1F3D6B;
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	transition: 0.7s;
}
#magazine .btnDeco a:hover{
	color: #1F3D6B !important;
}

#magazine .box_list .com_inbox {
	margin-bottom: 100px;
}
#magazine .box_list .com_inbox:last-of-type {
	margin-bottom: 0;
}
#magazine .com_inbox .cat_title {
	display: -webkit-flex;
	display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
	font-size: 140%;
	padding: 1.4em 3%;
	position: relative;
background: rgb(16,49,86);
background: -moz-linear-gradient(left,  rgba(16,49,86,1) 0%, rgba(21,71,143,1) 100%);
background: -webkit-linear-gradient(left,  rgba(16,49,86,1) 0%,rgba(21,71,143,1) 100%);
background: linear-gradient(to right,  rgba(16,49,86,1) 0%,rgba(21,71,143,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#103156', endColorstr='#15478f',GradientType=1 );
}
#magazine .box_list > .com_inbox:nth-child(even) .cat_title {
background: rgb(11,96,128);
background: -moz-linear-gradient(left,  rgba(11,96,128,1) 0%, rgba(46,153,199,1) 100%);
background: -webkit-linear-gradient(left,  rgba(11,96,128,1) 0%,rgba(46,153,199,1) 100%);
background: linear-gradient(to right,  rgba(11,96,128,1) 0%,rgba(46,153,199,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0b6080', endColorstr='#2e99c7',GradientType=1 );
}
#magazine .cat_title::before {
	content: "";
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: url("../images/top/mgzn_title@2x.png") no-repeat left bottom;
	background-size: 100px auto;
}
#magazine .cat_title h3 {
	width: calc(97% - 160px);
	border-radius: 0;
	padding: 0;
	background: none;
	color: #fff;
	font-size: 160%;
	font-weight: bold;
	letter-spacing: .05em;
	line-height: 1.4em;
	position: relative;
	z-index: 1;
}
#magazine .cat_title .btnDeco {
	position: relative;
	z-index: 1;
	font-size: 90%;
	border-radius: 50px;
}
#magazine .cat_title .btnDeco a {
	padding: .6em 1.5em;
	padding-right: 2.0em;
}
#magazine .cat_title.no_btn {
	display: block;
}
#magazine .cat_title.no_btn h3 {
	width: 100%;
}

.magazine_list li {
	display: -webkit-flex;
	display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
	padding-bottom: 40px;
	border-bottom: solid 1px #ccc;
	margin-bottom: 40px;
}
.magazine_list li:last-child {
	padding-bottom: 0;
	border-bottom: none;
	margin-bottom: 0;
}
.magazine_list li .img_thumbnail {
	width: 300px;
	position: relative;
	background: #666;
	overflow: hidden;
}
.magazine_list li .img_thumbnail::before {
	content: "";	/* 高さ */
	display: block;
	padding-top: 65%;
}
.magazine_list li .img_thumbnail div {
	display: block;
	position: absolute;
	width: 100%;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.magazine_list li dl {
	width: calc(97% - 300px);
}
.magazine_list li dt {
	font-size: 160%;
	font-weight: bold;
	letter-spacing: .05em;
	line-height: 1.4em;
	margin-bottom: .2em;
}
.magazine_list li dt a {
	color: #926C00;
}
.magazine_list li:hover dt a {
	color: #1F3D6B;
}
.magazine_list li:hover dd .more {
	color: #2550C5;
	text-decoration: underline;
}
.magazine_list li .txt_date {
	margin-top: 1.0em;
	font-size: 110%;
	letter-spacing: .1em;
	line-height: 1.2em;
}
.magazine_list li .txt_date span {
	display: inline-block;
	font-size: 80%;
	color: #444;
	letter-spacing: .05em;
	line-height: 1.2em;
	margin-left: 1.0em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
#magazine .box_list .com_inbox {
	margin-bottom: 6%;
}
#magazine .com_inbox .cat_title {
	font-size: 100%;
}
#magazine .cat_title h3 {
	width: calc(97% - 110px);
}

.magazine_list li {
	margin-bottom: 3%;
}
.magazine_list li .img_thumbnail {
	width: 27%;
}
.magazine_list li dl {
	width: 70%;
}
.magazine_list li dt {
	font-size: 130%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
#magazine .box_list .com_inbox {
	margin-bottom: 10%;
}
#magazine .com_inbox .cat_title {
	font-size: 80%;
}
#magazine .cat_title h3 {
	width: 70%;
	font-size: 150%;
	letter-spacing: normal;
}

.magazine_list li {
	display: block;
	padding-bottom: 8%;
	margin-bottom: 8%;
}
.magazine_list li .img_thumbnail {
	width: 60%;
	margin: 0 auto .5em;
}
.magazine_list li dl {
	width: 100%;
}
.magazine_list li dt {
	font-size: 120%;
	letter-spacing: normal;
}
.magazine_list li .txt_date {
	font-size: 90%;
	letter-spacing: .05em;
}
}



/*page number
-----------------------------------------------------*/
.wp-pagenavi {
	margin-top: 100px;
	border-top: solid 1px rgba(17,54,103,0.5);
	border-bottom: solid 1px rgba(17,54,103,0.5);
	padding: 10px 0;
	width: 100%;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	background: transparent;
	font-size: 120%;
}
.wp-pagenavi .pages {
	display: none;
}
.wp-pagenavi span,
.wp-pagenavi a {	
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	width: 2.0em;
	line-height: 2.0em;
	border-radius: 50%;
	box-sizing: border-box;
	margin: 0 .5em;
	color: #113667;
	letter-spacing: normal;
	position: relative;
}

/* 数字背景色 */
.wp-pagenavi .current,
.wp-pagenavi .page:hover {
	color:#fff;
	background: #113667;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.wp-pagenavi {
	margin-top: 8%;
	font-size: 110%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.wp-pagenavi {
	margin-top: 10%;
	font-size: 100%;
}
.wp-pagenavi span,
.wp-pagenavi a {	
	margin: .5em .2em;
}
}



/*詳細ページ
-----------------------------------------------------*/
#magazine article,
.single_page article {
	width: 100%;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}
#magazine article .box {
	padding-left: 0;
	padding-right: 0;
}
.single_page article {
	padding-top: 30px;
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #000;
	font-size: 19px;
	letter-spacing: .1em;
	line-height: 2.1em;
}
.single_page .entry-inf {
	margin-bottom: 50px;
}
.single_page .entry-date {
	font-size: 100%;
	letter-spacing: normal;
	line-height: 1.2em;
	margin-bottom: .5em;
}
.single_page .entry-date span {
	display: inline-block;
	vertical-align: middle;
	color: #666;
	font-size: 80%;
	letter-spacing: normal;
	line-height: 1.2em;
	margin-left: 1.0em;
	transform: translateY(-.1em);
}
.single_page .entry-title {
	color: #103666;
	font-size: 150%;
	font-weight: bold;
	letter-spacing: .06em;
	line-height: 1.6em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.single_page article {
	padding-top: 3%;
	font-size: 15px;
	line-height: 2.0em;
}
.single_page .entry-inf {
	margin-bottom: 4%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
#magazine article .box {
	padding-left: 3%;
	padding-right: 3%;
}
.single_page article {
	padding-top: 4%;
	font-size: 3.6vw;
	letter-spacing: .05em;
	line-height: 1.8em;
}
.single_page .entry-inf {
	margin-bottom: 8%;
}
.single_page .entry-title {
	font-size: 140%;
	letter-spacing: .02em;
	line-height: 1.6em;
}
}



/*自由入力欄
---------------------------------------------------------*/
.free_area p {
	margin-bottom: 1.5em;
}
.free_area p:has(.aligncenter) {
	margin-bottom: 2.0em;
}
.free_area p:last-of-type {
	margin-bottom: 0 !important;
}
.free_area a {
	text-decoration: underline;
}
.free_area a:hover {
	color: #103666 !important;
	text-decoration: none;
}
.entry-inf,
.free_area h2,
.free_area h3,
.free_area h4,
.free_area h5,
.free_area h6,
.free_area p,
.free_area div,
.free_area ul,
.free_area ol,
.free_area table {
	width: 100%;
	/* max-width: 950px; */
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.free_area h2,
.free_area h3,
.free_area h4,
.free_area h5 {
	font-feature-settings: "halt";
	margin-bottom: 1.5em;
}
.free_area h2 *,
.free_area h3 *,
.free_area h4 *,
.free_area h5 * {
	font-family: inherit !important;
	font-style: normal !important;
	font-size: 100% !important;
}
.free_area h2 {
	background-color: #6e5f3d;
	background-image: url("../images/index_l@2x.png"), url("../images/index_r@2x.png");
	background-repeat: no-repeat, no-repeat;
	background-position: left center, right center;
	background-size: auto 100%, auto 100%;
	min-height: 0;
	padding: 1.2em 3%;
	text-align: center;
	color: #fff;
	font-size: 140%;
	font-weight: bold;
	letter-spacing: .06em;
	line-height: 1.5em;
	border-bottom: none;
}
.free_area h2 * {
	color: #fff !important;
}
.free_area h3 {
	background: #edeff2;
	border-radius: 0;
	border-bottom: solid 2px #91a1b8;
	text-align: left;
	color: #103666;
	font-size: 125%;
	font-weight: bold;
	letter-spacing: .06em;
	line-height: 1.5em;
	padding: .8em 3%;
}
.free_area h3 * {
	color: #103666 !important;
}

.free_area h4,
.free_area h5 {
	color: #000;
	font-size: 115%;
	font-weight: bold;
	letter-spacing: .1em;
	line-height: 1.5em;
}
.free_area h4 *,
.free_area h5 * {
    color: #000 !important;
}
.free_area h4 {
	background: transparent;
	border-radius: 0;
	padding: .6em 3%;
	border-left: solid 13px #a37e28;
	border-bottom: solid 1px #a37e28;
}
.free_area h4::before {
	display: none;
}
.free_area h5 {
	padding: .9em 3%;
	border-top: solid 1px #b3b3b3;
	border-bottom: solid 1px #b3b3b3;
}

.free_area ul,
.free_area ol {
	list-style: none;
}
.free_area ul > li,
.free_area ol > li {
	box-sizing: border-box;
	font-size: 100%;
	line-height: 2.2em;
	padding-left: 2.5em;
	margin-bottom: .5em;
	position: relative;
}
.free_area ul > li:last-child,
.free_area ol > li:last-child {
	margin-bottom: 0;
}
.free_area ul > li::before {
	content: "";
	position: absolute;
	width: 1.5em;
	height: 1.5em;
	background: url("../images/check@2x.png") no-repeat center center;
	background-size: contain;
	left: 0;
	top: .2em;
}
.free_area ol > li::before {
	content: "01";
	font-family: 'EB Garamond', serif;
	font-style: normal;
	font-weight: 400;
	color: #a37e28;
	font-size: 160%;
	letter-spacing: .04em;
	line-height: 1.0em;
	position: absolute;
	left: 0;
	top: .06em;
}
.free_area ol > li:nth-child(2)::before {content: "02";}
.free_area ol > li:nth-child(3)::before {content: "03";}
.free_area ol > li:nth-child(4)::before {content: "04";}
.free_area ol > li:nth-child(5)::before {content: "05";}
.free_area ol > li:nth-child(6)::before {content: "06";}
.free_area ol > li:nth-child(7)::before {content: "07";}
.free_area ol > li:nth-child(8)::before {content: "08";}
.free_area ol > li:nth-child(9)::before {content: "09";}
.free_area ol > li:nth-child(10)::before {content: "10";}
.free_area ol > li:nth-child(11)::before {content: "11";}
.free_area ol > li:nth-child(12)::before {content: "12";}
.free_area ol > li:nth-child(13)::before {content: "13";}
.free_area ol > li:nth-child(14)::before {content: "14";}
.free_area ol > li:nth-child(15)::before {content: "15";}
.free_area ol > li:nth-child(16)::before {content: "16";}
.free_area ol > li:nth-child(17)::before {content: "17";}
.free_area ol > li:nth-child(18)::before {content: "18";}
.free_area ol > li:nth-child(19)::before {content: "19";}
.free_area ol > li:nth-child(20)::before {content: "20";}

.free_area hr {
	height: 1px;
	background-color: #ccc;
	width: 100%;
	border: none;
	margin: 3.0em 0 3.0em;
}

.free_area table {
	font-size: 100%;
}
.free_area table {
	margin-top: 1.0em;
	border-right: solid 1px #ccc;
	border-top: solid 1px #ccc;
}
.free_area table th,
.free_area table td {
	box-sizing: border-box;
	line-height: 2.0em;
	padding: .8em 2%;
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
	border-left: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
}
.free_area table th {
	background: #F0F0F0;
	font-weight: bold;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.free_area h3,
.entry-inf,
.free_area h2,
.free_area h4,
.free_area h5,
.free_area h6,
.free_area p,
.free_area div,
.free_area ul,
.free_area ol,
.free_area table {
	width: 86vw;
}
.free_area h2 {
	padding: 1.0em 3%;
}
.free_area h4 {
	border-left-width: 8px;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.free_area h2,
.entry-inf,
.free_area h3,
.free_area h4,
.free_area h5,
.free_area h6,
.free_area p,
.free_area div,
.free_area ul,
.free_area ol,
.free_area table {
	width: 84vw;
}
.free_area h2,
.free_area h3,
.free_area h4,
.free_area h5 {
	margin-bottom: 1.5em;
}
.free_area h2 {
	font-size: 140%;
	padding: 1.0em 3%;
	letter-spacing: .05em;
	line-height: 1.4em;
	background-size: 30% 100%, 30% 100%;
}
.free_area h3 {
	font-size: 130%;
	letter-spacing: .05em;
	line-height: 1.4em;
}
.free_area h4,
.free_area h5 {
	font-size: 120%;
	letter-spacing: .05em;
	line-height: 1.4em;
}
.free_area h4 {
	padding: .6em 3%;
	border-left-width: 5px;
}

.free_area ul > li,
.free_area ol > li {
	line-height: 1.8em;
	padding-left: 2.2em;
}
.free_area ol > li::before {
	font-size: 160%;
	letter-spacing: normal;
	top: .04em;
}

.free_area table {
	font-size: 95%;
	letter-spacing: normal;
	line-height: 1.8em;
}
}



/*自由入力欄（カスタムスタイル）
---------------------------------------------------------*/
/*リンクボタン*/
.free_area a.free_btn1,
.single_page .btn_back a {
	display: inline-block;
	background: #fff;
	text-decoration: none !important;
	text-align: left;
	color: #443c34;
	font-size: 85%;
	font-weight: bold;
	letter-spacing: .1em;
	line-height: 1.4em;
	padding: 1.6em 1.8em;
	padding-right: 4.5em;
	border-radius: .8em;
	border: solid 1px #dbdbdb;
	margin-right: 1.0em;
	margin-top: 1.0em;
	position: relative;
}
.free_area p a.free_btn1:last-of-type,
.single_page .btn_back a {
	margin-right: 0 !important;
}
.free_area a.free_btn1::before,
.single_page .btn_back a::before {
	font-family: 'fontello';
	content: '\e805';
	color: #103666;
	font-weight: normal;
	position: absolute;
	right: 1.0em;
	top: 50%;
	transform: translateY(-50%);
}
.free_area a.free_btn1:hover,
.single_page .btn_back a:hover {
	background: #dbdbdb;
}

.single_page .btn_back {
	margin-top: 80px;
	border-top: solid 1px #d9d9d9;
	padding-top: 80px;
}
.single_page .btn_back a {
	margin-top: 0;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
/*リンクボタン*/
.free_area a.free_btn1,
.single_page .btn_back a {
	font-size: 100%;
	padding: 1.6em 1.5em;
	padding-right: 3.0em;
}

.single_page .btn_back {
	margin-top: 6%;
	padding-top: 6%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
/*リンクボタン*/
.free_area a.free_btn1,
.single_page .btn_back a {
	display: block;
	font-size: 100%;
	letter-spacing: .02em;
	padding: 1.2em 1.0em;
	padding-right: 1.5em;
	margin-right: 0;
}
.free_area a.free_btn1::before,
.single_page .btn_back a::before {
	font-size: 80%;
	right: .6em;
}

.single_page .btn_back {
	margin-top: 10%;
	padding-top: 10%;
}
}



/*自由入力欄（画像）
---------------------------------------------------------*/
.free_area img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.free_area .aligncenter {
	max-width: 100%;
}
/*画像の上限を設定する場合
.free_area .aligncenter {
	max-width: 800px;
}*/
.free_area .alignright,
.free_area .alignleft {
	width: 40%;
	max-width: 415px;
	margin-bottom: 1.0em;
}
.free_area .alignright {
	float: right;
	margin-left: 2.5em;
}
.free_area .alignleft {
	float: left;
	margin-right: 2.5em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
/*.free_area .aligncenter {
	max-width: 100%;
}*/
.free_area .alignright,
.free_area .alignleft {
	width: 70%;
	float: none;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.0em !important;
}
}



/*隙間
---------------------------------------------------------*/
.free_area div,
.free_area table,
.free_area ul,
.free_area ol {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2.0em;
}
.free_area table:has(+ h2),
.free_area ol:has(+ h2),
.free_area ul:has(+ h2),
.free_area p:has(+ h2) {
    margin-bottom: 4em !important;
}
.free_area table:has(+ h3),
.free_area ol:has(+ h3),
.free_area ul:has(+ h3),
.free_area p:has(+ h3),
.free_area table:has(+ h4),
.free_area ol:has(+ h4),
.free_area ul:has(+ h4),
.free_area p:has(+ h4),
.free_area table:has(+ h5),
.free_area ol:has(+ h5),
.free_area ul:has(+ h5),
.free_area p:has(+ h5) {
    margin-bottom: 3em !important;
}
.free_area p:has(+ div),
.free_area p:has(+ table),
.free_area p:has(+ .free_style1) {
    margin-bottom: 2em !important;
}
.free_area > *:last-child,
.free_area li > p,
.free_area table p {
    margin-bottom: 0 !important;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.free_area table:has(+ h2),
.free_area ol:has(+ h2),
.free_area ul:has(+ h2),
.free_area p:has(+ h2) {
    margin-bottom: 5em !important;
}
.free_area table:has(+ h3),
.free_area ol:has(+ h3),
.free_area ul:has(+ h3),
.free_area p:has(+ h3),
.free_area table:has(+ h4),
.free_area ol:has(+ h4),
.free_area ul:has(+ h4),
.free_area p:has(+ h4),
.free_area table:has(+ h5),
.free_area ol:has(+ h5),
.free_area ul:has(+ h5),
.free_area p:has(+ h5) {
    margin-bottom: 3em !important;
}
.free_area p:has(+ div),
.free_area p:has(+ table),
.free_area p:has(+ .free_style1) {
    margin-bottom: 3em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.free_area table:has(+ h2),
.free_area ol:has(+ h2),
.free_area ul:has(+ h2),
.free_area p:has(+ h2) {
    margin-bottom: 5em !important;
}
.free_area table:has(+ h3),
.free_area ol:has(+ h3),
.free_area ul:has(+ h3),
.free_area p:has(+ h3),
.free_area table:has(+ h4),
.free_area ol:has(+ h4),
.free_area ul:has(+ h4),
.free_area p:has(+ h4),
.free_area table:has(+ h5),
.free_area ol:has(+ h5),
.free_area ul:has(+ h5),
.free_area p:has(+ h5) {
    margin-bottom: 3em !important;
}
.free_area p:has(+ div),
.free_area p:has(+ table),
.free_area p:has(+ .free_style1) {
    margin-bottom: 3em;
}
}



/*監修医師
---------------------------------------------------------*/
.supervision_box {
	margin-top: 100px;
	width: 100%;
	max-width: 910px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	background: #faf9f8;
	padding: 60px 4%;
}
.supervision_box .lead {
	text-align: center;
	line-height: 1.6em;
	margin-bottom: 6%;
}
.supervision_box .flex_box {
	width: 100%;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.supervision_box .flex_box .box_l {
	width: 30%;
	text-align: center;
}
.supervision_box .flex_box .box_r {
	width: 67%;
	display: flex;
    justify-content: space-between;
	column-gap: 4%;
}
.supervision_box .flex_box .box_l dt {
	font-size: 80%;
	font-weight: bold;
	letter-spacing: .1em;
	line-height: 1.4em;
	margin: 1.2em 0 .5em;
}
.supervision_box .flex_box .box_l dd {
	color: #103666;
	font-size: 115%;
	font-weight: bold;
	letter-spacing: .06em;
	line-height: 1.4em;
}
.supervision_box .flex_box .box_r dt {
	font-weight: bold;
	line-height: 1.4em;
	margin-bottom: .5em;
}
.supervision_box .flex_box .box_r dd {
	color: #333333;
	font-size: 80%;
	letter-spacing: .05em;
	line-height: 1.5em;
}
.supervision_box .flex_box .box_r li {
	padding-left: 1.0em;
	position: relative;
	margin-bottom: .3em;
}
.supervision_box .flex_box .box_r li:last-child {
	margin-bottom: 0;
}
.supervision_box .flex_box .box_r li::before {
	content: "";
	position: absolute;
	width: .4em;
	height: .4em;
	background: #103666;
	left: 0;
	top: .5em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.supervision_box {
	margin-top: 8%;
	padding: 4% 4%;
	font-size: 110%;
}
.supervision_box .lead {
	margin-bottom: 4%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.supervision_box {
	margin-top: 12%;
	padding: 8% 6%;
	font-size: 110%;
}
.supervision_box .lead {
	text-align: left;
}
.supervision_box .flex_box {
	display: block;
}
.supervision_box .flex_box .box_l {
	width: 100%;
	text-align: left;
	display: flex;
    justify-content: space-between;
    align-items: center;
	margin-bottom: 6%;
}
.supervision_box .flex_box .box_r {
	width: 100%;
	display: block;
	column-gap: 0;
}
.supervision_box .flex_box .box_l div {
	width: 40%;
}
.supervision_box .flex_box .box_l dl {
	width: 55%;
}
.supervision_box .flex_box .box_l dt {
	letter-spacing: .05em;
	margin: 0 0 .5em;
}
.supervision_box .flex_box .box_l dd {
	font-size: 130%;
}
.supervision_box .flex_box .box_r dl {
	margin-top: 1.0em;
}
.supervision_box .flex_box .box_r dt {
	font-weight: bold;
	line-height: 1.4em;
	margin-bottom: .5em;
}
}



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

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
}

@media only screen and (max-width: 767px) {
  .free_area li p,
  .free_area li div,
  .free_area li ul,
  .free_area li ol,
  .free_area li table {
    width: auto;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .free_area ul > li,
  .free_area ol > li {
    overflow-wrap: anywhere;
    word-break: normal;
  }
}