@charset "UTF-8";

/* ----------------------------------------------------
 共有
---------------------------------------------------- */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

p:not(:last-of-type) {
	margin-bottom: 1em;
	word-wrap: break-word;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset,
img {
	border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
	font-style: normal;
	font-weight: normal;
}

ol,
ul {
	list-style: none;
}

caption,
th {
	text-align: left;
}

a {
	text-decoration: none;
	transition: all 0.5s ease 0s;
}

a:hover {
	opacity: 0.7;
}

area {
	border: none;
	outline: none;
}

img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

/* commonn1260.css 上書き */
header.com_global_header_sp h1 {
	width: 74px;
}

/*-----------------------------------------------------*/
/* パンくずエリアのスタイル
/*-----------------------------------------------------*/

div#breadSns{
  width:980px;
  margin:0 auto;
  padding:0;
  height:32px;
}

/*     パンくず
------------------------------------------*/

div#bread{
	float:left;
	margin:6px 0 0 5px;
}

.wrap{display: none;}/*折り返し用*/

/*    IE用　　*/
div#bread{
	margin/*\**/: 0 0 0 5px\9;
}

@media screen and (max-width:640px) {
	div#breadSns {
		display: none;
	}
}

/* common
----------------------------------- */
body {
	background: #f0f0f0;
	line-height: 1.5;
	color: #000;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-style: normal;
	text-align: left;
}

@media screen and (max-width: 768px) {}

.w890 {
	max-width: 890px;
	margin: 0 auto;
}

.w950 {
	max-width: 950px;
	margin: 0 auto;
}

a:hover {
	opacity: 0.8;
}

.pc {
	display: block;
}

.sp {
	display: none;
}

.note {
	font-size: 12px;
}

.note::before {
	content: '※';
}

@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}

	.note {
		font-size: min(1rem, 2.674vw);
	}
}


/* バーガーメニュー
---------------------------------------- */
.header {
	width: 100%;
	display: flex;
	align-items: center;
	position: absolute;
	top: 5px;
	padding: 0 20px;
	z-index: 100;
	justify-content: flex-end;
}

.area_logo {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	border-radius: 50px;
	width: 280px;
	height: 50px;
	position: absolute;
	top: 6px;
	left: 20px;
}

.area_logo .img {
	width: 70px;
	margin: 0 10px;
}

.hamburger-menu {
	width: 48px;
	height: 48px;
	position: relative;
	border: none;
	background: #fff;
	appearance: none;
	padding: 0;
	cursor: pointer;
	border-radius: 10px;
	z-index: 10000;
}

.hamburger-menu__bar {
	display: inline-block;
	width: 44%;
	height: 3px;
	background: #21466e;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	transition: .5s;
}

.hamburger-menu__bar:first-child {
	top: 15px;
}

.hamburger-menu__bar:nth-child(2) {
	top: 23px;
}

.hamburger-menu__bar:last-child {
	top: 31px;
}

.hamburger-menu--open .hamburger-menu__bar {
	top: 50%;
}

