@charset "utf-8";
/* CSS Document */

body {
	color: #333333;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
	font-size: 1rem;
    font-weight: 400;
    font-style: normal;
    margin: 0;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
}

/*ボタン*/

.section_btn {
	font-weight: 500;
	text-decoration: none;
	color: #F8FAFC;
	background: #002B55;
	letter-spacing: 0;
	padding: 16px 0;
	border-radius: 16px;
	display: flex;
	justify-content: center;
	transition: all 0.3s ease;
}

.section_btn span {
	padding-right: 24.485px;
	position: relative;
}

.section_btn span::after {
	content: '';
	  display: inline-block;
  vertical-align: middle;
  color: #F8FAFC;
  line-height: 1;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	transition: all 0.3s ease;
}

.section_btn:hover span::after {
	transform: translateY(-50%) translateX(5px) rotate(45deg);
}



#cta_btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
 padding: 12px;
  color: #F8FAFC;
  background: linear-gradient(to left, #2B95FF, #004080);
	border-radius: 16px 0 0 0;
	text-align: center;
	font-size: 0.875rem;
  font-weight: 500;
	line-height: 1.4;
  cursor: pointer;
  letter-spacing: 0.1em;
		position: fixed;
	bottom: 0;
	right: 0;
	z-index: 10;
	opacity: 0;
  transition: all 0.3s ease;
}

#cta_btn img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

#cta_btn span {
	padding-right: 18px;
	position: relative;
}

#cta_btn span::after {
	content: '';
	width: 14px;
	height: 14px;
	background: url("logo_icon/link_icon.svg") no-repeat center / contain;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

#cta_btn span img {
	width: 14px;
	height: 14px;
	object-fit: contain;
}

#cta_btn:hover {
	transform: translateX(3px) translateY(3px);
}



/*正円背景矢印アイコン*/


.arrow_right {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #002B55;
}
.arrow_right:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.arrow_right:after {
  content: '';
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 1.5px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  position: absolute;
  top: 0;
  left: 8px;
  bottom: 0;
  margin: auto;
}

/*ページトップへ戻るボタン*/

#page_top_btn {
	background: #002B55;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #F8FAFC;
	font-size: 0.875rem;
	letter-spacing: 0.18em;
	padding: 18px 0 16px;
}


.page_top_arrow {
  display: inline-block;
  vertical-align: middle;
  color: #F8FAFC;
  line-height: 1;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(-45deg);
	transition: all 0.3s ease;
}

#page_top_btn:hover .page_top_arrow {
	transform: translateX(-25%) translateY(-5px) rotate(-45deg);
}

/*ヘッダーここから*/

#header {
	width: 100%;
	height: calc(100vh - 92px);
	display: flex;
	flex-direction: column;
	padding-top: 64px;
	position: relative;
}

/*グローバルナビゲーション*/

#gv_nav {
	background: transparent;
	transition: background-color 0.3s ease;
	width: 100%;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1000;
}

#gv_navinner {
	margin: 0;
	padding-left: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#gv_navinner li {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#gv_nav #main_logo {
	padding: 0 16px;
	transition: all 0.3s ease;
}

#gv_nav #main_logo:hover {
	opacity: 0.6;
}

#gv_navinner p {
	margin-top: 8px;
	font-size: 10px;
	letter-spacing: 0.1em;
}

/* ハンバーガーアイコン */
.hamburger {
  width: 64px;
  height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  background: #F8FAFC;
  border: none;
  cursor: pointer;
  z-index: 50;
  transition: all 0.3s ease;
}

.hamburger span {
  width: 100%;
  height: 3px;
  display: block;
  background-color: #002B55;
  transition: all 0.3s ease; 
}

.hamburger.active span:nth-child(1) {
  transform: translateY(14.5px) rotate(45deg); 
}

.hamburger.active span:nth-child(2) {
  opacity: 0; 
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-14.5px) rotate(-45deg);
}

.hamburger:hover {
	background: #EAF4FF;
}


/*ハンバーガーメニュー*/
#hamburger_menu {
    position: fixed;
    top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 80px 16px 16px;
	background: #F8FAFC;
	opacity: 0;
	visibility: hidden;
	transform: translateX(100%);
	transition-property: all;
	transition-duration: .3s;
	z-index: 40;
	overflow-y: auto;
}

#hamburger_menu ul {
	padding: 0;
	width: 100%;
}

#hamburger_menu ul li {
	border: none;
	width: 100%;
	height: auto;
}

