@charset "UTF-8";
/* CSS Document */
/*Setting***************************************************/
:root {
    --primary-color: #f5f5f5;
	--secondary-color: #08ABFF;
	--jp-primary-font: 'Noto Sans JP', sans-serif;
	--jp-secondary-font: 'Zen Kaku Gothic New', sans-serif;
	--en-primary-font: 'Montserrat', sans-serif;
  	--font-weight-Regular: 400;
  	--font-weight-Medium: 600;
  	--font-weight-Bold: 800;
	--text-color: #323232;
	--text-color-secondary: #000;
	--text-color-tertiary: #08ABFF;

}
/*header************************************************************/

.header-right {
	width:75%;
	margin: 0 0 0 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font-family: var(--en-primary-font);
	font-size: 1.3rem;
	font-weight: 700;
	text-decoration: none;
    letter-spacing: 0.1em;
}

/*kv************************************************************/
.kv-area {
	position: relative;
  	width: 100%;
	margin: 0 auto;
  	overflow: hidden;
	background-image: url('../images/kv-bg-image.svg');
	background-size: cover;
	background-position: center top;
}
.kv-inner {
	width: 70%;
	margin: 0 auto;
	padding: 7% 0 18%;
}
.kv-copy {
	font-size: 4.5rem;
	color: var(--text-color);
	font-family: var(--en-primary-font);
	font-weight: 700;
	margin-bottom: 20px;
}
.kv-copy-sub {
	font-size: 5.5rem;
	color: var(--text-color);
	font-family: var(--en-primary-font);
	font-weight: 700;
	margin-bottom: 50px;
}

.kv-name {
	width: 30%;
}

/*section01*********************************************/
.section-01-area {
	width: 100%;
	background: #fff;
	border-radius: 70px;
	text-align: center;
	padding: 115px 0;
	position: relative;
}
.section-title-jp {
	font-size: 3.2rem;
	color: var(--secondary-color);
	font-family: var(--en-primary-font);
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 15px;
}

.section-txt-about {
	font-size: 1.5rem;
	line-height: 2.5;
	color: var(--text-color);
	font-family: var(--en-primary-font);
	font-weight: 600;
	letter-spacing: 0.1em;
	margin: 50px 0;
}
/*section02*********************************************/

.section-02-subtitle-a {
	width: 99.5%;
	border-bottom: 2px solid #002484;
	font-weight: 700;
	font-size: 2.0rem;
	text-align: left;
	padding-bottom: 20px;
	padding-left: 0.5%;
	margin: 0 auto;
    font-family: var(--en-primary-font);
	letter-spacing: 0.05em;
}
.section-02-subtitle-b {
	width: 99.5%;
	border-bottom: 2px solid #00a9d3;
	font-weight: 700;
	font-size: 2.0rem;
	text-align: left;
	padding-bottom: 20px;
	padding-left: 0.5%;
	margin: 0 auto;
	font-family: var(--en-primary-font);
	letter-spacing: 0.05em;
}
.step-text { 
		font-size: 1.3rem; 
		color: var(--text-color); 
		text-align: center; 
		font-weight: 500; 
		line-height: 1.5; 
        font-family: var(--en-primary-font); 
        letter-spacing: 0;
	}
/*section03*********************************************/
.regulation-area {
	width: 35%;
	border-top: 1px solid #b4b4b4;
	border-bottom: 1px solid #b4b4b4;
	display: flex;
	justify-content: space-between;
	padding: 20px 25px;
	margin: 0 auto;
}
.regulation-area .txt-done,
.regulation-area .txt-yet {
	font-size: 1.3rem;
	font-weight: 700;
}

.update-txt {
	text-align: right;
	font-size: 1.5rem;
	font-weight: 700;
	border-bottom: 1px solid #000;
	padding: 0 5px 10px 5px;
	display: inline-block;
    font-family: var(--en-primary-font); 
}
.title-route {
	width: 100%;
	border-bottom: 2px solid #e6e6e6;
	padding-bottom: 5px;
	text-align: left;
}
.route-item {
  position: relative;
  padding-left: 45px;
  line-height: 40px; 
  font-size: 2.0rem;
  color: #000; 
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: var(--en-primary-font); 
}


.route-btn-area {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding: 20px 0;
	gap: 10px;
	margin-bottom: 70px;
}
.route-btn-area {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 20px 0 22px;
}

.custom-btn {
  display: inline-flex;
  position: relative;
  width: 192px;
  padding: 20px 0;
  border: 2px solid #08abff;
  border-radius: 8px;
  background-color: #fff;
  color: #002484;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-sizing: border-box;
  font-family: var(--en-primary-font); 
  letter-spacing: 0;
}



