@charset "utf-8";
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    vertical-align:baseline;
    background:transparent;
    list-style: none;
    font-weight: normal;
    vertical-align: top;
}

*, *:before, *:after {
    box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
  }
a{
    text-decoration: none;
}
/* ipad　最後の一文字だけ改行するバグ */
.paragraph::after {
	content: '.';
	display: inline-block;
	width: 0;
	color: transparent;
	pointer-events: none;
}

html{
	font-size: 62.5%;
	/* font-sizeは16pxの62.5%の10px */
	line-height: 1.6;
}
body{
	font-size: 1.6rem;
}

h1{
	text-align: center;
	font-size: 2.8rem;
	font-weight: bold;
	padding: 40px 0 40px 0;
}

.description{
	width: 800px;
	margin: 0 auto;
	padding-bottom: 40px;
}

/* タブ */

input,
.tab_item{
	display: none;
}


.tab_label{
	font-size: 1.6rem;
	cursor: pointer;

	width: calc(100%/2);
	display: inline-block;
	
	border-top: 6px solid #007aff;
	background-color: #ffffff;
	color: #007aff;

	text-align: center;
	padding: 10px 10px 10px 10px;
	font-weight: bold;
}

#tab_btn1:checked +.tab_label,
#tab_btn2:checked +.tab_label{
	background-color: #007aff;
	color: #ffffff;
	border-left: 6px solid #007aff;
	border-right: 6px solid #007aff;
	cursor: auto;
}

#tab_btn1:checked ~ #tab_item01,
#tab_btn2:checked ~ #tab_item02{
	display: inline-block;
	width: 100%;
}
.h3-tab{
	padding:10px 10px 16px;
}

.h3-tab p{
	font-weight: bold;
}
.triangle{
	width: 100%;
	height: 40px;
	margin: 30px 0 40px 0;
}
.triangle p{
	content: "";
	width: 0;
	height: 0;
	margin: 0 auto;
	border-left: 40px solid transparent;
	border-right: 40px solid transparent;
	border-top: 40px solid #a8a8a8;
}

.triangle01,
.triangle02{
	width: 50%;
	height: 20px;
	margin: 0 auto;
}
.triangle01 p,.triangle02 p{
	content: "";
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 20px solid #007aff;
}
.triangle01 p{
	float: left;
}
.triangle02 p{
	float: right;
}






/* 計算部分 */

.spCont {
	display: none;
}
#sim_goto01,#sim_goto02 {
	margin: 5px auto;
	padding: 15px 20px 5px;
	width: 1100px;
	background-color: #fdfdfd;
}
.form {
	padding: 20px;
	box-sizing: border-box;

}
.forminfo{
	background-color: #fff;
	padding: 10px 0 30px 0;
}

.guide {
	display: inline-block;
	position: relative;
	width: 600px;
	padding: 10px 20px;
	background-color: #007aff;
	border-radius: 4px;
	color: #fff;
	text-align: left;
}
.guide span {
	position: relative;
	font-size: 13px;
	padding-right: 10px;
	color: #007aff;
	z-index: 2;
	font-weight: bold;
}
.guide span::after {
	content: "";
	position: absolute;
	top: -1px;
	left: -5px;
	border-radius: 50%;
	width: 19px;
	height: 19px;
	background-color: #fff;
	z-index: -1;
}
.form ul {
	margin: 20px 0 0;
	padding: 0 40px 40px 40px;
	display: flex;
	flex-direction: row;
}
.form ul li span{
	display: block;
}

.form ul > li {
	width: 50%;
	align-items: center;
	height: 60px;
	padding: 4px 14px;
	margin-bottom: 10px;
}
.form ul > li span {
	position: relative;
	width: 36%;
	text-align: center;
	padding: 2px 0;
	font-size: 20px;
	color: #282828;
	background: url(../img/ico-days.png) left 6px no-repeat;
	-webkit-background-size: 18px auto;
	background-size: 18px auto;
}

.form ul > li:nth-child(2) span {
	background: url(../img/ico-price.png) left 6px no-repeat;
	-webkit-background-size: 18px auto;
	background-size: 18px auto;
}

