@charset "UTF-8";
/* CSS Document */

html {
  scroll-behavior: smooth; /* スクロールアニメーションを設定 */
  scroll-padding-top: 0px; /* スクロール位置を調整 */
}

body {
  margin: 0 auto;
  font-family:
    'Noto Sans JP',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

code {
  font-family: 'Noto Sans Mono', monospace;
}

a:hover {
	text-decoration: none;}

a { color: #000;
    text-decoration: none;
    display: block;
}

ul {
    list-style-type: none;
    padding: 0;
  }  


/*header_______________________________________________________________________________*/
#MainHeader {
	margin: 0 auto;
	text-align: left;
}
/*####################　ヘッダ　####################*/
#MainHeader {
	min-width: 800px;
	width: 100%;
	height: 80px;
	position: fixed;
	top: 0;
	background-color: rgb(255, 255, 255);
    letter-spacing: 1px;
	z-index: 1000;
	display: none;
}
#MainHeader .innerBasic {
	width: 100%;
}
#MainHeader .innerBasic::after {
	content: "";
	display: block;
	clear: both;
}
#MainHeader h1 {
	margin: 27px 0 0 90px;
	width: 107px;
	float: left;
}
#MainHeader h1 img{
	display: block;
	width: 120px;
	height: auto;
}
#MainHeader::after {
	content: "";
	display: block;
	clear: both;
}
#HeaderNav {
	font-weight: bold;
}
#MainHeader nav::after{
	content: "";
	display: block;
	clear: both;
}
#MainHeader nav .headerMenu {
	float: right;
	font-size: 15px;
	margin-right: 98px;
    margin-top: -1px;
}
#MainHeader nav .business {
	display: none;
	position: absolute;
	top: 80px;
	left: 0;
	right: 0;
	margin: 0;
	padding: 23px 200px 23px 50px;
	width: 100%;
	min-width: 1000px;
	background: rgba(255,255,255,0.8);
	text-align: right;
}

#MainHeader nav  .business li,
#MainHeader nav  .company li{
	float: right;
	margin-left: 30px;
	margin-right: 0;
	font-size: 13px;
	letter-spacing: 0.5px;
	text-align: center;
	line-height: 18px;
}
#MainHeader nav  .business li{
	padding-top: 10px;
}

#MainHeader nav  .business li img {
	width:70px;
	height:auto;
}

#MainHeader nav  .business li span{
	font-size: 11px;
}

#MainHeader nav  .business li a:hover,
#MainHeader nav  .company li a:hover{
	opacity: 0.8;
	color: rgb(111, 110, 110);
}
#MainHeader nav .company {
	display: none;
	position: absolute;
	top: 80px;
	left: 0;
	right: 0;
	margin: 0;
	padding: 20px 200px 20px 50px;
	width: 100%;
	min-width: 1000px;
	background: rgba(255,255,255,0.8);
	text-align: right;
}

/* Hover時の表示 */
#MainHeader nav .headerMenu .menu02:hover + .business,
#MainHeader nav .business:hover {
	display: block;
}

#MainHeader nav .headerMenu .menu03:hover + .company,
#MainHeader nav .company:hover {
	display: block;
}

#MainHeader nav  .business li:last-of-type,
#MainHeader nav  .company li:last-of-type {
	margin-left: 0;
}
#MainHeader nav  .business li ul li,
#MainHeader nav  .company li ul li{
	float: none;
	padding-top: 5px;
	text-align: center;
}
#MainHeader nav  .business li ul li a,
#MainHeader nav  .company li ul li a{	display: inline;}
#MainHeader nav  .business li ul li::before,
#MainHeader nav  .company li ul li::before{
	content: "・";
	display: inline;
}
#MainHeader nav .headerMenu .menu {
	float: left;
	position: relative;
}
#MainHeader nav .headerMenu .here .line01 {
	width: 57%;
	left: -7%;
	opacity: 1;
}
#MainHeader nav .headerMenu .here .line02 {
	width: 57%;
	left: 50%;
	opacity: 1;
}
#MainHeader nav .headerMenu li .line {
	display: inline-block;
	position: absolute;
	bottom: -3px;
	left: 50%;
	border-top: solid 1.5px #000;
	opacity: 0;
}
#MainHeader nav .headerMenu .menu {
	margin: 33px 50px 0 0;
	cursor: pointer;
}
#MainHeader nav .headerMenu .menu .navArrow{
	position: absolute;
	margin: 5px 10px 15px 25px;
	width: 5px;
	height: 5px;
	border: 2px solid;
	border-color:  transparent transparent #565656 #565656;
	transform: rotate(-45deg);
	opacity: 0;
}
#MainHeader nav .headerMenu .menu:last-child {
	margin-right: 0;
}  