#hamburger_menu ul li:first-child {
	margin-bottom: 16px;
}

#hamburger_menu ul li a {
	font-weight: 500;
	text-decoration: none;
	color: #002B55;
	padding: 12px;
	position: relative;
	transition: all 0.3s ease;
}

#hamburger_menu ul li:first-child a::after {
	content: '';
	width: 20px;
	height: 20px;
	background: url("logo_icon/link_icon.svg") no-repeat center / contain;
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
}

#hamburger_menu ul li:nth-child(n+2) a span::after {
	content: '';
	  display: inline-block;
  vertical-align: middle;
  color: #002B55;
  line-height: 1;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

#hamburger_menu img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

#hamburger_menu ul li:first-child a {
	background: linear-gradient(to right, #0055AA, #2B95FF);
	color: #F8FAFC;
	border-radius: 8px;
}

#hamburger_menu ul li:first-child a #link_icon {
	width: 20px;
	height: 20px;
	object-fit: contain;
	margin-left: auto;
}

#hamburger_menu ul li:nth-child(n+2) .dli-chevron-right {
	margin-left: auto;
}

#hamburger_menu ul li:nth-child(n+2) {
	border-bottom: 1px solid rgba(0,43,85,0.25);
}

#hamburger_menu.active {
	visibility: visible;
	opacity: 1;
	transform: translateX(0);
}

body.no-scroll {
    overflow: hidden;
}

#hamburger_menu ul li:first-child a:hover {
	opacity: 0.6;
}

#hamburger_menu ul li:nth-child(n+2) a:hover {
	background: #EAF4FF;
}

/*ハンバーガーメニューオーバーレイ*/


#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,43,85,0.7);
  z-index: 8;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#overlay.active {
  opacity: 1;
  pointer-events: auto;
}


/*ハンバーガーメニューここまで*/

/*スクロールアニメーション*/

.scroll-down {
  position: relative;
  text-align: center;
  color: #F8FAFC;
  font-size: 14px;
  text-decoration: none;
  padding: 0 16px 22px;
  margin: auto auto 8px;
  transition: all 0.3s ease;
}

.wavy-text span {
  position: relative;
  display: inline-block;
  animation: wave 2s infinite;
  animation-delay: calc(0.1s * var(--i));
}

.wavy-text_arrow {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-left: 2px solid #F8FAFC;
  border-bottom: 2px solid #F8FAFC;
  transform: translate(-50%, -50%) rotate(-45deg);
  animation: float 2s infinite;
}

@keyframes wave {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(-20%) rotate(-45deg);
  }
  50% {
    transform: translateY(20%) rotate(-45deg);
  }
}

.scroll-down:hover {
	opacity: 0.6;
}

/*情報コーナー*/

#info_box {
	margin: 8px;
}

#info_box ul {
	margin: 0;
	padding: 8px;
	background: rgba(248,250,252,0.8);
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	text-align: center;
}

#info_box ul li:first-child .section_subtitle {
	color: #002B55;
	font-size: 1.125rem;
	text-decoration: none;
	display: inline-block;
	position: relative;
	padding-left: 28px;
}

#info_box ul li:first-child .section_subtitle::before {
	content: '';
	width: 20px;
	height: 20px;
	background: url("logo_icon/time_icon.svg") no-repeat center / contain;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

#info_box span {
	font-size: 1.5rem;
	font-weight: 600;
}


/*スクロール後のスタイル*/

#gv_nav.scrolled {
  background: #002B55;
}

/*ビデオ設定*/

#sp_main_video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

#dp_main_video {
	display: none;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}



/*ヘッダーここまで*/

/*トップナビゲーション*/

#top_nav {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	background: #F8FAFC;
	border-bottom: 1px solid rgba(0,43,85,0.25);
}

#top_nav li {
	width: 20%;
}

#top_nav li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
	padding: 12px 0;
	border-right: 1px solid rgba(0,43,85,0.25);
	transition: all 0.3s ease;
}

#top_nav li:last-child a {
	border: none;
}

#top_nav img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

#top_nav span {
	color: #002B55;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.5;
}

#top_nav li a:hover {
	background: #EAF4FF;
}

/*各セクションのスタイル*/

.section_wrap {
	width: 90%;
	margin: 0 auto;
}

/*見出しデザイン*/

.section_title {
    position: relative;
    color: #002B55;
	letter-spacing: 0.03em;
	line-height: 1.4;
	text-align: center;
	margin: 0;
	padding-top: 24px;
}