/*section04*********************************************/

.accordion-cb .title {
  display: flex;
  align-items: center;           
  justify-content: flex-start;   /* 左寄せに変更 */
  padding: 20px;
  background: #08abff;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.6rem;
  color: #fff;
  position: relative;
  font-family: var(--en-primary-font); 
}

.accordion-cb .panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  background: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-color, #333);
  line-height: 1.8;
  text-align: left;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-family: var(--en-primary-font); 
}

.accordion-under {
	width: 100%;
	border: 1px solid #002484;
	background: #fff;
	padding: 30px 0;
	text-align: center;
	margin: 120px auto 50px;
}
.accordion-under p {
	font-size: 2.0rem;
	color: #002484;
	line-height: 2;
	font-weight: 700;
    font-family: var(--en-primary-font); 
}
.accordion-under p.link {
	font-size: 1.8rem;
	color: var(--text-color);
	line-height: 2;
	font-weight: 500;
}

/*footer*********************************************/








@media screen and (max-width: 767px) {/* 767px以下に適用されるCSS（スマホ用） */

	.pc { display: none !important; }
	.sp { display: block !important; }
	.sp-point { display: inline !important; }

/*header************************************************************/
header {
	width: 94%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 4%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1500;
  background-color: rgba(255, 255, 255, 0.4); /* 白の半透明 */
  backdrop-filter: blur(10px); /* 背景をぼかす */
  -webkit-backdrop-filter: blur(10px); /* Safari対応 */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* ふんわり影 */
}
.header-left {
	width:30%;
	margin: 0;
}
.header-left img {
	width:150px;
}
.header-right {
	display: none;
}
.nav-wrapper {
	display: block;
}
.fix-header {
	display: none;
}
/* 
hamburger(ハンバーガーアイコン)
=================================== *//* ハンバーガー本体（白丸） */
.hamburger {
  position: absolute;
  right: 20px;
  top: 18px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1600;
}

/* ラッパーで線を上下中央＋間隔均等 */
.hamburger__line {
  position: absolute;
  left: 50%;
  width: 25px;
  height: 3px;
  background-color: #000f48;
  transform: translateX(-50%);
  transition: all 0.4s;
  transform-origin: center;
}
/* 初期状態：上下にずらす */
.hamburger__line--1 { top: 14px; }
.hamburger__line--2 { top: 50%; transform: translate(-50%, -50%); }
.hamburger__line--3 { bottom: 14px; }

/* クリック時：中央で× */
.open .hamburger__line--1 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.open .hamburger__line--2 {
  opacity: 0;
}
.open .hamburger__line--3 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* 
sp-nav(ナビ)
=================================== */
.sp-nav {
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #e6e6e6;
  transition: all 0.8s;
  z-index: 1200;
  overflow-y: auto;
}
/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
  right: 0;
}
.menu-title {
	font-size: 2.5rem;
	color: #000f48;
	font-family: var(--en-primary-font);
	font-weight: 600;
	margin: 35% auto 2%;
	width: 80%;
	letter-spacing: 0.3em;
}
.sp-nav ul {
	width: 80%;
	margin: 8% auto 0;
	font-size: 1.4rem;
	line-height: 4.5;
	color:var(--text-color);
	font-weight: 700;
	text-align: left;
	letter-spacing: 0.1em;
}
.sp-nav ul li {
  position: relative;
  padding-left: 2.6rem; /* 丸と矢印用の余白 */
  list-style: none; /* デフォルトの黒点は消す */
}


/* ▼▼▼ ここから select 専用 ▼▼▼ */
.no-hover {
	width: 80%;
	margin: 8% auto 0;
}
.no-hover::after,
.no-hover:hover::after {
  /* hoverラインを無効化 */
  display: none;
}

