@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap');

@import url(https://fonts.googleapis.com/css?family=Noto+Serif+JP:500,600,700);


@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,700;1,700&family=Josefin+Slab:wght@500;600;700&display=swap');

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {margin:0; padding:0;}table { border-collapse:collapse; border-spacing:0;}fieldset,img { border:0; vertical-align:bottom;}address,caption,cite,scode,dfn,em,strong,th,var {font-style:normal; font-weight:normal;}
/*ol,ul,li { list-style:none; padding:0; margin:0;}*/
caption,th { text-align:left;}h1,h2,h3,h4,h5,h6 {font-size:100%;	font-weight:normal;}q:before,q:after {content:'';}abbr,acronym { border:0;}
*, *::before, *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

html,body {
	width: 100%;
    overflow-x: hidden;
}


body{
    font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-weight: 400;
	font-size: 14px;
	color: #111;
    -webkit-text-size-adjust: 100%;
    letter-spacing: 1.3px;
    word-break: break-all;
    background-color: #fff;
}

input,button,textarea,select {
    font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
}
p {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    line-height: 1.8;
    letter-spacing: 1.5px;
}

img {
	max-width: 100%;
}

:root {
    --white: #fff;
    --gray: #ddd;
    --light-gray: #f5f5f5;
    --yellow: #d9ab2b;
    --yellow-hover: #b78c14;
    --black: #333;
    --brown: #9f8d7c;
    --brown-hover: #6b5138;
    --pink: #ca5495;
    --green: #518576;
    --purple: #9058a7;
    --light-purple: #f4eff7;
    --blue: #0067B6;
    --navy: #194062;
    --light-blue: #44b3e1;
    --orange: #d87826;
    --red: #EF584E;
    --bg: #ededed;
}


/* マウスオーバー時の背景色 */
::selection {
    background: var(--blue);
    color: #fff;
}

/* 明朝体の指定 */
.mincho {
    font-family: 'Noto Serif JP', "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
/* 英語の指定 */
.gf,.en {
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
}
/*
.en {
	font-family: 'Cormorant Garamond', serif;
}
*/
/* FontIcon */
.fa, .fas, .fa-solid, .fa-regular {
    font-weight: 900;
    padding-right: 4px;
}



.icon_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid #909ea0;
    border-radius: 100%;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-property: all;
    transition-delay: 0s;
}
.icon_arrow:before {
    content: "";
    display: block;
    width: 5px;
    height: 9px;
    background: url(../images/arrow_link.svg) no-repeat 50% 50%;
    background-size: 100% 100%;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-property: all;
    transition-delay: 0s;
}
a:hover .icon_arrow {
	text-decoration: none;
	background-color: #909ea0;
}
a:hover .icon_arrow:before {
	filter: brightness(0%) invert(100%);
}

.viewbtn a,
.viewbtn a:link,
.viewbtn a:visited {
    position: relative;
    display: inline-block;
    width: 120px;
    font-size: 12px;
    color: var(--black);
}
.viewbtn a:before, .viewbtn a:after {
    content: "";
    display: block;
    height: 1px;
    background: var(--black);
    position: absolute;
    bottom: -8px;
}
.viewbtn a:before {
    width: 100%;
    right: 0;
}
.viewbtn a:after {
    width: 0;
    left: 0;
}
.viewbtn a:hover {
	text-decoration: none;
	opacity: 0.7;
}
.viewbtn a:hover:before {
    width: 0;
    transition: 0.4s ease-in-out;
}
.viewbtn a:hover:after {
    width: 100%;
    transition: 0.4s 0.1s ease-in-out;
}

button[type="submit"],
input[type="submit"],
input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  box-sizing: border-box;
  cursor: pointer;
}
button[type="submit"]::-webkit-search-decoration,
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
button[type="submit"]::focus,
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

