@charset "UTF-8";

/*--------------------------------------------------------------------------------
  reset
--------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-weight: normal;
  vertical-align: baseline;
	box-sizing: border-box;
}
body {
  line-height:1;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
table, tr, th, td, caption {
  vertical-align: middle;
  text-align:left;
}
img {
  vertical-align: top;
  font-size:0;
  line-height: 0;
	width: 100%;
}
textarea{
	vertical-align: top;
}


/*--------------------------------------------------------------------------------
  body
--------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #000;
  font-size: 15px;
	font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
	-webkit-text-size-adjust: none;
	word-break: break-word;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

a {
	display: block;
	color: #000;
  text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
}

img {
	max-width: 100%;
	width: 100%;
	height: auto;
}

body, html {
	height: 100%;
}

.sp-br {
	display: none;
}
.pc-br {
	display: block;
}

.sp-only {
  display: none;
}
.pc-only {
  display: block;
}

.cf:after {
  content: "";
  clear: both;
  display: block;
}

.cl-wh {
  color: #fff;
}
.cl-bl {
  color: #00AAF8;
}

.vietnam {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
	body {
		font-size: 14px;
	}
	
	.sp-br {
		display: block;
	}
	.pc-br {
		display: none;
	}

	.sp-only {
		display: block;
	}
	.pc-only {
		display: none;
	}
}


/*--------------------------------------------------
　header
--------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 70px;
  padding: 0 30px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  z-index: 111;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

header h1 {
  font-size: 18px;
  font-weight: 700;
}

.header-nav__list {
  display: flex;
  justify-content: space-between;
  gap: 0 100px;
}
.header-nav__list li a {
  padding-right: 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
}
.header-nav__list li a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  transform: translate(0,-50%) rotate(135deg);
	width: 8px;
	height: 8px;
	border-top: 1px solid #E7138A;
	border-right: 1px solid #E7138A;
}

@media screen and (max-width: 1140px) {
  header {
    height: 6.1vw;
    padding: 0 2.6vw;
  }

  header h1 {
    font-size: 1.5vw;
  }

  .header-nav__list {
    gap: 0 8.7vw;
  }
  .header-nav__list li a {
    padding-right: 3.5vw;
    font-size: 1.4vw;
  }
  .header-nav__list li a::after {
    width: 0.7vw;
    height: 0.7vw;
  }  
}

@media screen and (max-width: 768px) {
  header {
    height: 60px;
    padding: 0 20px;
  }

  .header-inner {
  }

  header h1 {
    font-size: 4.1vw;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
  }
  
  .hb-open .header-nav__inner {
    transform: translateX(0);
    transform: translateZ(0);
  }
  .header-nav__inner {
    position: fixed;
    top: 60px;
    right: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    padding: 50px 20px;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    transition: .5s;
    transform: translateX(100%);
    z-index: 10;
  }  
  
  .header-nav__list {
    display: block;
  }
  .header-nav__list li {
    width: 50%;
    margin-bottom: 35px;
  }
  .header-nav__list li:last-child {
    margin-bottom: 0;
  }
  .header-nav__list li a {
    padding-right: 20px;
    font-size: 4.6vw;
  }
  .header-nav__list li a::after {
    width: 7px;
    height: 7px;
  }
  
  
  /*----- #hb-menu -----*/
	#hb-menu {
		display: table;
		position: fixed;
		top: 0;
		right: 20px;
		background: none;
		width: 33px;
		height: 60px;
		cursor: pointer;
		z-index: 1000;
	}
	#hb-menu .hb-inner {
		display: table-cell;
		vertical-align: middle;
	}
	#hb-menu span {
		display: block;
		background: #000;
		width: 33px;
		height: 1px;
		margin: auto;
		border-radius: 0;
		-webkit-transition: all .5s ease-in-out;
		-moz-transition: all .5s ease-in-out;
		transition: all .5s ease-in-out;
	}
	#hb-menu span:nth-of-type(2),
	#hb-menu span:nth-of-type(3) {
		margin-top: 6px;
	}
	#hb-menu span:nth-of-type(4) {
    background: none;
    width: 100%;
    height: auto;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transition: opacity .3s ease, visibility .3s ease;
	}
	#hb-menu span:nth-of-type(4)::after {
    content: "MENU";
    display: block;
    color: #E7138A;
    font-size: 2.8vw;
    font-weight: 500;
    text-align: center;
    line-height: 1;
    opacity: 1;
    visibility: visible;
    transition: opacity .3s ease, visibility .3s ease;
	}
  
	/* ナビゲーションアイコン：アクティブ */
	.hb-open span:nth-of-type(1) {
		transform: translateY(7px) translateX(0) rotate(45deg);
	}
	.hb-open span:nth-of-type(2) {
		opacity: 0;
		transform: translateY(7px);
	}
	.hb-open span:nth-of-type(3) {
		transform: translateY(-7px) translateX(0) rotate(-45deg);
	}
	.hb-open #hb-menu span:nth-of-type(4) {
    height: 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
	}
	.hb-open #hb-menu span:nth-of-type(4)::after {
    opacity: 0;
    visibility: hidden;
	}
  
	/* overlay */
	.overlay {
		position: fixed;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		background: transparent;
		pointer-events: none;
		z-index: 10;
		transition: 0.2s;
	}
	.hb-open .overlay {
		background: none;
		pointer-events: auto;
	}

  
  /*----- entry-parts -----*/
  .header-nav .entry-parts {
    background: #FFE561;
    margin-top: 70px;
    padding: 25px 20px;
    border-radius: 30px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  }
  .header-nav .entry-parts__ttl {
    font-size: 4.6vw;
    font-weight: 800;
    text-align: center;
  }
  .header-nav .entry-parts__block {
    margin-top: 17px;
  }
  .header-nav .entry-parts__item {
    width: 80%;
    margin: 0 auto 20px;
  }
  .header-nav .entry-parts__item:last-child {
    margin: 0 auto 0;
  }
  .header-nav .entry-parts__txt {
    font-size: 3.6vw;
  }
  .header-nav .entry-parts__link {
    margin-top: 5px;
  }
}