.section_title::before {
    position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: rgba(0,43,85,0.1);
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
    line-height: 1;
    content: attr(data-word);
    pointer-events: none;
}

.section_subtitle {
	color: #002B55;
	margin: 0;
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.5;
	text-decoration: underline;
    text-decoration-thickness: 0.5em;
    text-decoration-color: rgba(234,244,255,1);
    text-underline-offset: -0.2em;
    text-decoration-skip-ink: none; 
}

/*各セクションのスタイル*/

.section_style1 {
	padding: 32px 0;
	background: #F8FAFC
}

.section_style2 {
	padding: 32px 0;
	background: #EAF4FF;
}

/*トップニュースここから*/

#top_news ul {
	border: 1px solid #002B55;
	border-radius: 16px;
	margin: 0;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}


#top_news ul li:first-child {
	text-align: center;
}


#top_news ul li:first-child .section_subtitle{
	display: inline-block;
	position: relative;
	padding: 0 28px;
}

#top_news ul li:first-child .section_subtitle::before {
	content: '';
	width: 20px;
	height: 20px;
	background: url("logo_icon/triangle_exclamation.svg") no-repeat center / contain;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

#top_news ul li:first-child .section_subtitle::after {
	content: '';
	width: 20px;
	height: 20px;
	background: url("logo_icon/triangle_exclamation.svg") no-repeat center / contain;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

#top_news img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

#top_news  .section_subtitle {
	text-decoration: none;
}

#top_news ul li:nth-child(2) p:first-child {
	margin: 0;
}

#top_news_date {
	font-weight: 600;
}

#top_news_text {
	font-weight: 600;
	color: #800020;
}


/*トップニュースここまで*/

/*アバウトここから*/

#about {
	position: relative;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

#about::before {
	content: '';
	width: 100%;
	aspect-ratio: 371 / 89;
	background: url("img/sp_about_wave.svg") no-repeat center / cover;
	position: absolute;
	bottom: 0;
	right: 0;
	transform: translateY(1px);
}

#about img {
	border-radius: 50%;
	padding: 24px;
	position: relative;
	z-index: 1;
}

#about .section_wrap {
	padding: 24px;
	border-radius: 50%;
	position: relative;
	z-index: 1;
}

#about .section_title {
	padding-top: 0;
	font-weight: 600;
	background: linear-gradient(to left, #2B95FF, #004080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

#about p {
	font-weight: 500;
	color: #004080;
}

#about p:first-of-type {
	margin-top: 24px;
}

/*アバウトここまで*/

/*ピックアップここから*/

#pickup {
	padding-top: 40px;
}

#pickup_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	margin-top: 24px;
}

#pickup_box ul {
	margin: 0;
	padding: 0;
	background: #F8FAFC;
	width: 47.63%;
	border-radius: 16px;
		
}

#pickup_box ul:nth-child(n+3) {
	margin-top: 16px;
}

#pickup_box li {
	height: 100%;
}

#pickup_box li a{
	display: flex;
	flex-direction: column;
	padding: 8px;
	gap: 8px;
	height: 100%;
	border: 1px solid rgba(0,43,85,0.25);
	border-radius: 16px;
	transition: all 0.3s ease;
}

#pickup_box img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

#pickup_box .section_subtitle {
	font-size: 1.125rem;
}

#pickup_box p {
	margin: 0;
}

#pickup_box .arrow_right {
	margin: auto auto 0;
	transition: all 0.3s ease;
}

#pickup_box li a:hover {
	border: 1px solid #002B55;
}

#pickup_box li a:hover .arrow_right {
	transform: translateX(5px);
}

/*ピックアップここまで*/



/*モデルコースここから*/

#modelcourse {
	position: relative;
}

#modelcourse::before {
	content: '';
	width: 100%;
	aspect-ratio: 185 / 23;
	background: url("img/sp_modelcourse_wave.svg") no-repeat center / cover;
	position: absolute;
	top: 0;
	right: 0;
	transform: translateY(-1px);
}



#modelcourse .section_title, 
#modelcourse ul, 
#modelcourse a {
	position: relative;
	z-index: 1;
}

#modelcourse ul {
	margin: 24px 4px 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

#modelcourse ul li {
	width: calc(50% - 8px);
	height: auto;
	border-radius: 16px;
	background: url('img/one_person_2x.jpg') center center / cover no-repeat;
	margin: 4px;
	position: relative;
}

#modelcourse ul li:nth-child(2) {
	background: url('img/couple_2x.jpg') center center / cover no-repeat;
}