strong {
	font-weight: 600;
    /*background: rgba(0, 0, 0, 0) linear-gradient(transparent 78%, #ffeb00 0%) repeat scroll 0 0;*/
}

/* module
----------------------------------------------------*/

.mb {
	display: none !important;
}
.mod {
    font-weight: bold;
    color: #da1e1e;
}
.fa {
	margin-right: 5px;
}
.p_100 {
		padding: 100px 0px;
}
.p_80 {
	padding:80px 0px;
}
.p_60 {
	padding:60px 0px;
}
.p_50 {
	padding:50px 0px;
}
.p_40 {
	padding:40px 0px;
}
.p_30 {
	padding:30px 0px;
}
.p_20 {
	padding:20px 0px;
}
.p_10 {
	padding:10px 0px;
}

.p_t_0 {
	padding-top: 0px !important;
}

.p_t_10 {
	padding-top: 10px !important;
}
.p_t_20 {
	padding-top: 20px !important;
}
.p_t_30 {
	padding-top: 30px !important;
}
.p_t_50 {
	padding-top: 50px !important;
}

.p_b_0 {
	padding-bottom: 0px !important;
}
.p_b_10 {
	padding-bottom: 10px !important;
}
.p_b_20 {
	padding-bottom: 20px !important;
}
.m_30 {
	margin: 30px 0px !important;
}
.m_t_5 {
	margin-top: 5px !important;
}
.m_t_10 {
	margin-top: 10px !important;
}
.m_t_12 {
	margin-top: 12px !important;
}
.m_t_20 {
	margin-top: 20px !important;
}
.m_t_30 {
	margin-top: 30px !important;
}
.m_t_40 {
	margin-top: 40px !important;
}
.m_t_50 {
	margin-top: 50px !important;
}
.m_t_60 {
	margin-top: 60px !important;
}
.m_t_80 {
	margin-top: 80px !important;
}
.m_b_5 {
	margin-bottom: 5px !important;
}
.m_b_10 {
	margin-bottom: 10px !important;
}
.m_b_12 {
	margin-bottom: 12px !important;
}
.m_b_20 {
	margin-bottom: 20px !important;
}
.m_b_30 {
	margin-bottom: 30px !important;
}
.m_b_40 {
	margin-bottom: 40px !important;
}
.m_b_50 {
	margin-bottom: 50px !important;
}
.m_b_60 {
	margin-bottom: 60px !important;
}
.m_b_80 {
	margin-bottom: 80px !important;
}
.m_l_5 {
    margin-left: 5px !important;
}
.m_r_5 {
    margin-right: 5px !important;
}
.m_r_10 {
    margin-right: 10px !important;
}
.m_r_20 {
    margin-right: 20px !important;
}
.m_r_30 {
    margin-right: 30px !important;
}
.m_r_50 {
    margin-right: 50px !important;
}
.m_l_10 {
    margin-left: 10px !important;
}
.m_l_30 {
    margin-left: 30px !important;
}
.m_l_50 {
    margin-left: 50px !important;
}
.flex_in {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.second_row {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}
.second_row .left,
.second_row .right {
    width: 50%;
    vertical-align: middle;
}

.fl_l {
    float: left !important;
}
.fl_r {
    float: right !important;
}
.overflow {
    overflow: hidden;
}
.fixed{
	position: fixed;
	top: 0;
	padding: 0;
	width: 100%;
	z-index: 1000;
}
.table {
	display: table;
}
.clearfix {
    display: inline-block;
    min-height: 1%;
    display: block;
    overflow: hidden;
}
.bg_blue {
    background-color: #178fbc !important;
}
.bg_yellow {
	background-color:#ffdf2f !important;
}
.color_navy {
    color: #239260 !important;
}
.color_blue {
    color: #2fa5cc !important;
}
.color_red {
	color: #cd1717 !important;
}
.color_yellow {
	color:#FEFF2A !important;
}
.color_orange {
	color: #E17A14 !important;
}
.color_white {
	color: #fff !important;
}
.bold {
	font-weight: bold !important;
}
.b_red {
	font-weight: bold !important;
	color: #FF3D3D !important;
}
.t_left {
	text-align: left !important;
}
.t_right {
	text-align: right !important;
}
.t_center {
	text-align: center !important;
}

.f_size26 {
	font-size: 26px !important;
}

.f_size24 {
	font-size: 24px !important;
}

.f_size18 {
	font-size: 18px !important;
}
.f_size16 {
	font-size: 16px !important;
}
.f_size14 {
	font-size: 14px !important;
}
.f_size13 {
	font-size: 13px !important;
}
.f_size12 {
	font-size: 12px !important;
}
.f_size11 {
	font-size: 11px !important;
}
.f_size10 {
	font-size: 10px !important;
}

hr {
    border: none;
    border-bottom: 1px solid #EEE;
}

.p_t_50 {
	padding-top: 50px !important;
}
.b_t_g {
	border-top: 1px solid #EEE;
}
.b_b_g {
	border-bottom: 1px solid #EEE;
}
.cover_yellow {
    background: #F7F7EB;
}
.cover_gray {
    background: #f7f7f7;
}
.cover_black {
    background: #333;
}
.cover_navy {
    background: #24313c;
}
.white.head_title h2,
.white.head_title h2 span.sub {
	color: #fff;
}
.white.head_title h2:before {
    background: #fff;
}
hr {
    border: none;
    border-bottom: 1px solid #EEE;
}
.w_80_txt {
    width: 80%;
    margin: 10px auto 0px;
    text-align: center;
}

.w_60_txt {
    width: 60%;
    margin: 10px auto 0px;
    text-align: center;
}

.bd_none {
	border: 0px !important;
}

.w_80 {
	width: 80% !important;
	margin: 0 auto;
}
.w_60 {
	width: 60% !important;
	margin: 0 auto;
}
.w_50 {
	width: 50% !important;
	margin: 0 auto;
}
.w_40 {
	width: 40% !important;
	margin: 0 auto;
}

.none {
	display: none !important;
}


/* fadein
----------------------------------------------------------- */

.fade {
    position: relative;
    transition: 0.8s;
    opacity: 0;
    transform: translate(0,150px);
    -webkit-transform: translate(0,150px);
}
.fade_left {
    position: relative;
    transition: 0.8s;
    opacity: 0;
    transform: translateX(150px);
    -webkit-transform: translateX(150px);
}
.fade_right {
    position: relative;
    transition: 0.8s;
    opacity: 0;
    transform: translateX(-150px);
    -webkit-transform: translateX(-150px);
}
.fade_down {
    position: relative;
    transition: 0.8s;
    opacity: 0;
    transform: translate(0,-150px);
    -webkit-transform: translate(0,-150px);
}
.fade_in {
    opacity: 1.0 !important;
    transform: translate(0,0);
    -webkit-transform: translate(0,0);
}

/* lauout
----------------------------------------------------*/

.inner:after, #header #g_navi:after,#content:after, #side:after,、s:after,ul:after,dl:after,#photo-view:after,.clear:after,.wrap:after,.contents-box-list:after {
    content: ".";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
}