.form ul > li select {
	width: 100%;
	height: 60px;
	font-size: 20px;
	padding: 5px 25px 5px 13px;
	background: transparent;
	border: none;
	cursor: pointer;
	white-space: nowrap !important;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url(https://mda.jtp.li/common/img/arrow_select02.png) 95% center no-repeat #fff;
	-webkit-background-size: 12px auto;
	background-size: 12px auto;
	border: 1px solid #bbb;
	font-family: "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, Arial, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, sans-serif;
	border-radius: 0;
	font-weight: bold;
} 

.submit {
	text-align: center;
}
.submit button {
	display: inline-block;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-align: center;
	width: auto;
	font-size: 20px;
	padding: 10px 60px 8px;
	margin: 10px auto 0;
	color: #fff;
	background: url(https://mda.jtp.li/common/img/bg_btn.png) no-repeat right center #ff637d;
	-webkit-background-size: auto 106px;
	background-size: auto 106px;
	border: none;
	cursor: pointer;
	transition: all 0.25s linear;
	border-radius: 2px;
}
.submit button:hover {
	opacity: 0.8;
}
.item {
	position: relative;
	margin: 20px 0 10px;
	padding: 40px 20px 15px;
	background-color: #dedede;
	border-radius: 3px;
}
.result{
	text-align: center;}
.item .guide {
	width: 600px;
	position: absolute;
	top: -12px;
	left: 20px;
}
.result li {
	display: flex;
	align-items: center;
	padding: 4px 0;
	border-radius: 2px;
}
.tour {
	background-color: #fff;
}
.tour li {
	border-bottom: 1px dotted #dedede;
	font-size: 18x;
	font-weight: bold;
}
.tour li .name {
	width: 36%;
	font-size: 19px;
	background: url(../img/ico-price_red.png) 80px 3px no-repeat;
	-webkit-background-size: 18px auto;
	background-size: 18px auto;
}
.tour li:nth-child(2) .name {
	background: url(../img/ico-coupon_red.png) 80px 3px no-repeat;
	-webkit-background-size: 18px auto;
	background-size: 18px auto;
}
.tour li .name span {
	padding-left: 36px;
}
.tour li .price {
	width: 64%;
	padding: 0 150px 0 0;
	text-align: right;
	font-size: 20px;
	font-weight: bold;
	color: #e62e8b;
	font-family: "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, Arial, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, sans-serif;
}
.tour li .price span {
	padding-right: 2px;
	font-size: 28px;
	font-family: "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, Arial, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, sans-serif;
}
.tour li .price .yen{
	font-size: 18px;
	/* vertical-align: -moz-middle-with-baseline; */
	vertical-align:bottom;
	font-weight: bold;
}

.campaign {
	display: flex;
	flex-direction: row;
	padding: 0 10px;
	width: 100%;
	background-color: #f1f1f1;
}
.campaign li {
	width: 50%;
	padding: 10px 0;
	justify-content: center;
	font-size: 15px;
}
.campaign li .price {
	width: 30%;
	font-size: 15px;
	padding-left: 8px;
	text-align: left;
}
.campaign li .price span {
	padding-right: 2px;
	font-size: 20px;
}

.bottom-text {
	width: 1000px;
	margin: 0 auto;
	padding: 20px 0 80px 0;
	line-height: 2;
	font-size: 1.4rem;
}
.bottom-text li{
	list-style: circle;
}
.bottom-text li a{
	color: #d80c18;
	border-bottom: 1px solid;
}


/* 下部リンク部分 */
.mailmagazine{
	width: 400px;
	margin: 0 auto;
}
.mailmagazine img{
	width: 100%;
	height: auto;
}

.link{
	width: 900px;
	margin: 0 auto;
	padding: 40px 0 60px 0;
	font-size: 0;
}

.link li{
	display: inline-block;
	padding: 5px;
	width: 50%;
	font-size: 1.8rem;
}

.link li a{
	display: inline-block;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-align: center;
	width: auto;
	width: 100%;
	font-size: 1.8rem;
	padding: 20px;
	color: #fff;
	background: url(https://mda.jtp.li/common/img/bg_btn.png) no-repeat right center #d80c18;
	-webkit-background-size: auto 106px;
	background-size: auto 106px;
	border: none;
	cursor: pointer;
	transition: all 0.25s linear;
	border-radius: 2px;
}

@media screen and (max-width: 768px) {
.description{
	width: 100%;
	padding: 0 5% 40px;
	font-size: 1.4rem;
}
	
/* タブ */
.triangle{
	height: 30px;
	margin: 0px 0 24px 0;
}
.triangle p{
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
	border-top: 30px solid #a8a8a8;
}
.triangle01,
.triangle02{
	width: 55%;
	height: 10px;
}
.triangle01 p,.triangle02 p{
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #007aff;
}





.spCont {
	display: block;
}
#sim_goto01,#sim_goto02 {
	margin: 5px auto 0;
	padding: 5px 2px 0;
	width: 100%;
}
.form {
	/* margin: 10px 0 40px;
	padding: 20px; */
}
.guide {
	width: 100%;
	font-size: 12px;
	padding: 12px 10px 12px 35px;
	text-indent: -24px;
	line-height: 1;
}
.guide span {
	font-size: 10px;
	padding: 0 12px 0 5px;
}
.guide span::after {
	top: 0;
	left: 1px;
	width: 15px;
	height: 15px;
	z-index: -1;
}
.form ul {
	margin: 10px 0 0;
	padding: 0;
	flex-direction: column;
}
.form ul > li {
	width: 100%;
	height: auto;
	padding: 4px 0px;
	margin-bottom: 10px;
}
.form ul > li span {
	width: 36%;
	padding: 2px 0;
	font-size: 16px;
	background: url(../img/ico-days.png) left 6px no-repeat;
	-webkit-background-size: 14px auto;
	background-size: 14px auto;
}
.form ul > li:nth-child(2) span {
	background: url(../img/ico-price.png) left 6px no-repeat;
	-webkit-background-size: 14px auto;
	background-size: 14px auto;
}
.form ul > li select {
	height: auto;
	padding: 8px 10px;
	font-size: 18px;
}
.submit {
	margin-top: 4px;
}
.submit button {
	font-size: 14px;
	padding: 10px 40px 8px;
	margin: 0;
}
.item {
	position: relative;
	margin: 10px 0 0 0;
	padding: 10px 5%;
	background-color: #fff;
}
.item .guide {
	width: 100%;
	position: relative;
	top: 0;
	left: 0;
}
.result li {
	padding: 4px 0;
}
.tour li {
	padding: 8px 0;
	font-size: 16px;
}
.tour li .name {
	width: 60%;
	font-size: 14px;
	background: url(../img/ico-price_red.png) 18px 2px no-repeat;
	-webkit-background-size: 14px auto;
	background-size: 14px auto;
}
.tour li:nth-child(2) .name {
	background: url(../img/ico-coupon_red.png) 18px 2px no-repeat;
	-webkit-background-size: 14px auto;
	background-size: 14px auto;
}
.tour li .name span {
	padding-left: 0;
}
.tour li .price {
	width: 40%;
	padding: 0 24px 0 0;
	font-size: 14px;
}
.tour li .price span {
	padding-right: 2px;
	font-size: 26px;
}
.tour li .price .yen{
	font-size: 14px;
	/* vertical-align: -moz-middle-with-baseline; */
	vertical-align:bottom;
}
.campaign {
	flex-direction: column;
	padding: 0 5px;
	width: 100%;
}
.campaign li {
	position: relative;
	width: 100%;
	padding: 6px 15px;
	font-size: 12px;
	justify-content: start;
}
.campaign li .price {
	position: absolute;
	font-size: 12px;
	right: 0;
}
.campaign li .price span {
	padding-right: 2px;
	font-size: 14px;
}
.bottom-text {
	width: 100%;
	margin: 0 auto;
	padding: 10px 10% 40px 10%;
	font-size: 1.2rem;
}
/* 下部リンク部分 */
.mailmagazine{
	width: 90%;
	margin: 0 auto;
}

.link{
	width: 100%;
	margin: 0 auto;
	padding: 40px 5% 60px 5%;
}
.link li a{
	display: block;
	width: 100%;
	padding:20px;
	font-size: 1.6rem;
}
.link li{
	display: block;
	width:100%;
	font-size: 1.4rem;
}

}