#SubHeader {
  width: 100vw;
  height: 100px;
  position: fixed;
  z-index: 1000;
  transition: 0.3s;
  display: block;
}

.header_total {
  width: 100vw;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_logo img {
  width: 130px;
  height: auto;
  margin-left: 30px;
}

/*========= ナビゲーションのためのCSS ===============*/

#GlobalNav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 998;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 40%;
  height: 100vh; /*ナビの高さ*/
  background: #007384;
  /*動き*/
  transition: all 0.6s;
  display: block;
}

/*アクティブクラスがついたら位置を0に*/
#GlobalNav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#GlobalNav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 998;
  width: 42%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#GlobalNav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/

#GlobalNav li {
  list-style: none;
  text-align: center;
}

#GlobalNav li img {
  margin-bottom: 40px;
  width: 195px;
}

#GlobalNav li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 25px;
}

#GlobalNav li a span {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 14px;
  margin-top: -6px;
}

#GlobalNav p {
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 10px;
  display: block;
  letter-spacing: 0.1em;
  font-size: 14px;
  margin-top: 20px;
}

@media screen and (min-width: 1000px) {
  #MainHeader {
    display: block;
  }
  
  #SubHeader {
    display: none;
  }
  
  #GlobalNav {
    display: none;
  }
  
  .openbtn {
    display: none;
  }
}

@media screen and (min-width: 1280px) {
  /*ナビゲーションの縦スクロール*/
  #GlobalNav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 998;
    width: 40%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media screen and (max-width: 999px) {
  #MainHeader {
    display: none;
  }
  
  #SubHeader {
    display: block;
  }
  
  #GlobalNav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 998;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background: #007384;
    /*動き*/
    transition: all 0.6s;
  }

  /*アクティブクラスがついたら位置を0に*/
  #GlobalNav.panelactive {
    right: 0;
  }

  /*ナビゲーションの縦スクロール*/
  #GlobalNav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 998;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  #GlobalNav li img {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  #GlobalNav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 998;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background: #007384;
    /*動き*/
    transition: all 0.6s;
  }

  /*アクティブクラスがついたら位置を0に*/
  #GlobalNav.panelactive {
    right: 0;
  }

  /*ナビゲーションの縦スクロール*/
  #GlobalNav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 998;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  #GlobalNav li img {
    display: none;
  }
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 5px;
  height: 1px;
  border-radius: 2px;
  background-color: #fff;
  width: 70%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}



/*トップ_______________________________________________________________________________*/

.top_wrapper {
  width: 100vw;
  height: auto;
  background-image: url("img/event_top.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: grid;
  place-content: center;
}

.top_container {
	position: relative;
	width: 85vw;
	height: auto;
	margin: 110px auto 0 auto;
	padding-bottom: 60px;
}

.top_eng {
	display: inline-flex;
	font-size: clamp(12px, 1.2vw, 17px);
	color: rgba(34, 165, 115, 1);
	border: solid 2px rgba(34, 165, 115, 1);
	border-radius: 30px;
	padding: 6px 1.3em;
}
.top_container h1 {
	font-size: clamp(34px, 4.5vw, 69px);
	font-weight: 600;
	line-height: 1.32em;
	font-feature-settings: "palt" 1;
	letter-spacing: 1px;
	margin: 20px 0 20px 0;
}
.top_container h2 {
	width: 36vw;
	font-size: clamp(15px, 1.4vw, 20px);
	font-weight: normal;
	line-height: 1.8em;
	text-align: justify;
	font-feature-settings: "palt" 1;
	margin-right: 70px;
}

.top_contact_box {
	display: flex;
	margin: 38px auto 0 auto;
}

.top_contact_grid {
	display: flex;
	flex-flow: column;
	gap: 20px;
}

.top_contact_btn {
	text-align: center;
	color: #fff;
	background-color: rgba(0,0,0,1);
	border: solid 2px rgba(0,0,0,1);
	border-radius: 20px;
	box-shadow: 4px 4px 0 0 #fff, 4px 4px 0 2px #000;
	padding: 17px 25px;
}
.top_contact_btn p {
	font-size: clamp(15px, 1.4vw, 20px);
	font-weight: bold;
}
.top_contact_btn:hover {
	background-color: #555;
	border: solid 2px #555;
}
.top_contact_sns_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(255,255,255,1);
	border: solid 2px rgba(0,0,0,1);
	border-radius: 20px;
	box-shadow: 4px 4px 0 0 #000, 4px 4px 0 2px #000;
	padding: 17px 25px;
}
.top_contact_sns_btn p {
	font-size: clamp(15px, 1.4vw, 20px);
	font-weight: bold;
}
.top_contact_sns_btn:hover {
	background-color: #e8e8e8;
}