/*
a {
    color: var(--blue);
	text-decoration: none;
}
a:link {
    color: var(--blue);
}
a:visited {
	color: #9B1818;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
*/
section {
	padding: 90px 0px;
}
body.home section {
	padding: 120px 0px;
}


.area {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0px;
}
#wrapper {
	margin: 0 auto;
}

#content {
	margin: 0 auto;
	padding: 60px 0px 30px;
}
body.home #content {
	padding-top: 0px;
}

#content .in {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

body #content.cmt_in {
	padding: 40px 0px;
	background-color: var(--bg);
}
body.wide #content .inner {
    max-width: 746px;
    margin: 0 auto;
}
body.wide #content .inner .base {
    width: 100%;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
.base_area p {
	margin-bottom: 20px;
}

.inner {
	position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

#main {
	width: calc(100% - 280px);
    padding-left: 40px;
}
#main .in {
	
}
.wide #main {
	float: none;
	width: 100%;
}
#main img {
    max-width: 100%;
    /*height: auto;*/
}
img.aligncenter {
    display: block;
    margin: 0 auto;
    text-align: center;
}

#side {
	width: 280px;
}
#side_wrap {
	width: 280px;
}

p.rel {
	margin-top: 10px;
	color: #999;
	font-size: 12px;
}


/*	html部品
----------------------------------------------------*/