#modelcourse ul li:nth-child(3) {
	background: url('img/night_2x.jpg') center center / cover no-repeat;
}

#modelcourse ul li:last-child {
	background: url('img/marine_2x.jpg') center center / cover no-repeat;
}

#modelcourse ul li a {
	display: flex;
	justify-content: center;
	font-size: 1.125rem;
	font-weight: 500;
	text-decoration: none;
	color: #F8FAFC;
	padding: 72px 0;
	position: relative;
	z-index: 1;
}

#modelcourse ul li a span {
	padding-right: 24.485px;
	position: relative;
}

#modelcourse ul li a span::after {
	content: '';
	  display: inline-block;
  vertical-align: middle;
  color: #F8FAFC;
  line-height: 1;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	transition: all 0.3s ease;
}

#modelcourse ul li a:hover span::after {
	transform: translateY(-50%) translateX(5px) rotate(45deg);
}

/*モデルコースここまで*/

/*ガイドここから*/

#guide_box {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

#guide_box ul {
	padding: 0;
	margin: 0;
	background: #F8FAFC;
	border-radius: 16px;
}

#guide_box li {
	height: 100%;
}

#guide_box li a{
	display: flex;
	flex-direction: column;
	padding: 16px;
	gap: 8px;
	height: 100%;
	border-radius: 16px;
	border: 1px solid rgba(0,43,85,0.25);
	transition: all 0.3s ease;
}

#guide_box img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

#guide_box p {
	display: inline-block;
	width: 90.625%;
	margin: 0;
}

#guide_box .guide_description {
	display: flex;
	align-items: center;
}

#guide_box .guide_description .arrow_right {
	margin-left: auto;
	transition: all 0.3s ease;
}

#guide_box li a:hover {
	border: 1px solid #002B55;
}

#guide_box li a:hover .arrow_right {
	transform: translateX(5px);
}

/*ガイドここまで*/

/*アクセスここから*/
#access {
	position: relative;
}

#access::before{
	    content: '';
    width: 100%;
    aspect-ratio: 125 / 4;
    background: url(img/sp_sns_wave.svg) no-repeat center / cover;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(1px);
}


#access .section_wrap {
	position: relative;
	z-index: 1;
}

#access iframe {
	width: 100%;
	height: 400px;
	margin: 24px 0 12px 0;
}

#access_box {
	display: flex;
	flex-direction: column;
}

#access_box ul {
	padding: 12px;
	margin: 0;
	border-bottom: 1px solid rgba(0,43,85,0.25);
}

#access_box ul:last-child {
	border: none;
	margin-bottom: calc(100% * 4 / 125);
}

#access_box ul:first-child li:nth-child(2){
	margin-top: 16px;
}

#access_box .section_subtitle {
	font-size: 1.125rem;
	text-decoration: none;
}

#access_box ul .section_subtitle{
	position: relative;
	padding-left: 28px;
}

#access_box ul:nth-child(2) .section_subtitle::before {
	content: '';
	width: 20px;
	height: 20px;
	background: url("logo_icon/train_icon.svg") no-repeat center / contain;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);	
}

#access_box ul:nth-child(3) .section_subtitle::before {
	content: '';
	width: 20px;
	height: 20px;
	background: url("logo_icon/bus_icon.svg") no-repeat center / contain;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);	
}

#access_box ul:last-child .section_subtitle::before {
	content: '';
	width: 20px;
	height: 20px;
	background: url("logo_icon/car_icon.svg") no-repeat center / contain;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);	
}





#access_box ul:nth-child(n+2) li:nth-child(2) {
	margin-top: 8px;
}

/*アクセスここまで*/

/*ニュースここから*/

#news {
	position: relative;
}

#news .section_wrap {
	position: relative;
	z-index: 1;
}


#news_box {

	display: flex;
	flex-direction: column;
	gap: 24px;

}

#news_wrap {
	display: flex;
	flex-direction: column;	
}

#news_wrap dl {
	margin: 0;
	border-bottom: 1px solid rgba(0,43,85,0.25);	
}

#news_wrap dt {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 8px;
}
#news_wrap dt time {
	font-weight: 300;
}

.category_icon {
	color: #002B55;
	font-size: 0.875rem;
	line-height: 1;
	letter-spacing: 0.04em;
	padding: 6px 16px;
	border: 1px solid #002B55;
	border-radius: 10px;
}

#news_wrap dd {
	font-weight: 500;
	margin: 0;
	padding: 0 8px 8px;
}