.sns-icon {
	margin: 0px 8px 0px 0px;
}

.manage_here {
	position: absolute;
	width: 16vw;
	max-width: 220px;
	min-width: 100px;
	height: auto;
	top: 30px;
	right: 20px;
	cursor: pointer;
}

#works {
	scroll-margin-top: 65px;
}

.top_content_grid {
	position: absolute;
	right: 5vw;
	bottom: 150px;
	display: flex;
	gap: 18px;
	margin-top: 40px;
}
.top_content_respond {
	background-color: rgba(255,255,255,1);
	border-radius: 20px;
	padding: 20px 30px 18px 30px;
}
.top_content_heading {
	text-align: center;
	font-size: clamp(17px, 1.5vw, 22px);
	font-weight: 600;
	line-height: 1em;
	margin-bottom: 12px;
}
.top_content_text {
	font-size: clamp(15px, 1.4vw, 20px);
	line-height: 1.7em;
	margin-left: -15px;
}

@media (max-width: 1024px) {
	.top_wrapper {
		background-image: url("img/event_top2.webp");
	}
	.top_eng {
		color: #fff;
		background-color: rgba(34, 165, 115,1);
	}
	.top_container h1 {
		color: #fff;
	}
	.top_container h2 {
		width: 50vw;
		color: #fff;
		line-height: 1.7em;
	}
	.top_contact_box {
		margin: 50px auto 0 auto;
	}
	.top_contact_grid {
		gap: 15px;
	}
	.manage_here {
		top: 0;
		right: 0;
	}
	.top_content_grid {
		position: static;
	}
	.top_content_respond {
		padding: 18px 30px 16px 30px;
	}
	.top_content_heading {
		margin-bottom: 6px;
	}
	.top_content_text {
		line-height: 1.5em;
		margin-left: -15px;
	}
}
@media (max-width: 640px) {
	.top_wrapper {
		background-image: url("img/event_top2.webp");
	}
	.top_container {
		width: 90vw;
		padding-bottom: 45px;
	}
	.top_container h1 {
		line-height: 1.3em;
	}
	.top_container h2 {
		width: 100%;
		line-height: 1.55em;
	}
	.top_contact_box {
		position: static;
		justify-content: center;
		margin: 50px auto 0 auto;
	}
	.top_contact_grid {
		gap: 20px;
	}
	.top_contact_btn, .top_contact_sns_btn {
		border-radius: 18px;
		padding: 18px 20px;
	}
	.top_content_grid {
		position: static;
		justify-content: center;
	}
	.top_content_respond {
		border-radius: 16px;
		padding: 14px 17px 11px 17px;
	}
	.top_content_heading {
		text-align: center;
		font-size: 16px;
		font-weight: 600;
		margin-bottom: 8px;
	}
	.top_content_text {
		font-size: 14px;
		line-height: 1.5em;
		margin-left: -9px;
	}
}

/*区切り見出し　共通部分_________________________________________________________*/

.chapter_heading {
  max-width: 1100px; 
  text-align: left;
  margin: 0 auto;
}

.chapter_title_eng {
  font-size: 20px;
  color: rgb(34, 165, 115);
  text-align: left;
  letter-spacing: 5px;
}

.chapter_title {
  font-size: 40px;
  font-weight: 600;
  text-align: left;
  font-feature-settings: "palt" 1;
  letter-spacing: 2px;
  margin-top: 5px;
}

.chapter_text {
  font-size: 19px;
  text-align: left;
  text-align: justify;
  line-height: 33px;
  margin: 10px 0px 0px 0px;
}

@media (max-width: 640px) {
	.chapter_title_eng {
		font-size: 17px;
	}
	.chapter_title {
		font-size: 32px;
	}
	.chapter_text {
		font-size: 15px;
		line-height: 1.6em;
	}
}

/*サービス________________________________________________________________*/

.service_wrapper {
  width: 100vw;
  padding: 35px 50px 60px 50px;
  text-align: center;
  background-color: rgb(231, 231, 231);
}
@media (max-width: 640px) {
	.service_wrapper {
		padding: 30px 22px 50px 22px;
	}
}

.service_container { 
  max-width: 1100px;
  margin: 30px auto 0 auto;
}

/* Grid（スマホ1 / タブレット2 / デスクトップ4） */
.service_grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 30px;
}
@media (min-width: 640px) {
	.service_grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 30px;
		row-gap: 30px;
	}
}
@media (min-width: 1024px) {
	.service_grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 30px;
		row-gap: 30px;
	}
}