.field_box {
	margin-top: 20px;
}
#content .field_box .in {
	width: 100%;
}
.field_box .in > ul > li {
    display: table;
    width: 100%;
	position: relative;
    padding-top: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #ddd;
}
.field_box .in > ul > li:last-child {
    padding-bottom: 10px;
    border-bottom: 0px;
}
.field_box .in > ul > li .th,
.field_box .in > ul > li .th2,
.field_box .in > ul > li .td {
    display: table-cell;
    vertical-align: middle;
}
.field_box .in > ul > li .th {
    width: 180px;
    padding-right: 20px;
    font-weight: 600;
    text-align: center;
    border-right: 1px dotted #b1b1b1;
}
.field_box .in > ul > li .th2 {
    width: 70px;
    text-align: center;
    border-right: 1px dotted #b1b1b1;
}
.field_box .in > ul > li .td {
    padding-left: 3%;
}
.field_box .in > ul > li .td p {
    margin-bottom: 10px;
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}
.must {
    display: inline-block;
    padding: 2px 8px;
    background: #ff4f4f;
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
}
.free {
    display: inline-block;
    padding: 2px 8px;
    background: #4e94e4;
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
}

label.lb_fl {
    display: inline-block;
    vertical-align: top;
    margin: 6px 0px;
    width: 49%;
}


input[type="search"],
input[type="text"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="tel"],
input.login,
select {
    width: 100%;
    max-width: 100%;
	height: 42px;
	line-height: 1.6;
	padding: 4px;
	border-radius:3px;
	background-color: white;
	border: 1px solid #dcdcdc;
	box-shadow: 0 1px 0 white;
}

#wrapper table select {
	padding: 0px 4px;
	height: 36px;
	line-height: 1.6;
}

textarea {
    width: 100%;
    max-width: 100%;
	min-height: 65px;
	padding: 4px;
	border-radius:3px;
	background-color: white;
	border: 1px solid #dbdbdb;
	box-shadow: 0 1px 0 white;
}

.box {
    position: relative;
    padding: 20px;
    border: solid 1px #ddd;
    background-color: #fff;
    box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 20%);
}


/* 本文の装飾タグ周り
----------------------------------------------------------- */

.cautionbox {
	margin-bottom: 20px;
    padding: 20px;
    border: 2px solid #ac6872;
}

.cautionbox-title {
	margin-bottom: 10px;
	color: #ac6872;
	font-size: 16px;
	font-weight: 600;
}
.cautionbox-title:before {
	display: inline-block;
	margin-right: 5px;
	font-family: FontAwesome;
	content: "\f071";
}
.base_area .cautionbox p {
	margin-bottom: 0px;
	color: #ac6872;
	line-height: 1.6;
}

/*補足説明[memo]*/
.memo_area {
    margin: 20px 0px;
	padding: 20px;
	background: #fff9e5;
	border: 2px solid #d3ccb7;
	color: #545454;
	box-shadow: none;
}
.memo_area .memo_ttl {
	margin-bottom: 10px;
	color: #b5895f;
	font-size: 16px;
	font-weight: 600;
}
.memo_area .memo_ttl:before {
	display: inline-block;
	margin: 0 7px 0 0;
	font-family: FontAwesome;
	font-weight: normal;
	text-align: center;
	vertical-align: middle;
	content: "\f040";
}
.memo_area p {
	margin-bottom: 0;
    font-size: 14px;
    color: #6c5b42;
    line-height: 24px;
}