/*--------------------------------------------------
　footer
--------------------------------------------------*/
footer {
  background: #000;
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  justify-content: center;
  gap: 0 40px;
}

.fotter-txt {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

@media screen and (max-width: 1140px) {
  footer {
    padding: 2.8vw 1.7vw;
  }

  .footer-inner {
    gap: 0 1.8vw;
  }

  .fotter-txt {
    font-size: 1.2vw;
  }
}

@media screen and (max-width: 768px) {
  footer {
    padding: 27px 20px;
  }

  .footer-inner {
    display: block;
  }

  .fotter-txt {
    margin-bottom: 10px;
    font-size: 3.3vw;
  }
  .fotter-txt:last-child {
    margin-bottom: 0;
  }
}


/*--------------------------------------------------
　fixed-entry
--------------------------------------------------*/
.fixed-entry {
  position: fixed;
  bottom: 100px;
  right: 0;
  max-width: 340px;
  z-index: 11;
}

.fixed-entry .entry-parts {
  background: #FFE561;
  padding: 15px 42px;
  border-radius: 30px 0 0 30px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}

.fixed-entry .entry-parts__ttl {
  font-size: 28px;
  font-weight: 800;
}

.fixed-entry .entry-parts__block {
  margin-top: 14px;
}

.fixed-entry .entry-parts__item {
  margin-bottom: 14px;
}
.fixed-entry .entry-parts__item:last-child {
  margin-bottom: 0;
}

.fixed-entry .entry-parts__txt {
  font-size: 14px;
  font-weight: 500;
}

.fixed-entry .entry-parts__link {
  margin-top: 3px;
}

@media screen and (max-width: 1140px) {
  .fixed-entry {
    bottom: 8.7vw;
    max-width: 29vw;
  }

  .fixed-entry .entry-parts {
    padding: 1.3vw 3.6vw;
  }

  .fixed-entry .entry-parts__ttl {
    font-size: 2.4vw;
  }

  .fixed-entry .entry-parts__block {
    margin-top: 1.2vw;
  }

  .fixed-entry .entry-parts__item {
    margin-bottom: 1.2vw;
  }

  .fixed-entry .entry-parts__txt {
    font-size: 1.2vw;
  }

  .fixed-entry .entry-parts__link {
    margin-top: 0.2vw;
  }  
}

@media screen and (max-width: 768px) {
  .fixed-entry {
    bottom: 10px;
    max-width: 60%;
  }

  .fixed-entry .entry-parts {
    padding: 18px 20px;
  }

  .fixed-entry .entry-parts__ttl {
    font-size: 4.6vw;
  }

  .fixed-entry .entry-parts__block {
    margin-top: 10px;
  }

  .fixed-entry .entry-parts__item {
    margin-bottom: 12px;
  }

  .fixed-entry .entry-parts__txt {
    font-size: 3vw;
  }

  .fixed-entry .entry-parts__link {
    margin-top: 3px;
  }
}


/*--------------------------------------------------
　mv
--------------------------------------------------*/
.mv {
  width: 100%;
  margin-top: 70px;
  padding: 0 20px;
  position: relative;
}
.mv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  background: url("../img/mv-bg.jpg") center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 1037px;
  box-sizing: border-box;
  z-index: -1;
}