/* Box */
.service_box {
	display: flex;
	flex-direction: column;
	text-align: left;
	background-color: #fff;
	border: solid 3px rgba(0,0,0,1);
	border-radius: 15px;
	box-shadow: 7px 7px 0px #000;
	padding: 15px 30px 0px 30px;
}
.service_box-title {
  font-size: clamp(22px, 3.4vw, 32px);
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
  margin-bottom: 5px;
}
.service_box-text {
  line-height: 1.8em;
  font-size: 16px;
  text-align: justify;
  margin-bottom: 40px;
}
.service_box-eng {
  font-size: 15px;
  text-align: right;
  letter-spacing: 0.35em;
  line-height: 1em;
  margin-top: auto;
  margin-bottom: -2px;
}
.service_kome {
  font-size: 15px;
  text-align: left;
  text-align: justify;
  line-height: 1.5em;
  margin-top: 35px;
}

@media (max-width: 640px) {
	.service_box {
		padding: 15px 23px 0px 23px;
	}
	.service_box-text {
		line-height: 1.6em;
		font-size: 14px;
		margin-bottom: 30px;
	}
	.service_kome {
		font-size: 13px;
	}
}

/*競技________________________________________________________________*/

.sports_wrapper {
  width: 100vw;
  padding: 35px 50px 60px 50px;
  text-align: center;
  background-color: rgb(255, 255, 255);
}
@media (max-width: 640px) {
	.sports_wrapper {
		padding: 30px 22px 50px 22px;
	}
}

.sports_container { 
  max-width: 1100px;
  margin: 30px auto 0 auto;
}

/* Grid（スマホ1 / タブレット2 / デスクトップ4） */
.sports_grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 30px;
}
@media (min-width: 640px) {
	.sports_grid {
		grid-template-columns: repeat(2, 1fr);
		column-gap: 30px;
		row-gap: 30px;
	}
}
@media (min-width: 1024px) {
	.sports_grid {
		grid-template-columns: repeat(3, 1fr);
		column-gap: 30px;
		row-gap: 30px;
	}
}

/* Box */
.sports_box {
	display: flex;
	flex-direction: column;
	text-align: left;
	background-color: #fff;
	border: solid 3px rgba(0,0,0,1);
	border-radius: 15px;
	overflow: hidden;
}
.sports_box-title {
	font-weight: 600;
	font-size: clamp(25px, 3.4vw, 28px);
	letter-spacing: 0.05em;
	font-feature-settings: "palt" 1;
	margin: 17px 30px 7px 30px;
}
.sports_box-text {
	line-height: 1.7em;
	font-size: 16px;
	text-align: justify;
	margin: 0px 30px 20px 30px;
}

@media (max-width: 640px) {
	.sports_box-title {
		margin: 17px 23px 7px 23px;
	}
	.sports_box-text {
		line-height: 1.6em;
		font-size: 14px;
		margin: 0px 23px 20px 23px;
	}
}

/*流れ________________________________________________________________*/

.flow_wrapper {
  width: 100vw;
  padding: 35px 50px 60px 50px;
  text-align: center;
  background-color: rgb(231, 231, 231);
}
@media (max-width: 640px) {
	.flow_wrapper {
		padding: 30px 22px 50px 22px;
	}
}

.flow_container { 
  max-width: 1100px;
  margin: 30px auto 0 auto;
}

/* Box */
.flow_box {
	display: flex;
	position: relative;
	align-items: center;
	background-color: #fff;
	border: solid 3px rgba(0,0,0,1);
	border-radius: 20px;
	box-shadow: 7px 7px 0px #000;
	padding: 27px 35px 27px 30px;
}
.flow_step_box {
	color: #fff;
	text-align: center;
	font-size: 70px;
	font-weight: bold;
	line-height: 1em;
	letter-spacing: 1.5px;
	background-color: rgba(0,0,0,1);
	border-radius: 10px;
	padding: 5px 25px 10px 25px;
}
.flow_step {
	font-size: 20px;
	line-height: 1em;
}
.flow_text_box {
	text-align: left;
	margin-left: 30px;
}
.flow_title {
	font-size: 35px;
	font-weight: 500;
	margin-bottom: 5px;
}
.flow_text {
	text-align: justify;
	font-size: 15px;
	line-height: 1.8em;
}
.flow_d-triangle {
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 35px solid #000;
	border-right: 30px solid transparent;
	border-left: 30px solid transparent;
	border-bottom: 0;
	margin: 17px auto 10px auto;
}