.memo_area ul {
    margin: 0px 20px 0px 20px;
}
.memo_area ul li {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 400;
    color: #000;
}

/*結論*/

.result {
    position: relative;
    margin: 2em 0;
    padding: 25px 10px 7px;
    border: solid 2px #FFC107;
}
.result .box-title {
    position: absolute;
    display: inline-block;
    top: -2px;
    left: -2px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    letter-spacing: 2.5px;
    font-size: 15px;
    background: #FFC107;
    color: #ffffff;
    font-weight: 600;
}
.result p {
	margin-bottom: 0;
    padding: 8px;
    font-size: 15px;
    font-weight: 600;
}

/*メリット*/


.box_merit {
    display: block;
    position: relative;
    margin: 20px 0;
    padding: 0 20px 20px;
    width: 100%;
    background: #fff9eb;
}
.box_merit_span {
    display: inline-block;
    position: relative;
    left: -21px;
    top: 20px;
    margin-bottom: 10px;
    padding: 3px 12px 3px;
    height: 30px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #f46b6b;
    box-shadow: 0 0 2px rgb(0 0 0 / 12%);
}

.box_merit_span:before {
  position: absolute;
  content: "";
  top: 0;
  left: -7px;
  border: none;
  height: 38px;
  width: 7px;
  background: #f46b6b;
  border-radius: 5px 0 0 5px;
}

.box_merit_span:after {
  position: absolute;
  content: "";
  bottom: -7px;
  left: -5px;
  border: none;
  height: 7px;
  width: 5px;
  background: #a65a5a;
  border-radius: 5px 0 0 5px;
}

.box_merit .li-check li:before {
  color: #f46b6b;
}

.box_merit .ol_circle li:before {
  background: #f46b6b;
}

.box_merit ul {
	margin: 0px;
    padding-top: 20px;
}
.box_merit li {
    margin-bottom: 8px;
    padding: 0px;
    font-weight: 600;
}
.box_merit li:last-child {
    margin-bottom: 0px;
}

.box_merit ol {
	counter-reset:num;
	list-style-type: none!important;
	padding:0;
	margin:0;
	padding-top: 1.5rem;
}
.box_merit ol li {
	position: relative;
	font-size: 15px;
	padding-left: 35px;
}

.box_merit ol li:before {
	position: absolute;
	top: 2px;
	left: 0;
	counter-increment: num;
	content: counter(num);
	display:inline-block;
    background: #a17525;
	color: #fff;
    font-family: 'Roboto', sans-serif;
	font-weight: 600;
	font-size: 14px;
	border-radius: 50%;
	width: 22px;
	height: 22px;
	line-height: 23px;
	text-align: center;
}



/* ボタン
---------------------------------*/

.btn_area {
	margin: 30px auto 0;
}
.btn_area.second {
	text-align: center;
}
.btn_area.second .button_n {
	margin-right: 15px;
}
.button_y {
	display: inline-block;
    min-width: 180px;
    padding: 16px 12px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    color: #fff !important;
    text-decoration: none;
    background: var(--navy);
    border: none;
    border-radius: 30px;
    transition: .25s linear;
    -webkit-transition: .25s linear;
    -moz-transition: .25s linear;
}

.button_y:hover {
    background: #f1b200;
    text-decoration: none;
}

.button_n2,
.button_n {
    position: relative;
    display: inline-block;
    min-width: 180px;
    text-align: center;
    padding: 14px 5px;
	font-size: 13px;
    font-weight: bold;
    color: var(--navy) !important;
    letter-spacing: 3px;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid var(--navy);
    border-radius: 30px;
}
.button_n2:hover,
.button_n:hover {
    color: #fff !important;
    background-color: var(--navy) !important;
    text-decoration: none;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
}