.mv-inner {
  max-width: 1140px;
  margin: auto;
  position: relative;
}

.mv-title {
  max-width: 1220px;
  margin-left: -150px;
}

.mv-free {
  position: absolute;
  top: 60px;
  right: 0;
  width: 217px;
}

@media screen and (max-width: 1140px) {
  .mv {
    margin-top: 6.1vw;
    padding: 0 1.7vw;
  }
  .mv::after {
    height: 90vw;
  }

  .mv-inner {
    max-width: 100vw;
  }

  .mv-title {
    max-width: 107vw;
    margin-left: -13vw;
  }

  .mv-free {
    top: 5.2vw;
    width: 19vw;
  }
}

@media screen and (max-width: 768px) {
  .mv {
    margin-top: 60px;
    padding: 0 0;
  }
  .mv::after {
    background: url("../img/mv-bg-sp.jpg") center top no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 0;
    padding-top: calc(100%*1714/780);
  }

  .mv-inner {
    max-width: 100%;
  }

  .mv-title {
    max-width: 100%;
    margin-left: 0;
  }

  .mv-free {
    position: relative;
    top: inherit;
    right: inherit;
    width: 35%;
    margin: -30px 20px 0 auto;
  }
}


/*--------------------------------------------------
　container
--------------------------------------------------*/
.container {
  margin-top: 42px;
  position: relative;
}

.container .sec {
  width: 100%;
}

.container .sec-inner {
  max-width: 1140px;
  margin: auto;
}

@media screen and (max-width: 1140px) {
  .container {
    margin-top: 3.6vw;
  }

  .container .sec-inner {
    max-width: 100vw;
  }
}

@media screen and (max-width: 768px) {
  .container {
    margin-top: 30px;
  }
  
  .container .sec-inner {
    max-width: 100%;
  }
}


/*--------------------------------------------------
　Title
--------------------------------------------------*/
.container h2, 
.container h3, 
.container h4, 
.container h5 {
  font-weight: 800;
  line-height: 1.5;
}

.container .com-ttl {
  font-size: 28px;
  text-align: center;
  position: relative;
}
.container .com-ttl::after {
  content: "";
  display: block;
  background: url("../img/ttl-deco.png") center top no-repeat;
  background-size: contain;
  width: 179px;
  height: 4px;
  margin: 25px auto 0;
  box-sizing: border-box;
}

@media screen and (max-width: 1140px) {
  .container .com-ttl {
    font-size: 2.4vw;
  }
  .container .com-ttl::after {
    width: 15vw;
    height: 0.3vw;
    margin: 2.1vw auto 0;
  }
}

@media screen and (max-width: 768px) {
  .container .com-ttl {
    font-size: 4.4vw;
  }
  .container .com-ttl::after {
    width: 40%;
    height: 0;
    margin: 15px auto 0;
    padding-top: calc(40%*4/179);
  }
}


/*--------------------------------------------------
　Text
--------------------------------------------------*/
.container p {
  font-weight: 500;
}
.container .lead {
  font-size: 18px;
  line-height: 2;
}
.container .txt {
  font-size: 15px;
  line-height: 2;
}
.container .note {
  font-size: 15px;
  line-height: 2;
}
p.txt-bold {
  font-weight: 700;
}

@media screen and (max-width: 1140px) {
  .container .lead {
    font-size: 1.5vw;
  }
  .container .txt {
    font-size: 1.3vw;
  }
  .container .note {
    font-size: 1.3vw;
  }
}