@media (max-width: 1024px) {
	.flow_box {
		padding: 22px 30px 22px 25px;
	}
	.flow_step_box {
		font-size: 50px;
		padding: 5px 15px 10px 15px;
	}
	.flow_step {
		font-size: 17px;
	}
	.flow_text_box {
		margin-left: 25px;
	}
	.flow_title {
		font-size: 25px;
	}
	.flow_text {
		font-size: 15px;
		line-height: 1.6em;
	}
	.flow_d-triangle {
		width: 0;
		height: 0;
		border-style: solid;
		border-top: 23px solid #000;
		border-right: 20px solid transparent;
		border-left: 20px solid transparent;
		border-bottom: 0;
		margin: 17px auto 10px auto;
	}
}
@media (max-width: 640px) {
	.flow_box {
		padding: 15px 25px 15px 0;
	}
	.flow_step_box {
		font-size: 40px;
		border-radius: 0 10px 10px 0;
		padding: 8px 12px 10px 12px;
	}
	.flow_step {
		font-size: 16px;
	}
	.flow_text_box {
		margin-left: 25px;
	}
	.flow_title {
		font-size: 23px;
	}
	.flow_text {
		font-size: 15px;
		line-height: 1.6em;
	}
	.flow_d-triangle {
		width: 0;
		height: 0;
		border-style: solid;
		border-top: 23px solid #000;
		border-right: 20px solid transparent;
		border-left: 20px solid transparent;
		border-bottom: 0;
		margin: 17px auto 10px auto;
	}
}

/*料金________________________________________________________________*/

.price_wrapper {
  width: 100vw;
  padding: 35px 50px 60px 50px;
  text-align: center;
  background-color: rgb(255, 255, 255);
}
@media (max-width: 640px) {
	.price_wrapper {
		padding: 30px 22px 50px 22px;
	}
}

.price_container { 
  max-width: 1100px;
  margin: 30px auto 0 auto;
}

/* Box */
.price_box_staff {
	max-width: 900px;
	text-align: left;
	background-color: #fff;
	margin: 0 auto;
}
.price_box-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}

.price_box_staff table {
	width: 100%;
	border-collapse: collapse;
}
.price_box_staff th {
	text-align: center;
	font-weight: normal;
	background-color: #ddd;
	border: solid 2px rgba(0,0,0,1);
	padding: 20px 0px;
}
.price_box_staff td {
	text-align: center;
	font-weight: bold;
	border: solid 2px rgba(0,0,0,1);
	padding: 20px 0px;
}

.price_1h {
	font-size: 30px;
}

.price_box_ex {
	max-width: 900px;
	text-align: left;
	background-color: #fff;
	margin: 70px auto 0 auto;
}
.price_ex {
	font-size: 15px;
	margin-bottom: 5px;
}

.price_box_ex table {
	width: 100%;
	border-collapse: collapse;
}
.price_box_ex th {
	color: #fff;
	text-align: center;
	font-weight: normal;
	background-color: rgb(34, 165, 115);
	border: solid 2px rgba(0,0,0,1);
	padding: 20px 0px;
}
.price_box_ex td {
	text-align: center;
	border: solid 2px rgba(0,0,0,1);
	padding: 20px 0px;
}

.price_box_total {
	font-weight: bold;
	text-align: right;
	border-bottom: solid 2px rgba(0,0,0,1);
	padding: 22px 0px 7px 0px;
}
.price_total {
	font-size: 30px;
	line-height: 1em;
}

.price_kome {
	font-size: 15px;
	text-align: left;
	text-align: justify;
	line-height: 1.5em;
	margin-top: 20px;
}
.price_box_attention {
	font-size: 15px;
	text-align: left;
	text-align: justify;
	line-height: 1.5em;
	border: solid 1px rgba(0,0,0,1);
	margin-top: 50px;
	padding: 17px 25px 17px 35px;
}
.price_box_attention ul {
	list-style: disc;
	margin: 0;
}

.price_box_contact_text {
	font-size: 18px;
	margin: 45px 0 30px 0;
}

.price_contact_grid {
	display: flex;
	justify-content: center;
	gap: 30px;
}

.price_contact_btn {
	color: #fff;
	background-color: rgba(0,0,0,1);
	border: solid 2px rgba(0,0,0,1);
	border-radius: 25px;
	box-shadow: 5px 5px 0 0 #fff, 5px 5px 0 2px #000;
	padding: 25px 30px;
}
.price_contact_btn p {
	font-size: 20px;
	font-weight: bold;
}
.price_contact_btn:hover {
	background-color: #555;
	border: solid 2px #555;
}
.price_contact_sns_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(255,255,255,1);
	border: solid 2px rgba(0,0,0,1);
	border-radius: 25px;
	box-shadow: 5px 5px 0 0 #000, 5px 5px 0 2px #000;
	padding: 25px 25px;
}
.price_contact_sns_btn p {
	font-size: 20px;
	font-weight: bold;
}
.price_contact_sns_btn:hover {
	background-color: #e8e8e8;
}