.hamburger-menu--open .hamburger-menu__bar:first-child {
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.hamburger-menu--open .hamburger-menu__bar:last-child {
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
	display: none;
}

.navigation {
	display: none;
	background: #fff;
	position: absolute;
	top: 0;
	right: 0;
	width: 360px;
	border-radius: 10px;
	padding: 60px 25px;
	z-index: 9999;
}

.navigation__list {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: left;
}

.navigation__list-item {
	border-bottom: solid 1px #0c6ab4;
}

.navigation__list-item:nth-of-type(5) {
	border-bottom: none;
}

.navigation__list-item:nth-of-type(1) .navigation__link::before,
.navigation__list-item:nth-of-type(2) .navigation__link::before,
.navigation__list-item:nth-of-type(3) .navigation__link::before,
.navigation__list-item:nth-of-type(4) .navigation__link::before,
.navigation__list-item:nth-of-type(5) .navigation__link::before {
	content: '';
	display: inline-block;
	width: 0.6em;
	height: 0.6em;
	background-color: #f8791c;
	border-radius: 50%;
	margin-right: 10px;
	vertical-align: middle;
}

.navigation__link {
	color: #0c6ab4;
	/* font-size: 18px; */
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	display: block;
	padding: 20px 0;
	transition: .5s;
}

.navigation__link.btn img {
	width: 75%;
}

.header.is-fixed {
	position: fixed;
	/* top: 5px; */ /* テスト用 */
	top: 115px;
}

@media screen and (max-width: 768px) {
	.header {
		padding: 0 10px;
		top: 9px;
	}

	.area_logo {
		display: flex;
		/* justify-content: center; */
		align-items: center;
		background: #fff;
		border-radius: 50px;
		width: 190px;
		height: 33px;

		justify-content: flex-end;
		top: 9px;
		left: 10px;
	}

	.area_logo .img {
		width: 50px;
		margin: 0 4px;
	}

	.hamburger-menu {
		width: 33px;
		height: 33px;
	}

	.hamburger-menu__bar {
		width: 44%;
		height: 2px;
	}

	.hamburger-menu__bar:first-child {
		top: 10px;
	}

	.hamburger-menu__bar:nth-child(2) {
		top: 16px;
	}

	.hamburger-menu__bar:last-child {
		top: 22px;
	}

	.navigation {
		width: 100%;
		padding: 60px 25px;
	}

	.navigation__link {
		font-size: min(1.8rem, 4.8vw);
	}

	.hamburger-menu--open .hamburger-menu__bar:first-child {
		top: 22px;
	}

	.header.is-fixed {
		top: 5px;
	}
}

/* ----------------------------------------------------
 mv
---------------------------------------------------- */
.mv {
	background: url(../img/mv.webp) no-repeat;
	background-size: 100%;
	width: 100%;
	height: 42vw;
	position: relative;
}

.mv::after {
	content: '';
	background: url(../img/bg_img01.webp) no-repeat;
	background-size: 100%;
	width: 40%;
	height: 100%;
	position: absolute;
	bottom: -67%;
	right: 0;
	z-index: -1;
}

.mv h1 {
	width: 62.4%;
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.mv .icon {
	width: 11.7%;
	position: absolute;
	bottom: 10%;
	right: 6.5%;
}

@media screen and (max-width: 768px) {
	.mv {
		background: url(../img/mv_sp.webp) no-repeat;
		background-size: 100%;
		height: 80vw;
	}

	.mv h1 {
		width: 90%;
		top: 36%;
	}

	.mv .icon {
		width: 26%;
		right: 3%;
	}
}

/* ----------------------------------------------------
 plan
---------------------------------------------------- */
.plan {
	max-width: 964px;
	margin: -20px auto 0;
	padding-bottom: 40px;
	position: relative;
}

.plan .contents {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.plan .contents a {
	display: block;
	width: 23.5%;
	background: #fff;
	border-radius: 20px;
	color: #000;
	box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
	padding: 20px 0;
}

.plan .contents a h3 {
	color: #0c6ab4;
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	line-height: 1.2;
}

.plan .contents a h3 span {
	font-size: 15px;
}

.plan .contents a .img {
	position: relative;
	margin-top: -10px;
}

.plan .contents a .img p {
	color: #fff;
	font-size: 10px;
	position: absolute;
	bottom: 2px;
	right: 6px;
}

.plan .contents a .txt {
	font-size: 15px;
	text-align: center;
	margin: 20px 0;
}

.plan .contents a .txt span.fs20 {
	font-size: 20px;
}

.plan .contents a .txt span.fs13 {
	font-size: 13px;
}

.plan .contents a .txt2 {
	color: #f8791c;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-style: italic;
	text-align: center;
	position: relative;
	margin-left: -20px;
}

.plan .contents a .txt2::after {
	content: '';
	background: url(../img/arrow_01.svg) no-repeat;
	background-size: 100%;
	width: 18px;
	height: 8px;
	position: absolute;
	top: 50%;
	right: 65px;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.plan .area_period {
	text-align: center;
	margin: 60px auto 45px;
}

.plan .area_period h3 {
	display: inline-block;
	color: #0c6ab4;
	font-size: 16px;
	font-weight: 400;
	border: 2px solid #0c6ab4;
	border-radius: 40px;
	padding: 2px 15px;
}

.plan .area_period h2 {
	color: #0c6ab4;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-style: italic;
	font-size: 42px;
}

.plan .area_period h2 span {
	font-size: 60px;
}

@media screen and (max-width: 768px) {
	.plan .contents {
		width: 90%;
		margin: 0 auto;
	}

	.plan .contents a {
		width: 48%;
		border-radius: 10px;
		padding: 10px 0;
	}

	.plan .contents a:nth-of-type(1),
	.plan .contents a:nth-of-type(2) {
		margin-bottom: 30px;
	}

	.plan .contents a h3 {
		font-size: min(1.4rem, 3.743vw);
	}

	.plan .contents a h3 span {
		font-size: min(1.1rem, 2.941vw);
	}

	.plan .contents a .img {
		margin-top: -5px;
	}

	.plan .contents a .img p {
		font-size: min(0.8rem, 2.139vw);
	}

	.plan .contents a .txt {
		font-size: min(1.2rem, 3.209vw);
		margin: 10px 0;
	}

	.plan .contents a .txt span.fs20 {
		font-size: min(1.6rem, 4.278vw);
	}

	.plan .contents a .txt span.fs13 {
		font-size: min(1.2rem, 3.209vw);
	}

	.plan .contents a .txt2 {
		font-size: min(1.2rem, 3.209vw);
		margin-left: -10px;
	}

	.plan .contents a .txt2::after {
		width: 12px;
		height: 7px;
		top: 50%;
		right: 40px;
	}

	.plan .area_period {
		margin: 45px auto 0;
	}

	.plan .area_period h3 {
		font-size: min(1.4rem, 3.743vw);
	}

	.plan .area_period h2 {
		font-size: min(1.8rem, 4.813vw);
	}

	.plan .area_period h2 span {
		font-size: min(3.6rem, 9.626vw);
	}
}

/* ----------------------------------------------------
 information
---------------------------------------------------- */
.information {
	background: #21466e;
	padding: 78px 0;
	text-align: center;
}

.information h2 {
	color: #c9c059;
	font-size: min(3rem, 2.727vw);
}

.information .txt {
	color: #fff;
	font-size: min(1.6rem, 1.455vw);
	margin: 30px 0;
}

.information .txt span {
	color: #c9c059;
	font-size: min(2rem, 1.818vw);
}

.information .note {
	color: #fff;
}

.information .note a {
	color: #fff;
	text-decoration: underline;
}

@media screen and (max-width: 768px) {
	.information {
		padding: 57px 14px;
	}

	.information h2 {
		font-size: min(2rem, 5.348vw);
	}

	.information .txt {
		font-size: min(1.4rem, 3.743vw);
		margin: 30px 0;
		line-height: 1.8;
	}

	.information .txt span {
		font-size: min(1.8rem, 4.813vw);
		line-height: 1;
	}

	.information .note {
		color: #fff;
	}

	.information .note a {
		color: #fff;
		text-decoration: underline;
	}
}