#news_wrap p {
	margin: 0;
}

/*ニュースここまで*/

/*SNSここから*/

#sns {
	text-align: center;
}

#sns .section_title {
	display: inline-block;
	padding: 0 80px;
	position: relative;
}

#sns .section_title::before {
	content: '';
	width: 48px;
	height: 48px;
	background: url("logo_icon/bg_dolphin_icon.svg") no-repeat center / contain;
	position: absolute;
	left: 0;
	top: 0;
	top: 50%;
	transform: translateY(-50%);
}

#sns .section_title::after {
	content: '';
	width: 48px;
	height: 48px;
	background: url("logo_icon/bg_penguinicon.svg") no-repeat center / contain;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}


#sns ul {
	margin: 24px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	border: 1px solid rgba(0,43,85,0.25);
}

#sns ul li {
	width: 50%;
	height: auto;
}

#sns ul li:first-child {
	border-right: 1px solid rgba(0,43,85,0.25);
}

#sns ul li:nth-child(3) {
	border-right: 1px solid rgba(0,43,85,0.25);
	border-top: 1px solid rgba(0,43,85,0.25);
}

#sns ul li:last-child {
	border-top: 1px solid rgba(0,43,85,0.25);
}

#sns ul li a {
	display: flex;
	justify-content: center;
	background: #F8FAFC;
	padding: 24px 0;
	transition: all 0.3s ease;
}

#sns ul li a .sns_name {
	position: relative;
	font-weight: 500;
	padding-left: 34px;
}

#sns ul li:first-child a .sns_name::before {
	content: '';
	width: 24px;
	height: 24px;
	background: url("logo_icon/Instagram_icon.svg") no-repeat center / contain;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

#sns ul li:nth-child(2) a .sns_name::before {
	content: '';
	width: 24px;
	height: 24px;
	background: url("logo_icon/youtube_icon.svg") no-repeat center / contain;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

#sns ul li:nth-child(3) a .sns_name::before {
	content: '';
	width: 24px;
	height: 24px;
	background: url("logo_icon/X_icon.svg") no-repeat center / contain;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

#sns ul li:last-child a .sns_name::before {
	content: '';
	width: 24px;
	height: 24px;
	background: url("logo_icon/facebook.svg") no-repeat center / contain;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

#sns ul li a:hover {
	opacity: 0.6;
}



/*SNSここまで*/

/*バナーエリアここから*/

#banner {
	background-image: repeating-linear-gradient(45deg, #002b551a, #002b551a 10px, transparent 10px, transparent 20px);
	padding-top: 36px;
}

#banner a {
	display: inline-block;
}
#banner a img {
	transition: all 0.3s ease;
}

#banner a :hover {
	opacity: 0.6;
}

/*スライダー*/

.swiper {
	padding-bottom: 36px;
}

.swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
}

.swiper-button-next, .swiper-button-prev {
	width: 32px;
	height: 32px;
	margin-top: 0;
	color: #F8FAFC;
	background: #002B55;
	border-radius: 50%;
	position: absolute;
	top: 36.67377398720682%;
	transform: translateY(-50%);
}

.swiper-button-next:after, .swiper-button-prev:after {
	font-size: 0.706875rem;
}

.swiper-button-next:after {
	margin-left: 1px;
}

.swiper-button-prev:after {
	margin-right: 1px;
}

.swiper-pagination-bullet-active {
	background: #002B55;
}

/*バナーエリアここまで*/
#footer {
	width: 100%;
	height: auto;
	background: url("img/sp_footer.jpg") no-repeat center / cover;
	color: #F8FAFC;
}

#footer ul {
	margin: 0;
	padding: 32px 0 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

#footer ul li:first-child {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

#footer ul li:nth-child(2) {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	font-size: 0.75rem;
}

#footer ul li:nth-child(2) span {
	padding: 0 8px;
	border-left: 1px solid #F8FAFC;
	border-right: 1px solid #F8FAFC;
}

#footer ul li:last-child {
	font-size: 0.75rem;
	opacity: 0.9;
}

#footer p {
	margin: 0;
	font-size: 0.75rem;
	text-align: center;
	padding: 32px 0 8px;
}

/*デスクトップ向けメディアクエリの記述ここから*/