@media (max-width: 1024px) {
	.price_box_staff table, .price_box_ex table {
		font-size: 13px;
	}
	.price_1h {
		font-size: 23px;
	}
	.price_total {
		font-size: 23px;
	}
	.price_contact_grid {
		display: grid;
		flex-flow: column;
		justify-content: center;
		gap: 30px;
		align-items: flex-start;
		align-items: center;
	}
}
@media (max-width: 640px) {
	.price_box-title {
		font-size: 18px;
	}
	.price_ex {
		font-size: 13px;
	}
	.price_box_staff table, .price_box_ex table {
		font-size: 12px;
	}
	.price_1h {
		font-size: 18px;
	}
	.price_total {
		font-size: 18px;
	}
	.price_kome {
		font-size: 14px;
	}
	.price_box_attention {
		font-size: 14px;
		padding: 15px 20px 15px 30px;
	}
	.price_contact_grid {
		display: grid;
		flex-flow: column;
		justify-content: center;
		gap: 25px;
		align-items: flex-start;
		align-items: center;
	}
	.price_box_contact_text {
		display: inline-block;
		text-align: left;
		font-size: 16px;
		margin: 40px 0 30px 0;
	}
	.price_contact_btn, .price_contact_sns_btn {
		border-radius: 18px;
		padding: 18px 20px;
	}
	.price_contact_btn p, .price_contact_sns_btn p {
		font-size: 15px;
	}
}

/*実績________________________________________________________________*/

.manage_wrapper {
  width: 100vw;
  padding: 35px 50px 60px 50px;
  text-align: center;
  background-color: rgb(231, 231, 231);
}
@media (max-width: 640px) {
	.manage_wrapper {
		padding: 30px 22px 50px 22px;
	}
}

.manage_container {
  max-width: 1100px;
  margin: 55px auto 0 auto;
}

.manage_title01, .manage_title02 {
	font-size: 30px;
	font-weight: 600;
	text-align: left;
	line-height: 1em;
	margin-bottom: 25px;
	padding: 5px 0 5px 0;
}
.manage_title02 {
	margin-top: 75px;
}

/* Grid（スマホ1 / タブレット2 / デスクトップ4） */
.manage_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 35px;
	row-gap: 30px;
}

@media (max-width: 850px) {
	.manage_grid {
		grid-template-columns: 1fr;
		row-gap: 35px;
	}
}

/* Box */
.manage_box {
	flex-direction: column;
	position: relative;
	text-align: left;
	background-color: #fff;
	border: solid 3px rgba(0,0,0,1);
	border-radius: 15px;
}
.manage_genre {
	position: absolute;
	top: -14px;
	right: 18px;
	color: #fff;
	font-size: 20px;
	line-height: 1.35em;
	background-color: rgb(34, 165, 115);
	border-radius: 5px;
	padding: 15px 15px 23px 15px;
	clip-path: polygon(0 0,100% 0,100% 75%,50% 100%,0 75%);
}
.manage_img {
	border-radius: 12px 12px 0 0;
	overflow: hidden;
}
.manage_box-title {
	font-weight: 600;
	font-size: clamp(23px, 3.4vw, 25px);
	line-height: 1.4em;
	font-feature-settings: "palt" 1;
	border-bottom: solid 1.5px rgba(0,0,0,1);
	margin: 17px 30px 12px 30px;
	padding-bottom: 5px;
}
.manage_box-text {
	line-height: 1.7em;
	font-size: 16px;
	text-align: justify;
	margin: 0px 30px 20px 30px;
}

.newspaper {
	font-size: 12px;
	text-align: right;
	margin: 3px 7px 0 0;
}

@media (max-width: 640px) {
	.manage_genre {
		font-size: 15px;
		padding: 12px 14px 18px 14px;
	}
	.manage_box-text {
		line-height: 1.6em;
		font-size: 14px;
	}
}

/*質問________________________________________________________________*/

.faq_wrapper {
  width: 100vw;
  padding: 35px 50px 60px 50px;
  text-align: center;
  background-color: rgb(255, 255, 255);
}
@media (max-width: 640px) {
	.faq_wrapper {
		padding: 30px 22px 50px 22px;
	}
}

.faq_container {
	max-width: 1100px;
	margin: 0 auto;
}