.btn_contact {
    display: inline-block;
    width: 110px;
    height: 86px;
    text-align: center;
    padding: 18px 5px;
    font-size: 13px;
    font-weight: 600;
    color: #fff !important;
    text-decoration: none;
    background: var(--navy);
}
.btn_contact:hover {
    background: #f1b200;
	text-decoration: none;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}
.btn_contact span.txt {
    display: block;
    margin: 8px 0px 1px;
    line-height: 1;
    letter-spacing: 1px;
}

a.arrow {
	position: relative;
}
a.arrow:after {
    content: "";
    position: absolute;
    top: 6px;
    right: -14px;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--black);
    border-right: 2px solid var(--black);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}


.btn_menu button,
.btn_menu a {
    position: relative;
    display: inline-block;
    margin: 0 3px;
    padding: 10px 22px;
    font-size: 12px;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    color: #878787 !important;
    background: #fff;
    box-shadow: 0px 1px 2px 0px rgb(0 0 0 / 10%);
    border: 1px solid #e7e7e7;
}
.btn_menu a .svg_icon {
    opacity: 0.6;
}
.btn_menu button:hover,
.btn_menu a:hover {
    color: #555 !important;
    background: #fff;
    border: 1px solid #767676;
    transition: .3s;
}


a.link {
	position: relative;
     padding-left: 25px;
}
a.link:before {
    font-family: 'Font Awesome 5 Free';
    content: "\f35d";
	font-weight: 700;
    position: absolute;
    left: 2px;
    top: -2px;
    color: var(--navy);
}

.pdflink img {
    display: inline-block;
    width: 23px;
    height: 26px;
    margin-right: 5px;
    border-radius: 0;
}
.check_list {
    margin: 20px 0px;
    padding: 15px;
    border: 2px solid var(--blue);
}
.check_list li {
	position: relative;
    margin-bottom: 10px;
    padding-left: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
}
.check_list li:last-child {
	margin-bottom: 0px;
}

.check_list li:before {
    font-family: 'Font Awesome 5 Free';
    content: "\f00c";
    position: absolute;
    left: 0em;
    top: 4px;
    color: var(--blue);
    font-weight: 900;
}

/* modal
---------------------------------*/

.modal_area {
	display: none;
	margin: 0 auto;
	padding: 30px;
	max-width: 780px;
	width: 92%;
    background-color: #fff;
    box-shadow: 0px 1px 5px 0px rgb(31 62 32 / 15%);
}
#lean_overlay {
    position: fixed;
    z-index: 1001;
    top: 0px;
    left: 0px;
    height:100%;
    width:100%;
    background: #000;
    display: none;
}



@media screen and ( max-width:760px ) {
	
	
	.button_y {
	    min-width: 160px;
	    padding: 14px 12px;
	    font-size: 12px;
	}

	.field_box .in > ul > li {
		display: block;
    	padding-top: 22px;
	}
    .field_box .in > ul > li .th,
    .field_box .in > ul > li .th2,
    .field_box .in > ul > li .td {
    	display: block;
		width: 100%;
		padding: 0;
	    border: 0;
	    text-align: left;
	}
    .field_box .in > ul > li .th {
    	margin: 10px 0px;
	}
	.field_box .in > ul > li:first-child .th {
		margin-top: 0px;
	}
    .field_box .in > ul > li .th2 {
		position: absolute;
	    top: 10px;
	    right: 5px;
	    text-align: right;
	}
	.must,.free {
	    padding: 2px 8px;
	    font-size: 11px;
	}
	.field_box .head {
	    height: auto;
	    padding: 12px 12px 12px 16px
    }
    .field_box .in > ul > li .td {
		
	}
	.appo_date_id {
    	display: block;
    	margin: 8px 8px 16px;
    }

}