@media screen and (max-width: 768px) {
  .container .lead {
    font-size: 3.5vw;
  }
  .container .txt {
    font-size: 3.5vw;
    line-height: 1.8;
  }
  .container .note {
    font-size: 3.5vw;
    line-height: 1.8;
  }  
}


/*--------------------------------------------------
　sec-about
--------------------------------------------------*/
.sec-about {
  padding: 0 20px;
}

.sec-about .sec-inner {
  background: #fff;
  padding: 24px 24px;
  border-radius: 30px 30px 0 0;
}

.sec-about__cc {
  margin-top: 25px;
  font-size: 32px;
  font-weight: 800;
  text-align: center;
}

.sec-about .lead {
  margin-top: 15px;
  text-align: center;
}

.sec-about__item {
  text-align: center;
}

.sec-about .date-box {
  margin-top: 30px;
}
.sec-about .date-box__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
}
.sec-about .date-box .date {
  font-size: 64px;
}
.sec-about .date-box .week {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #E30062;
  width: 38px;
  height: 38px;
  font-size: 19px;
  border-radius: 50%;
}
.sec-about .date-box .time {
  font-size: 47px;
}

.sec-about .venue {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
}
.sec-about .venue span {
  display: inline-block;
  vertical-align: middle;
  background: #00AAF8;
  margin-right: 12px;
  padding: 6px 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  border-radius: 2px;
}

@media screen and (max-width: 1140px) {
  .sec-about {
    padding: 0 1.7vw;
  }

  .sec-about .sec-inner {
    padding: 2.1vw 2.1vw;
  }

  .sec-about__cc {
    margin-top: 2.1vw;
    font-size: 2.8vw;
  }

  .sec-about .lead {
    margin-top: 1.3vw;
  }

  .sec-about .date-box {
    margin-top: 2.6vw;
  }
  .sec-about .date-box__inner {
    gap: 0 0.8vw;
  }
  .sec-about .date-box .date {
    font-size: 5.6vw;
  }
  .sec-about .date-box .week {
    width: 3.3vw;
    height: 3.3vw;
    font-size: 1.6vw;
  }
  .sec-about .date-box .time {
    font-size: 4.1vw;
  }

  .sec-about .venue {
    font-size: 2.4vw;
  }
  .sec-about .venue span {
    margin-right: 1vw;
    padding: 0.5vw 0.8vw;
    font-size: 1.5vw;
  }
}

@media screen and (max-width: 768px) {
  .sec-about {
    padding: 0 20px;
  }
  
  .sec-about .sec-inner {
    padding: 20px 15px;
  }

  .sec-about__cc {
    margin-top: 15px;
    font-size: 5vw;
  }

  .sec-about .lead {
    margin-top: 15px;
  }
  
  .sec-about .date-box {
    margin-top: 28px;
  }
  .sec-about .date-box__inner {
    gap: 0 2vw;
  }
  .sec-about .date-box .date {
    font-size: 9.3vw;
  }
  .sec-about .date-box .week {
    width: 6.2vw;
    height: 6.2vw;
    font-size: 2.6vw;
  }
  .sec-about .date-box .time {
    font-size: 6.6vw;
  }

  .sec-about .venue {
    font-size: 4.1vw;
  }
  .sec-about .venue span {
    margin-right: 6px;
    padding: 5px 5px;
    font-size: 2.6vw;
  }
}


/*--------------------------------------------------
　sec-contents
--------------------------------------------------*/
.sec-contents {
  padding: 74px 20px 0;
}

.sec-contents__block {
  display: flex;
  justify-content: space-between;
  gap: 0 20px;
  margin-top: 48px;
}

.sec-contents__item {
  width: calc(100% / 4);
}

.sec-contents__ttl {
  padding: 10px 20px;
  font-size: 20px;
  text-align: center;
  border-radius: 2px;
}
.sec-contents__item:nth-child(1) .sec-contents__ttl {
  background: #FFA8D9;
}
.sec-contents__item:nth-child(2) .sec-contents__ttl {
  background: #4CD5FF;
}
.sec-contents__item:nth-child(3) .sec-contents__ttl {
  background: #93DB45;
}
.sec-contents__item:nth-child(4) .sec-contents__ttl {
  background: #FFF000;
}

.sec-contents__img {
  margin-top: 5px;
}

.sec-contents .txt {
  margin-top: 12px;
}