/* Box */
.faq_box {
	flex-direction: column;
	position: relative;
	text-align: left;
	border: solid 3px rgba(0,0,0,1);
	border-radius: 15px;
	box-shadow: 5px 5px 0 0 #000, 5px 5px 0 2px #000;
	margin: 55px 0 0 25px;
	padding: 65px 50px 0 50px;
}
.faq_title {
	position: absolute;
	top: -20px;
	left: -25px;
	color: #fff;
	font-size: 27px;
	font-weight: 600;
	line-height: 1.25em;
	background-color: #000;;
	border-radius: 8px;
	padding: 10px 20px;
}
.faq_inner {
	margin-bottom: 35px;
}
.faq_q {
	text-align: justify;
	font-feature-settings: "palt" 1;
	letter-spacing: 1px;
	border-bottom: 2px solid #000;
	position: relative;
	cursor: pointer;
}
.toggle_icon {
	position: absolute;
	top: 55%;
	right: 5px;
	width: 20px;
	height: 20px;
	margin-top: -15px;
}
.toggle_icon:before {
	position: absolute;
	content: "▼";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
}
.faq_q.open .toggle_icon:before {
	position: absolute;
	content: "ー";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
}
.faq_a {
	display: none;
	box-sizing: border-box;
	text-align: justify;
	background-color: rgb(231, 231, 231);
	margin-top: 15px;
	padding: 15px 20px 15px 20px;
}
.faq_q_txt {
	display: block;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5em;
	padding: 0 50px 5px 35px;
	position: relative;
}
.faq_q_txt::before {
  position: absolute;
  left: 5px;
  content: "Q.";
  font-size: 20px;
  font-weight: bold;
}
.faq_a_txt {
	display: block;
	font-size: 17px;
	line-height: 1.5em;
	padding: 0 0 0 30px;
	position: relative;
}
.faq_a_txt::before {
  position: absolute;
  left: 0;
  content: "A.";
  font-size: 20px;
  font-weight: bold;
}

a.faispo {
	display: inline;
    text-decoration: underline;
}

@media (max-width: 640px) {
	.faq_box {
		margin: 55px 0 0 0;
		padding: 45px 25px 0 25px;
	}
	.faq_title {
		top: -20px;
		left: 15px;
		font-size: 20px;
		padding: 7px 15px;
	}
	.faq_inner {
		margin-bottom: 30px;
	}
	.faq_q_txt {
		font-size: 16px;
		line-height: 1.3em;
	}
	.faq_a_txt {
		font-size: 15px;
	}
	.toggle_icon {
      right: 0px;
	}
	.toggle_icon:before {
      width: 15px;
	}
}

/*問い合わせ________________________________________________________________*/

.contact_wrapper {
  width: 100vw;
  padding: 50px 50px 80px 50px;
  text-align: center;
  background-color: rgb(34, 165, 115);
}
@media (max-width: 640px) {
	.contact_wrapper {
		padding: 30px 22px 50px 22px;
	}
}

.contact_container {
	max-width: 1100px;
	margin: 0 auto;
}

.contact_title {
	font-size: 20px;
	color: #fff;
	letter-spacing: 5px;
	margin-bottom: 30px;
}
.contact_midashi {
	font-size: 50px;
	color: #fff;
	font-weight: 600;
	line-height: 1.4em;
	letter-spacing: 3px;
	font-feature-settings: "palt" 1;
}
.contact_text {
	font-size: 22px;
	color: #fff;
	letter-spacing: 2px;
	font-feature-settings: "palt" 1;
	margin: 20px 0 50px 0;
}

.contact_contact_grid {
	display: flex;
	justify-content: center;
	gap: 30px;
}

.contact_contact_btn {
	color: #fff;
	background-color: rgba(0,0,0,1);
	border: solid 2px rgba(0,0,0,1);
	border-radius: 25px;
	box-shadow: 5px 5px 0 0 #fff, 5px 5px 0 2px #000;
	padding: 25px 30px;
}
.contact_contact_btn p {
	font-size: 20px;
	font-weight: bold;
}
.contact_contact_btn:hover {
	background-color: #555;
	border: solid 2px #555;
}
.contact_contact_sns_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(255,255,255,1);
	border: solid 2px rgba(0,0,0,1);
	border-radius: 25px;
	box-shadow: 5px 5px 0 0 #000, 5px 5px 0 2px #000;
	padding: 25px 25px;
}
.contact_contact_sns_btn p {
	font-size: 20px;
	font-weight: bold;
}
.contact_contact_sns_btn:hover {
	background-color: #e8e8e8;
}