.location-select {
  font-family: var(--jp-secondary-font);
  font-size: 1.4rem;
  font-weight: normal;
  color: var(--text-color-secondary);
  background: none;
  border: 1.5px solid #e6e6e6; /* 枠線を明確に */
  outline: none;
  cursor: pointer;
  appearance: none;
  padding-right: 18px;
  background-image: linear-gradient(45deg, transparent 50%, #5a5a5a 50%),
                    linear-gradient(135deg, #5a5a5a 50%, transparent 50%);
  background-position: right 14px top 55%, right 9px top 55%;
  background-size: 4px 6px, 6px 6px;
  background-repeat: no-repeat;
padding: 12px 45px 13px 25px;
border-radius: 4px;
color: #5a5a5a;
background-color: #fff;
width: 100%;
}

.location-select:hover {
  text-decoration: none; /* hover装飾なし */
}

/*kv************************************************************/
.kv-area {
	position: relative;
  	width: 100%;
	margin: 0 auto;
  	overflow: hidden;
	background-image: url('../images/kv-bg-image-sp.svg');
	background-size: cover;
	background-position: center top;
	padding: 11vh 0 20vh;
}
.kv-inner {
	width: 80%;
	margin: 0 auto;
	padding: 30% 0 15%;
}
.kv-copy {
	font-size: 2.3rem;
	margin-bottom: 10px;
}
.kv-copy-sub {
	font-size: 2.8rem;
	margin-bottom: 40px;
}
.kv-name {
	width: 60%;
}



/*section01*********************************************/

.section-title-jp {
	font-size: 2.2rem;
	letter-spacing: 0.05em;
	margin-bottom: 15px;
    line-height: 1.6;
}
.section-title-under img {
	width: 15px;
}
.section-txt-about {
	font-size: 1.4rem;
	line-height: 2.3;
	letter-spacing: 0.05em;
	margin: 50px auto 0;
	width: 85%;
	text-align: justify;
    -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  /* ささいな長過ぎる語を折り返す保険 */
  overflow-wrap: anywhere; /* または break-word */
}
.section-01-img01 {
	display: none;
}
.section-01-img02 {
	display: none;
}
.section-01-img03 {
	display: none;
}

/*section02*********************************************/
.section-02-subtitle-a {
	width: 99.5%;
	font-size: 1.8rem;
	padding-bottom: 15px;
	padding-left: 0.5%;
	margin: 0 auto;
    line-height: 1.7;
}
.section-02-subtitle-b {
	width: 99.5%;
	font-size: 1.8rem;
	padding-bottom: 15px;
	padding-left: 0.5%;
	margin: 0 auto;
    line-height: 1.7;
}
.section-02-cnt-3c {
	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 30px 0 10px;
}
.step-text { 
		font-size: 1.3rem; 
		color: var(--text-color); 
		text-align: center; 
		font-weight: 700; 
		line-height: 1.5; 
	}

/*section03*********************************************/
.regulation-area {
	width: 75%;
	border-top: 1px solid #b4b4b4;
	border-bottom: 1px solid #b4b4b4;
	display: flex;
    flex-direction: column;
	padding: 20px 25px 5px;
	margin: 50px auto 0;
}
.regulation-area .txt-done,
.regulation-area .txt-yet {
	font-size: 1.3rem;
	font-weight: 700;
    margin-bottom: 20px;
}

.update-txt {
	text-align: right;
	font-size: 1.4rem;
	font-weight: 700;
	border-bottom: 1px solid #000;
	padding: 0 5px 10px 5px;
	display: inline-block;
    font-family: var(--en-primary-font); 
}
.title-route {
	width: 100%;
	border-bottom: 2px solid #e6e6e6;
	padding-bottom: 5px;
	text-align: left;
}
.route-item {
  position: relative;
  padding-left: 36px;
  line-height: 40px; 
  font-size: 1.6rem;
  color: #000; 
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: var(--en-primary-font); 
}


.custom-btn {
  display: inline-flex;
  position: relative;
  width: 100%;
  padding: 20px 0;
  border: 2px solid #08abff;
  border-radius: 8px;
  background-color: #fff;
  color: #002484;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-sizing: border-box;
  font-family: var(--en-primary-font); 
  letter-spacing: 0;
}

/*section04*********************************************/
.faq-box {
	width: 94%;
	margin: 50px auto;
}
.accordion-item {
  margin-bottom: 8px;
}
.accordion-cb .title {
    min-height: 70px; 
    padding: 7px 50px 7px 15px;
    display: flex;
    align-items: center;
	text-align: left;
	line-height: 1.6;
	font-size: 1.4rem;
    letter-spacing: 0.1em;
  }

.accordion-cb .title::before {
  content: '';
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url('../images/obj-faq-q.svg'); 
  background-size: cover;
  background-position: center;
  margin-right: 15px;
  flex-shrink: 0;  
}
.accordion-cb .label::after {
  font-size: 1.4rem;
}
.accordion-cb .panel {
  font-size: 1.3rem;
}
.accordion-cb .panel a {
	color: #3673ff;
	text-decoration: underline;
	line-height: 1.5;
}
.accordion-under {
	width: 90%;
	border: 1px solid #002484;
	background: #fff;
	padding: 30px 3%;
	text-align: center;
	margin: 120px auto 50px;
}
.accordion-under p {
	font-size: 1.6rem;
	line-height: 1.8;
}
.accordion-under p.link {
	font-size: 1.6rem;
}

/*footer*********************************************/


}/* 767px以下に適用されるCSS（スマホ用） */