@media screen and (max-width: 1140px) {
  .sec-contents {
    padding: 6.4vw 1.7vw 0;
  }

  .sec-contents__block {
    gap: 0 1.7vw;
    margin-top: 4.2vw;
  }

  .sec-contents__ttl {
    padding: 0.8vw 1.7vw;
    font-size: 1.7vw;
  }

  .sec-contents__img {
    margin-top: 0.4vw;
  }

  .sec-contents .txt {
    margin-top: 1vw;
  }
}

@media screen and (max-width: 768px) {
  .sec-contents {
    padding: 60px 20px 0;
  }

  .sec-contents__block {
    display: block;
    margin-top: 24px;
  }

  .sec-contents__item {
    width: 100%;
    margin-bottom: 20px;
  }
  .sec-contents__item:last-child {
    margin-bottom: 0;
  }

  .sec-contents__ttl {
    padding: 10px 20px;
    font-size: 4.1vw;
  }
  
  .sec-contents__img {
    margin-top: 5px;
  }

  .sec-contents .txt {
    margin-top: 12px;
  }
}


/*--------------------------------------------------
　sec-present
--------------------------------------------------*/
.sec-present {
  padding: 74px 20px 0;
}

.sec-present .sec-ttl {
  font-size: 28px;
  text-align: center;
}

.sec-present__block {
  display: flex;
  justify-content: space-between;
  gap: 0 20px;
  margin-top: 34px;
}

.sec-present__item {
  width: calc(100% / 3);
}

.sec-present__bonus {
  padding: 15px 20px;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
}
.sec-present__item:nth-child(1) .sec-present__bonus {
  background: #E3007F;
}
.sec-present__item:nth-child(2) .sec-present__bonus {
  background: #F57900;
}
.sec-present__item:nth-child(3) .sec-present__bonus {
  background: #0AB7D8;
}

.sec-present__ttl {
  margin-top: 14px;
  margin-bottom: 20px;
  font-size: 26px;
}

.sec-present__bnr {
  background: #0AB7D8;
  max-width: 490px;
  margin: 74px auto 0;
  padding: 18px 60px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  text-align: center;
  border-radius: 100px;
  position: relative;
}
.sec-present__bnr::before,
.sec-present__bnr::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  transform: translate(0,-50%);
  background: url("../img/icon-present.png") left top no-repeat;
  background-size: contain;
  width: 62px;
  height: 62px;
  box-sizing: border-box;
}
.sec-present__bnr::before {
  left: -15px;
  transform: translate(0,-50%) rotate(-12deg);
}
.sec-present__bnr::after {
  right: -15px;
  transform: translate(0,-50%) rotate(12deg);
}

@media screen and (max-width: 1140px) {
  .sec-present {
    padding: 6.4vw 1.7vw 0;
  }

  .sec-present .sec-ttl {
    font-size: 2.4vw;
  }

  .sec-present__block {
    gap: 0 1.7vw;
    margin-top: 2.9vw;
  }

  .sec-present__bonus {
    padding: 1.3vw 1.7vw;
    font-size: 1.7vw;
  }

  .sec-present__ttl {
    margin-top: 1.2vw;
    margin-bottom: 1.7vw;
    font-size: 2.1vw;
  }

  .sec-present__bnr {
    max-width: 42vw;
    margin: 6.4vw auto 0;
    padding: 1.5vw 5.2vw;
    font-size: 1.4vw;
  }
  .sec-present__bnr::before,
  .sec-present__bnr::after {
    top: calc(50% - 0.4vw);
    width: 5.4vw;
    height: 5.4vw;
  }
  .sec-present__bnr::before {
    left: -1.3vw;
  }
  .sec-present__bnr::after {
    right: -1.3vw;
  }
}

@media screen and (max-width: 768px) {
  .sec-present {
    padding: 60px 20px 0;
  }

  .sec-present .sec-ttl {
    font-size: 4.4vw;
  }

  .sec-present__block {
    display: block;
    margin-top: 24px;
  }

  .sec-present__item {
    width: 100%;
    margin-bottom: 40px;
  }
  .sec-present__item:last-child {
    margin-bottom: 0;
  }

  .sec-present__bonus {
    padding: 10px 20px;
    font-size: 4.1vw;
  }

  .sec-present__ttl {
    margin-top: 12px;
    margin-bottom: 15px;
    font-size: 5.7vw;
  }

  .sec-present__bnr {
    width: calc(100% + 40px);
    max-width: calc(100% + 40px);
    margin: 80px 20px 0 -20px;
    padding: 18px 10px;
    font-size: 4.1vw;
    border-radius: 0;
  }
  .sec-present__bnr::before,
  .sec-present__bnr::after {
    top: inherit;
    bottom: calc(100% - 10px);
    transform: translate(-50%,0);
    width: 15%;
    height: 0;
    padding-top: 15%;
  }
  .sec-present__bnr::before {
    left: 50%;
    transform: translate(-50%,0) rotate(-12deg);
  }
  .sec-present__bnr::after {
    display: none;
  }
}