@media (max-width: 1024px) {
	.contact_title {
		font-size: 18px;
	}
	.contact_contact_grid {
		display: grid;
		flex-flow: column;
		justify-content: center;
		gap: 30px;
		align-items: flex-start;
		align-items: center;
	}
	.contact_midashi {
		display: inline-block;
		text-align: left;
		font-size: 40px;
	}
	.contact_text {
		display: inline-block;
		text-align: left;
		font-size: 18px;
	}
}
@media (max-width: 640px) {
	.contact_contact_grid {
		display: grid;
		flex-flow: column;
		justify-content: center;
		gap: 25px;
		align-items: flex-start;
		align-items: center;
	}
	.contact_midashi {
		font-size: 30px;
	}
	.contact_text {
		font-size: 16px;
	}
	.contact_contact_btn, .contact_contact_sns_btn {
		border-radius: 18px;
		padding: 18px 20px;
	}
	.contact_contact_btn p, .contact_contact_sns_btn p {
		font-size: 15px;
	}
}

/*_________________________________________________________________________*/

/* Box */
.box {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 24px 32px;
  display: grid;
  grid-template-rows: auto auto 1fr auto; /* header / thumb / desc / button */
  gap: 22px;
}

/*footer_______________________________________________________________________________*/

.footer {
 color: #fff;
 background: #007384;
 padding: 30px;
}
.footer_img {
    text-align: center;
}
.footer_img img {
    margin: auto;
    width:200px;
    height:auto;
    margin-top: 20px;
    margin-bottom: 50px;
}
.footer a {
 color: #fff;
 text-decoration: none;
 transition: 0.5s;
}
.footer li a:hover {
 color: #888888;
}
.footer .wrap {
 width: 900px;
 margin: 0 auto;
 display: flex;
 flex-wrap: wrap;
 justify-content: space-between;
}
.footer .wrap h3 {
 margin: 0 0 20px 0;
 padding: 0;
 border-bottom: 0px #c4c4c4 solid;
 transition: 0.5s;
 letter-spacing: 1px;
 letter-spacing: 2px;
}
.footer h3 a:hover {
  color: #888888;
}
.footer .wrap p {
 margin: 0;
 padding: 0 0 20px 0;
}
.footer .wrap .box {
 width: 22%;
}
.footer .wrap .box ul {
 margin: 0;
 padding: 0 0 10px 0;
 list-style: none;
}
.footer .wrap .box ul li a {
 display: block;
 padding: 7px 0px 7px 0px;
 letter-spacing: 0.5px;
}
.footer_private {
 width: 100%;
 text-align: center;
 letter-spacing: 1px;
 padding: 40px 0 5px 0;
 border-top: 0.75px #ffffff solid;
 transition: 0.5s;
}
.footer_private a:hover {
    color: #888888;
}
.footer_private img {
    text-align: center;
    width:150px;
    margin: auto;
    margin-bottom: 20px;
}
.footer_private p {
    font-size: 15px;
}
.footer .wrap .copyright {
 width: 100%;
 text-align: center;
 letter-spacing: 1px;
 padding: 10px 0 0 0;
 font-size: 14px;
}
.footer .wrap .copyright2 {
 width: 100%;
 font-size: 13px;
 text-align: center;
 padding: 10px 0 0 0;
 letter-spacing: 0.5px;
}

.br-sp {
    display: none;
}

@media only screen and (max-width: 800px) {
.footer .wrap {
 width: 100%;
 padding: 0 20px;
 box-sizing: border-box;
}
.footer .wrap h3 {
 border: none;
 margin-top: 10px;
}
.footer .wrap .box {
 width: 100%;
}
.box {
  margin-bottom: -80px;
}
.footer .wrap .box ul {
 border-top: 0.5px #ffffff solid;
}
.footer .wrap .box ul li a {
 display: block;
 padding: 10px 10px;
 border-bottom: 0.5px #ffffff solid;
}
.footer_img img {
    width:200px;
    height:auto;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 30px;
}

.br-sp {
    display:block;
}

}

/*####################　ページトップスクロール　####################*/
#top_scroll {
	position: fixed;
	bottom: 18px;
	right: 22px;
	background-color: rgb(255, 255, 255, 0);
	border: none;
	cursor: pointer;
	
/* アニメーション用の初期状態（非表示・透明） */
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* ボタンを表示するときのクラス */
#top_scroll.is-show {
	opacity: 0.5;
	visibility: visible;
}
@media (hover: hover) {
	#top_scroll.is-show:hover {
		opacity: 1;
	}
}
.top_arrow {
	width: 50px;
	height: auto;
}
@media (max-width: 640px) {
	#top_scroll {
		bottom: 10px;
		right: 10px;
	}
	.top_arrow {
		width: 40px;
	}
}