@media screen and (min-width: 768px) {
	
	/*ヘッダーここから*/
	
	#hamburger_menu {
		width: 25%;
	}
	
	#header {
		align-items: center;
	}
	
	#sp_main_video {
		display: none;
	}
	
	#dp_main_video {
		display: block;
	}
	
	#info_box ul{
		padding: 16px;
		flex-direction: row;
		align-items: center;
		gap: 16px;
	}
	
	/*ヘッダーここまで*/
	
	
	/*セクションスタイルここから*/
	.section_style1 {
		padding: 48px 0;
	}
	
	.section_style2 {
		padding: 48px 0;
	}
	
	.section_wrap {
		max-width: 1100px;
		width: 100%;
		padding: 0 48px;
	}
	
	.section_title {
		font-size: 2rem;
		letter-spacing: 0.05em;
	}
	
	.section_subtitle {
		font-size: 1.5rem;
		letter-spacing: 0.02em;
	}
	
	/*ボタンスタイル*/
	
	
	
	/*トップニュースここから*/
	
	#top_news ul {
		max-width: 700px;
		width: 100%;
		margin: 0 auto;
		padding: 24px;
	}

	
	/*トップニュースここまで*/
	
	/*アバウトここから*/
	
	#about {
		flex-direction: row;
		gap: 0;
	}
	
	
	#about::before {
		content: '';
	aspect-ratio: 1920 / 401 ;
	background: url("img/dp_about_wave.svg") no-repeat center / cover;
	}
	
	#about img {
		padding: 48px;
	}
	
	#about img:first-of-type {
		width: 22.23958333333333%;
		transform: translateY(-96px);
	}
	#about img:last-of-type {
		width: 22.23958333333333%;
		transform: translateY(96px);
	}
	
	#about .section_wrap  {
		padding: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 32px;
	}
	
	#about .section_wrap p {
		display: inline-block;
		font-size: 1.125rem;
		margin: 0;
	}
	
	#about .section_wrap p:first-of-type {
		margin-top: 24px;
	}
	
	#access_box ul:last-child {
		margin-bottom: calc(100% * 1 / 80);
	}
	
	
	/*アバウトここまで*/
	
	/*ピックアップここから*/
		
	#pickup_box {
		margin-top: 32px;
	}
	
	#pickup_box ul {
		width: 23%;
	}
	
	#pickup_box ul:nth-child(n+3) {
		margin-top: 0;
	}
	
	#pickup_box li a {
		gap: 12px;
	}
	
	/*ピックアップここまで*/
	
	
	
	/*モデルコースここから*/
	
	
	#modelcourse::before {
	content: '';
	aspect-ratio: 960 / 119;
	background: url("img/dp_modelcourse_wave.svg") no-repeat center / cover;
	}
	
	

	
	#modelcourse ul {
		margin-top: 32px;
	}
	
	#modelcourse ul li {
		width: calc(25% - 8px);
	}
	
	#modelcourse ul li a {
		padding: 136px 0;
	}
	
	#modelcourse ul li:nth-child(2) {
		background-position: center bottom;
	}
	
	#modelcourse .section_btn {
		margin-top: 32px;
		width: 50%;
	}
	
	
	
	/*モデルコースここまで*/
	
	/*ガイドここから*/
	
	#guide_box {
	
		flex-direction: row;
	}
	
	#guide_box ul {
		width: 50%;
	}
	
	#guide_box li a {
		gap: 12px;
	}
	
	/*ガイドここまで*/
	
	/*アクセスここから*/
	

	

	
	#access iframe {
		margin: 32px 0 24px;
	}
	
	#access_box ul {
		padding: 16px;
	}
	
	#access::before {
		content: '';
        aspect-ratio: 80 / 1;
        background: url(img/dp_sns_wave.svg) no-repeat center / cover;
	}
	
	/*アクセスここまで*/
	
	/*ニュースここから*/
	
	
	
	
	#news_box {
		
		gap: 32px;
	
	}
	
	/*ニュースここまで*/
	
	/*SNSここから*/
	
	#sns {
		padding-top: 53px;
	}
	
	#sns ul {
		margin-top: 32px;
	}
	
	#sns ul li {
		width: 25%;
	}
	
	#sns ul li:nth-child(2) {
		border-right: 1px solid rgba(0,43,85,0.25);
	}
	
	#sns ul li:nth-child(n+3) {
		border-top: none;
	}
	
	
	
	/*SNSここまで*/
	
	/*footerここから*/
	
	#footer {
		background-image: url("img/dp_footer.jpg");
	}
	
	#footer ul {
		padding-top: 48px;
		gap: 48px;
	}
	
	
	
	

	
	
	
	
	
	
	
	
	
	

	
	
	
	
}



