/*--------------------------------------------------
　sec-company
--------------------------------------------------*/
.sec-company {
  margin-top: 74px;
}

.sec-company .sec-ttl__wrap {
  background: url("../img/bg01.jpg") center center no-repeat;
  background-size: cover;
  width: 100%;
  padding: 96px 20px;
  text-align: center;
}
.sec-company .sec-ttl {
  background: #fff;
  max-width: 1140px;
  margin: auto;
  padding: 40px 40px;
  border-radius: 30px;
  font-size: 39px;
  font-weight: 700;
}

.sec-company__block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 58px;
  margin-top: 35px;
  padding: 0 20px;
}

.sec-company__item {
  width: calc((100% - 58px) / 2);
}

.sec-company__ttl {
  display: flex;
  align-items: center;
  min-height: 70px;
  padding-right: 70px;
  padding-bottom: 15px;
  font-size: 34px;
  border-bottom: 2px solid #00AAF8;
  position: relative;
}
.sec-company__ttl.small {
  padding-right: 60px;
  font-size: 25px;
}
.sec-company__ttl::after {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  right: 0;
  transform: translate(0,-50%);
  background: url("../img/icon-link.png") left top no-repeat;
  background-size: contain;
  width: 50px;
  height: 51px;
  box-sizing: border-box;
}

.sec-company__cc {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
}

.sec-company__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 20px;
}
.sec-company__tag li {
  background: #fff;
  padding: 5px 12px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 100px;
}
.sec-company__tag li.pk {
  color: #E3007F;
  border: 1px solid #E3007F;
}
.sec-company__tag li.bl {
  color: #0663B2;
  border: 1px solid #0663B2;
}
.sec-company__tag li.or {
  color: #E37900;
  border: 1px solid #E37900;
}
.sec-company__tag li.gn {
  color: #0F880A;
  border: 1px solid #0F880A;
}

@media screen and (max-width: 1140px) {
  .sec-company {
    margin-top: 6.4vw;
  }

  .sec-company .sec-ttl__wrap {
    padding: 8.4vw 1.7vw;
  }
  .sec-company .sec-ttl {
    max-width: 100vw;
    padding: 3.5vw 3.5vw;
    font-size: 3.4vw;
  }

  .sec-company__block {
    gap: 3.5vw 5vw;
    margin-top: 3vw;
    padding: 0 1.7vw;
  }

  .sec-company__item {
    width: calc((100% - 5vw) / 2);
  }

  .sec-company__ttl {
    min-height: 6.1vw;
    padding-right: 6.1vw;
    padding-bottom: 1.3vw;
    font-size: 2.9vw;
  }
  .sec-company__ttl.small {
    padding-right: 5.2vw;
    font-size: 2.1vw;
  }
  .sec-company__ttl::after {
    top: calc(50% - 0.8vw);
    width: 4.3vw;
    height: 4.4vw;
  }

  .sec-company__cc {
    margin-top: 1.7vw;
    font-size: 1.7vw;
  }

  .sec-company__tag {
    gap: 0.5vw 0.8vw;
    margin-top: 1.7vw;
  }
  .sec-company__tag li {
    padding: 0.4vw 1vw;
    font-size: 1.4vw;
  }
}

@media screen and (max-width: 768px) {
  .sec-company {
    margin-top: 60px;
  }

  .sec-company .sec-ttl__wrap {
    padding: 22px 20px;
  }
  .sec-company .sec-ttl {
    max-width: 100%;
    padding: 12px 10px;
    border-radius: 100px;
    font-size: 4.1vw;
  }

  .sec-company__block {
    display: block;
    margin-top: 15px;
    padding: 0 20px;
  }

  .sec-company__item {
    width: 100%;
    margin-bottom: 22px;
  }
  .sec-company__item:last-child {
    margin-bottom: 0;
  }

  .sec-company__ttl {
    display: block;
    min-height: inherit;
    padding-right: 12%;
    padding-bottom: 12px;
    font-size: 5.2vw;
    border-bottom: 1px solid #00AAF8;
  }
  .sec-company__ttl.small {
    padding-right: 12%;
    font-size: 5.2vw;
  }
  .sec-company__ttl::after {
    top: calc(50% - 8px);
    width: 9%;
    height: 0;
    padding-top: calc(9%*51/50);
  }

  .sec-company__cc {
    margin-top: 10px;
    font-size: 3.6vw;
  }

  .sec-company__tag {
    gap: 4px 4px;
    margin-top: 15px;
  }
  .sec-company__tag li {
    padding: 5px 12px;
    font-size: 3.1vw;
  }
}


/*--------------------------------------------------
　sec-access
--------------------------------------------------*/
.sec-access {
  padding: 74px 20px 0;
}

.sec-access__block {
  display: flex;
  justify-content: space-between;
  background: #FCFCFB;
  margin-top: 36px;
}

.sec-access__left {
  display: flex;
  align-content: center;
  width: 410px;
}

.sec-access__map {
  position: relative;
	width: 100%;
	height: 100%;
	margin: auto;
	padding-top: 56.25%;
}
.sec-access__map iframe {
  display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.sec-access__right {
  display: flex;
  align-content: center;
  flex: 1;
  height: 100%;
  padding: 42px 58px;
}

.sec-access__ttl {
  font-size: 32px;
}

.sec-access .txt {
  margin-top: 12px;
}

@media screen and (max-width: 1140px) {
  .sec-access {
    padding: 6.4vw 1.7vw 0;
  }

  .sec-access__block {
    margin-top: 3.1vw;
  }

  .sec-access__left {
    width: 35vw;
  }

  .sec-access__right {
    padding: 3.6vw 5vw;
  }

  .sec-access__ttl {
    font-size: 2.8vw;
  }

  .sec-access .txt {
    margin-top: 1vw;
  }  
}

@media screen and (max-width: 768px) {
  .sec-access {
    padding: 42px 20px 0;
  }

  .sec-access__block {
    display: block;
    margin-top: 24px;
  }

  .sec-access__left {
    display: block;
    width: 100%;
  }

  .sec-access__map {
    width: 100%;
    height: 0;
    padding-top: 56.25%;
  }

  .sec-access__right {
    display: block;
    width: 100%;
    height: auto;
    padding: 25px 18px;
  }

  .sec-access__ttl {
    font-size: 7.2vw;
  }

  .sec-access .txt {
    margin-top: 15px;
  }
}


/*--------------------------------------------------
　sec-entry
--------------------------------------------------*/
.sec-entry {
  padding: 74px 20px 74px;
}

.sec-entry__block {
  display: flex;
  justify-content: space-between;
  gap: 0 62px;
  background: #FFF96D;
  margin-top: 36px;
  padding: 22px 30px;
  border-radius: 2px;
}

.sec-entry__item {
  width: calc(100% / 2);
}

.sec-entry__txt {
  font-size: 18px;
  font-weight: 500;
}
.sec-entry__link {
  margin-top: 17px;
}

@media screen and (max-width: 1140px) {
  .sec-entry {
    padding: 6.4vw 1.7vw 6.4vw;
  }

  .sec-entry__block {
    gap: 0 5.4vw;
    margin-top: 3.1vw;
    padding: 1.9vw 2.6vw;
  }

  .sec-entry__txt {
    font-size: 1.5vw;
  }
  .sec-entry__link {
    margin-top: 1.4vw;
  }
}

@media screen and (max-width: 768px) {
  .sec-entry {
    padding: 60px 20px 60px;
  }

  .sec-entry__block {
    display: block;
    width: calc(100% + 40px);
    margin: 24px 20px 0 -20px;
    padding: 20px 38px;
  }

  .sec-entry__item {
    width: 100%;
    margin-bottom: 15px;
  }
  .sec-entry__item:last-child {
    margin-bottom: 0;
  }

  .sec-entry__txt {
    font-size: 3.6vw;
  }
  .sec-entry__link {
    margin-top: 8px;
  }
}
