@charset "UTF-8";
/*!
 * ress.css • v3.0.1
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
   
   
html {
  box-sizing: border-box;
  word-break: normal;
  tab-size: 4;
  -webkit-text-size-adjust: 100%;
  /* Prevent adjustments of font size after orientation changes in iOS */
}

*,
::before,
::after {
  box-sizing: inherit;
  background-repeat: no-repeat;
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
}

::before,
::after {
  vertical-align: inherit;
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
}

* {
  margin: 0;
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
}

/* # =================================================================
     # General elements
     # ================================================================= */
hr {
  overflow: visible;
  /* Show the overflow in Edge and IE */
  height: 0;
  /* Add the correct box sizing in Firefox */
}

details,
main {
  display: block;
  /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  text-decoration: underline dotted;
  border-bottom: none;
  /* Remove the bottom border in Chrome 57 */
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

pre {
  font-size: 1em;
  /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder;
  /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}



/* # =================================================================
     # Specify media element style
     # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

/* # =================================================================
     # Accessibility
     # ================================================================= */
/* Hide content from screens but not screenreaders */
@media screen {
  [hidden~="screen"] {
    display: inherit;
  }
  [hidden~="screen"]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}

/* Specify the progress cursor of updating elements */
[aria-busy="true"] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}

html {
  font-size: 100%;
}

body {
  font-family: "Montserrat",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
  line-height: 1.8;
  color: #333;
  font-size: 15px;
  font-size: 0.9375rem;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

a {
  transition: .3s;
  text-decoration: none;
  color: #391e88;
}

a:hover {
  text-decoration: underline;
}

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

::selection {
  color: #fff;
  background-color: #391e88;
}
 
/*  /ress.css   */



/*--------------------------------------------------------------------*/


/*----------------------------------
Gメニュー
----------------------------------*/
header {
	height: 60px;
	width: 100%;
	padding: 0px 15px;
	background-color: #0b6e9e;
	position: fixed;
	top: 0;
	z-index: 10;
	display: flex;
}

.logo {
  font-size: 25px;
  line-height: 50px;
}
header h1 a {
	font-size: 25px;
	color: #FFF;
	border:none;
}

nav {
  margin: 0 0 0 auto;
}

nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  line-height: 60px;
  padding: 0 20px;
}

.sm {
  display: none;
}


/*----------------------------------
ハンバーガーメニュー
----------------------------------*/

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

  #hamburger {
    background-color: transparent;
    position: relative;
    cursor: pointer;
    margin: 0 0 0 auto;
    height: 60px;
    width: 60px;
  }
  .icon span {
    position: absolute;
    left: 15px;
    width: 30px;
    height: 4px;
    background-color: white;
    border-radius: 8px;
    transition: ease 0.75s;
  }

  .icon span:nth-of-type(1) {
    top: 16px;
  }
  .icon span:nth-of-type(2) {
    top: 28px;
  }
  .icon span:nth-of-type(3) {
    bottom: 16px;
  }

  .close span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 28px;
  }

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

  .close span:nth-of-type(3) {
      transform: rotate(-45deg);
      top: 28px;
  }

  .sm {
	top: 60px;
	left: 0px;
	position: absolute;
	z-index: 10;
	width: 100%;
	background-color: rgba(37,78,72,0.8);
  }

ul {
    flex-direction: column;
  }

a {
    text-align: center; 
    border-top: solid 0.5px rgba(255, 255, 255, 0.6);
  }
}





/*----------------------------------
footer
----------------------------------*/

.footer {
  padding: 60px 30px 20px;
  background-color: #120e19;
}

.footer-nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}

@media screen and (max-width: 768px) {
  .footer-nav__list {
    justify-content: flex-start;
    margin-bottom: -10px;
  }
}
.footer-nav_link {
  line-height: 1;
  padding: 5px;
  color: #fff;
}

.footer-nav_link:hover {
  text-decoration: none;
  opacity: .8;
}

.copyright {
  margin-top: 30px;
  text-align: center;
  font-size: 10px;
  font-size: 0.625rem;
}

.copyright_link {
  text-decoration: none;
  color: #a798b7;
}

.copyright_link:hover {
  text-decoration: none;
  opacity: .8;
}




/*----------------------------------
main-visual
----------------------------------*/

.main-visual img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/*  hero  */

@media (max-width: 768px) {
.main-visual {
	padding-top:60px;
	background-color:#036;
}
}



/*----------------------------------
●トピックス
----------------------------------*/

.topics .l-inner {
  /*display: flex;*/
}
.topics .l-inner-2 {

}

@media screen and (max-width: 768px) {
  .topics .l-inner {
    display: block;
  }
}



/*  topicslist  */

.topicslist{
    width:100%;
}
.topicslist dl{
}
.topicslist dt{
	font-weight: bold;
    width:10rem;
    float:left;
    min-height:12px;
    height:auto!important;
    height:12px;
    padding:0 0 0 20px;
    background:transparent url('img/list-icon.png') no-repeat 0em 0.3em scroll;
}
.topicslist dd{
    padding:0 0 0 10rem;
    margin:0 0 12px 0;
    border-bottom:dashed 1px #ccc;
}
.topicslist dd a:link    {color:#ff6600;}
.topicslist dd a:visited {color:#ff6600;}
.topicslist dd a:hover   {text-decoration:none; color:#ff9966;}




@media screen and (max-width: 768px) {
  .topicslist dt {
    width:8rem;
    float:none;
    background:none;
    padding:0px 0px 0px 0px;
	background-color: #333;
	color:#fff;
  }
.topicslist dd{
    padding:0 0 0 0rem;
    margin:0 0 6px 0;
}

}





/*----------------------------------
見出し　余白　幅  
----------------------------------*/

/*        見出し        */
h2.midashi {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #222;
    font-size: 30px;
    text-align: center;
    margin-bottom: 50px;
}
p.theme {
	font-weight: bold;
	color:orange;
}



/*       テキスト装飾        */
.u-center {
  text-align: center !important;
}

.u-text-bold {
  font-weight: bold !important;
}

.u-text-big {
  font-size: 1.5em;
}

.u-sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-sp-only {
    display: block;
  }
h2.midashi  {
    font-size: 28px;
  }
}




/*       l-inner　巾   　　     */
.l-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 15px;
}
.l-inner-jyusyou {
  max-width: 950px;
  margin: 20px auto;
  padding: 20 20px;
}
.l-inner-jyusyou .haiku {
	display: flex;
}
.l-inner-jyusyou .haiku .left {
	width: 70%;
}
.l-inner-jyusyou .haiku .right {
	width: 30%;
	text-align: center;
}
.l-inner-jyusyou .haiku .right img {
	width: 100%;
}


.l-inner-kadai {
  max-width: 1140px;
  margin: 20px auto;
  padding: 20 20px;
}

.l-inner-xs {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 15px;
}

.l-inner-sm {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 15px;
}

.l-inner-xl {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}

/*       l-section　マージン・余白        */
.l-section {
  padding: 70px 0;
}
.l-section-2 {
  padding: 100px 0 50px;
}
.syashinhaiku {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}
.syashinhaiku h3 {
	text-align: center;
}

@media screen and (max-width: 768px) {
  .l-section {
    padding: 20px 0;
  }
.l-inner-jyusyou .haiku {
	flex-direction: column
}
.l-inner-jyusyou .haiku .left {
	width: 100%;
}
.l-inner-jyusyou .haiku .right {
	margin-top: 2rem;
}

}


@keyframes scrollDownLine {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}



/*----------------------------------
box
----------------------------------*/
.box {
  display: flex;
}
@media screen and (max-width: 768px) {
  .box {
    display: block;
  }
}

.box_left {
  flex: 0 0 35%;
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  .box_left {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.box_right {
	  flex: 1;
}
.box_right h2{
	color:red;
}
.box_right ul {
	margin:1rem 1rem 1rem 2rem;
}

.box_padding-1 {
  padding: 100px 0 50px;
}

.box_img {
  width: 100%;
  height: auto;
}
.box_heading h2 {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: .05em;
    text-transform: uppercase;
    color:#841a75;
    font-size: 36px;
    font-size: 2.25rem;
	text-align: center;
	margin-bottom: 50px;
}
.box_heading h3 {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: .05em;
    text-transform: uppercase;
    color:#222;
    font-size: 28px;
	text-align: center;
	margin-bottom: 30px;
}
.box_img-wrapper {
  flex: 0 0 40.09009%;
  margin-right: 50px;
}

@media screen and (max-width: 768px) {
  .box_img-wrapper {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.box_img {
  width: 100%;
  height: auto;
}
.box_body {
  flex: 1;
}
.box_body  p.download {
	font-weight: bold;
	margin-bottom:10px;
}
.box_title {
  margin-bottom: 20px;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .box_title {
    line-height: 1.2;
    margin-bottom: 15px;
    text-align: center;
    font-size: 18px;
    font-size: 1.125rem;
  }
}


/*----------------------------------
box-hal
----------------------------------*/

.box_half {
	width: 50%;
	margin: 20px 10px;
}
@media screen and (max-width: 768px) {
  .box_half {
	width: 100%;
	/*padding: 10% 2rem;
	margin: 20px 0px 10px 0px;*/
	padding: 0px 0px;
	margin: 20px 0px 10px 0px;

  }
}

.box_half h2{
	color:red;
}
.box_half ul {
	margin:1rem 1rem 1rem 2rem;
}

.box_half_img {
  width: 100%;
  height: auto;
}
.box_half_heading h2 {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: .05em;
    text-transform: uppercase;
    color:#841a75;
    font-size: 36px;
    font-size: 2.25rem;
	text-align: center;
	margin-bottom: 50px;
}
.box_half_heading h3 {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: .05em;
    text-transform: uppercase;
    color:#222;
    font-size: 28px;
	text-align: center;
	margin-bottom: 30px;
}

.box_half_img {
  width: 100%;
  height: auto;
}
.box_half_body {
  flex: 1;
}
.box_half_body  p.download {
	font-weight: bold;
	margin-bottom:10px;
}
.box_half_title {
  margin-bottom: 20px;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .box_half_title {
    line-height: 1.2;
    margin-bottom: 15px;
    text-align: center;
    font-size: 18px;
    font-size: 1.125rem;
  }
}




/*----------------------------------
one-box
----------------------------------*/
.one-box {
	padding: 2rem;
}
.gaiyou {
}


.one-box_img {
  width: 100%;
  height: auto;
}


	
.one-box .download {
 	background-color:#f2f2b0;
	padding: 15px 10px;
	border: dotted 4px #f8b862;
	border-radius: 10px;

}
.one-box .download p {
	font-weight: bold;
	text-align: center;
	font-size:1.3rem;
	margin-bottom: 20px;
}

.one-box .download ul {
	list-style: none;
	display: flex;
	justify-content: center;
}
.one-box .download ul li {
    margin: 10px 20px;
}

@media screen and (max-width: 768px) {
.one-box {
	padding: 0rem;
}
  .one-box_title {
    line-height: 1.2;
    margin-bottom: 15px;
    text-align: center;
    font-size: 18px;
    font-size: 1.125rem;
  }
	
.gaiyou{
	margin: 1rem;
}
	
.one-box .download ul li {
    margin: 10px 10px;
}
.one-box .download {
 	background-color:none;
	padding: 0px 0px;
	border: none;
	border-radius: 0px;

}
	
	
	}	



/*----------------------------------
受賞作品　1カラム
----------------------------------*/

.l-inner-jyusyou h2 {
	text-align: center;
	font-size: 2em;
	border-spacing: 0.5em;
}

.jyusyou{
	width: 100%;
    position: relative;	
	background-color: #eee;
	padding: 2rem 4rem;
	margin: 80px 50px;
    border: solid 3px rgba(132,26,117,0.8);		
}

@media screen and (max-width: 768px) {
  .jyusyou{
	width: 96%;
	padding: 1rem 1rem;
	margin: 50px 10px 10px 10px;
  }
.l-inner-jyusyou h2 {
	font-size: 1.5em;
	border-spacing: 0.5em;
}

}



.jyusyou .title {
    position: absolute;
    display: inline-block;
    top: -35px;
    left: -3px;
    padding: 0 15px;
    height: 35px;
    line-height: 35px;
    font-size: 25px;
	letter-spacing: 0.2em;
    background: rgba(132,26,117,1);
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.jyusyou p {
	font-family: 'Gloria Hallelujah', cursive;
	font-size: 24px;
	line-height: 200%;
}

.jyusyou h3{
	font-size: 1.8rem;
	margin-bottom: 1rem;
	letter-spacing: 2px;
}
.school {
	font-size: 18px;
}


.jyusyou_img {
  width: 100%;
  height: auto;
}


@media screen and (max-width: 768px) {
.jyusyou_title {
    line-height: 1.2;
    margin-bottom: 15px;
    text-align: center;
    font-size: 18px;
    font-size: 1.125rem;
  }
.jyusyou p {
	font-size: 22px;
	line-height: 160%;
	text-indent: 1rem;
}
.jyusyou h3{
	font-size: 1.4rem;
	margin-bottom: 1rem;
	letter-spacing: 1px;
}
	
.jyusyou .title {
    font-size: 20px;
}
}



.wf-roundedmplus1c { 
	font-family: "M PLUS Rounded 1c"; 
}

/*----------------------------------
 応募
----------------------------------*/
.oubo .l-inner {
  display: flex;
}

@media screen and (max-width: 768px) {
.oubo .l-inner {
    flex-direction: column-reverse;
  }
}

.oubo_contents {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  background-color: #f0f0f0;
  margin-left: 10px;
  margin-right: 10px;
  border-radius: 10px;
  padding: 30px 10px;
}

@media screen and (max-width: 768px) {	
.oubo_contents {
  padding: 10px;
  margin-bottom: 10px;
  margin-left: 20px;
  margin-right: 10px;
}
.oubo_contents h2 {
  width:  100%;
}

.oubo_contents-inner {
    padding: 20px;
  }
}
.oubo_heading {
  margin-bottom: 30px;
  text-align: center;
}
.oubo_heading h3 {
  font-size: 16px;
  text-align: left;
}
.oubo_img {
  height: 100%;
  object-fit: cover;
}
.oubo_body {
  margin-bottom: 30px;
	text-align: center;
}
.oubo_body p.renraku {
	text-align: left;
}

/*----------------------------------
 課題
----------------------------------*/
.kadai-1 {
}

.kadai-1 ul {
	display: flex;
 	list-style: none;
	padding: 0;
	margin: 0;
}
.kadai-1 ul li{
    width: 25%;
    background-color: #fff;
    font-size: 1.5rem;
    text-align: center;
	margin: 0px  5px;
	padding: 2rem 0rem;
	border: solid 2px #e17b34;
	font-weight: bold;
	letter-spacing: 5px;
}

.kadai-1 ul li i {
  padding-right: 1em;
  color: #e17b34;
}


.kadai-2 {
}

.kadai-2 ul {
	display: flex;
 	list-style: none;
	padding: 0;
	margin: 0;
}
.kadai-2 ul li{
	width:25%;
	margin: 0px  5px;
}
.kadai-2 ul li img {
}
.kadai-2 ul li p {
	font-size: 1.2rem;
}

.tooltip span.kadai_s {
	font-size: 1rem;
}


@media screen and (max-width: 768px) {	
.kadai-1 ul {
  flex-direction: column;
}
.kadai-1 ul li{
    width: 100%;
    font-size: 1.5rem;
    text-align: left;
	margin: 0px  0px;
	padding: 2rem 5rem;
	border-bottom: solid 1px #e17b34;
	border-top: none;
	border-right: none;
	border-left: none;
	background-color: rgba(255,255,255,0.1);
}
.kadai-1 ul li i {
  padding-right: 0.5em;
  color: #e17b34;
}
	

.kadai-2 ul {
  flex-direction: column;
}
.kadai-2 ul li{
	width:100%;
	margin: 0px 0px 50px 0px;
}
.kadai-2 ul li img {
	width:100%;
}
.kadai-2 ul li p {
	font-size: 1rem;
    text-align: center;
}

}

/*----------------------------------
２アイテム
----------------------------------*/
.items2 {
	background-color: #6f4b3e;
}
.items2 .l-inner {
	display: flex;
}

.items2_contents {
    flex: 1;
    color: #fff;
}

@media screen and (max-width: 768px) {
.items2 .l-inner {
    flex-direction: column-reverse;
  }
.items2_contents {
  padding: 10px;
  margin-bottom: 10px;
}
.items2_contents h2 {
  width:  100%;
}	
	
}


/*----------------------------------
footer 3アイテム
----------------------------------*/

.items3 {
	background-color: #535353;
}
.items3 .l-inner {
	display: flex;
}


.items3_contents {
    width:33%;
    color: #fff;
    font-size: 90%;
}
.items3_contents p {

}


@media screen and (max-width: 768px) {
.items3 .l-inner {
    flex-direction: column-reverse;
  }
.items3_contents {
	    width:100%;
  padding: 10px;
  margin-bottom: 10px;
}
.items3_contents h2 {
  width:  100%;
}
.items3_contents p {
    font-size:0.8em;
}

	
}



/*----------------------------------
動画・動画一覧・カード
----------------------------------*/
.douga {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  margin-bottom: 50px;
  padding-bottom: 56.25%;
}

.douga iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.douga-ichiran {

}
.douga-ichiran h3 {
	font-size: 24px;
	margin-bottom:15px;
	color:#222;
}


.card__body {
  display: flex;
  flex-direction: column;
}

.card__img-wrapper {
  margin-bottom: 15px;
}

.card__img {
  width: 100%;
  height: auto;
}

.card__body {
  color: #333;
}

.card__title {
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
}

@media screen and (max-width: 768px) {
  .card__title {
    margin-bottom: 10px;
  }
}


.card-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -30px;
}

@media screen and (max-width: 768px) {
  .card-wrapper {
    display: block;
    margin-bottom: 0;
  }
}

.card-wrapper .card {
  margin-bottom: 30px;
}

.card-wrapper-col2 {
  justify-content: space-between;
}

.card-wrapper-col2 .card {
  flex: 0 0 48%;
}

@media screen and (max-width: 768px) {
  .card-wrapper-col2 .card {
    margin-bottom: 30px;
  }
}

.card-wrapper-col3 .card {
  flex: 0 1 31.53153%;
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  .card-wrapper-col3 .card {
    margin-right: 0;
    margin-bottom: 40px;
  }
}

.card-wrapper-col3 .card:nth-child(3n) {
  margin-right: 0;
}

.card-wrapper-col3 .card:last-child {
  margin-bottom: 0;
}




/*----------------------------------
●ボタン
----------------------------------*/

.btn {
  position: relative;
  font-weight: bold;
  line-height: 1.4;
  display: inline-block;
  width: 220px;
  padding: 20px 0;
  transition: .3s;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  font-size: 0.875rem;  
  border-radius: 50px;
  background-size: 200% auto;  
  background-image: linear-gradient(to right, #7633a4 0%, #250d65 51%, #7633a4 100%);
 /* background-image: linear-gradient(to right, #276cb7 0%, #26a0da 51%, #55ea91 100%);*/
}

.btn::after {
  position: absolute;
  top: 50%;
  right: 1.5em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  transition: .3s;
  transform: translateY(-50%);
  font-size: 14px;
  font-size: 0.875rem;
}

.btn:hover {
  text-decoration: none;
  background-position: right center;
}

.btn:hover::after {
  right: 1.2em;
}

@media screen and (max-width: 768px) {
	
.btn {
  width: 100%;
  padding: 20px 0;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom:5px;
}
  .btn:hover::after {
    right: 1.5em;
  }
}

.btn--block {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}

.btn--center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.btn--transparent {
  border: 1px solid #fff;
  background: none;
}

.btn--transparent:hover {
  opacity: .8;
}

.btn-grad {
  background-image: linear-gradient(to right, #314755 0%, #26a0da 51%, #314755 100%);
}

.btn-grad {
  display: block;
  margin: 10px;
  padding: 15px 45px;
  transition: .5s;
  text-align: center;
  text-transform: uppercase;
  color: white;
  border-radius: 10px;
  background-size: 200% auto;
  box-shadow: 0 0 20px #eee;
}

.btn-grad:hover {
  text-decoration: none;
  color: #fff;
  background-position: right center;
  /* change the direction of the change here */
}



/*----------------------------------
●ボタン-L
----------------------------------*/

.btn-L {
  position: relative;
  font-weight: bold;
  line-height: 1.4;
  display: inline-block;
  width: 300px;
  padding: 20px 0;
  transition: .3s;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  font-size: 1rem;  
  border-radius: 50px;
  background-size: 200% auto;
  background-image: linear-gradient(to right, #167ac6 0%, #02226a 51%, #167ac6 100%);
  /*   background-image: linear-gradient(to right, #7633a4 0%, #250d65 51%, #7633a4 100%);  */
}

.btn-L::after {
  position: absolute;
  top: 50%;
  right: 1.5em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  transition: .3s;
  transform: translateY(-50%);
  font-size: 1rem;
}

.btn-L:hover {
  text-decoration: none;
  background-position: right center;
}

.btn-L:hover::after {
  right: 1.2em;
}

@media screen and (max-width: 768px) {
	
.btn-L {
  width: 80%;
  padding: 20px 0;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom:5px;
}
  .btn-L:hover::after {
    right: 1.5em;
  }
}

.btn-L--block {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}

.btn-L--center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.btn-L--transparent {
  border: 1px solid #fff;
  background: none;
}

.btn-L--transparent:hover {
  opacity: .8;
}

.btn-L-grad {
  background-image: linear-gradient(to right, #314755 0%, #26a0da 51%, #314755 100%);
}

.btn-L-grad {
  display: block;
  margin: 10px;
  padding: 15px 45px;
  transition: .5s;
  text-align: center;
  text-transform: uppercase;
  color: white;
  border-radius: 10px;
  background-size: 200% auto;
  box-shadow: 0 0 20px #eee;
}

.btn-L-grad:hover {
  text-decoration: none;
  color: #fff;
  background-position: right center;
  /* change the direction of the change here */
}

/*----------------------------------
受賞者
----------------------------------*/

.jyusyouBtn {
	text-align: center;
	margin-bottom: 1em;
}

.jyusyouBtn h2 {
	font-size: 2rem;
}


/*----------------------------------
TABLE
----------------------------------*/

.table01 {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

.table01 tr {
  border-bottom: solid 1px #ddd;
}

.table01 th,
.table01 td {
  padding: 10px 10px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .table01 th,
  .table01 td {
    display: block;
    padding: 0;
  }
}

.table01 th {
  width: 20%;
}

@media screen and (max-width: 768px) {
  .table01 th {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 768px) {
  .table01 td {
    margin-bottom: 20px;
  }
}

.table01 p:not(:last-child) {
  margin-bottom: 10px;
}

.table01 ul {
  margin-left: 20px;
}



/*----------------------------------
 page-top
----------------------------------*/

.pagetop{
    display: none;
    position: fixed;
    right: 15px;
    bottom: 60px;
}
.pagetop a{
    display: block;
    font-size: 0;
    width: 50px;
    height: 50px;
    text-align: center;
	background-color: rgba(132,26,117,1);
    border-radius: 50%;
    line-height: 50px;
}
.pagetop a i{
    font-size: 20px;
    color:#fff;
    line-height: 50px;
}


/*　　飾り　　*/
.section-border-top {
    transform: translateY(1px);
}


/*----------------------------------
 斜め　区切り
----------------------------------*/
.naname1 {
  background-color: #fde79d;
  color: #000;
  padding: 50px 0 100px;
  position: relative;	
}
.naname2 {
  background-color: #59b9c6;
  color: #fff;
  padding: 50px 0;
}
.naname3 {
  background-color: #f0dac3;
  color: #fff;
  padding: 50px 0;
}
.naname4 {
  background-color: #ffdede;
  color: #fff;
  padding: 50px 0;
}
h2 {
  font-size: 16px;
  margin: 0 auto;
  width: 80%;
}

.naname1::before {
  border-color: transparent #59b9c6 transparent transparent;
  border-style: solid;
  border-width: 50px 100vw 0 0;
  bottom: 0;
  content: "";
  height: 0;
  position: absolute;
}

.naname2::before {
  border-color: transparent #f5da83 transparent transparent;

}
.naname3::before {
  border-color: transparent #F58D83 transparent transparent;

}
.naname4::before {
  border-color: transparent  #ffdede transparent transparent;

}



.bg_1 {
		background-image: url(./img/kanoko2.png);
		background-repeat: repeat;
}

.bg_1-2 {
		background-image: url(./img/pattern_wave.png);
		background-repeat: repeat;
}

.bg-2 {
	background-image: url(./img/bg-2.png);
    background-repeat: no-repeat;
    background-size: 30%;
    background-position: left bottom;

}

.bg-3 {
	background-image: url(./img/bg-3.png);
    background-repeat: no-repeat;
    background-size: 30%;
    background-position: right top;

}

.triangle {
	position: relative;
 	background: #fcc800;
	
	background-image: url(./img/bg-1.png);
	background-repeat: no-repeat;
	background-size: 25%;
	background-position: right bottom;
	
  /*height: 50vh;*/
}

.triangle::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 52px 52px 0 52px;
  border-color: #fcc800 transparent transparent transparent;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
}


.wave-top {
  position: relative;
  background: #ffdb4f;
  height: 50vh;
}

.wave {
  position: absolute;
  height: 86px;
  width: 100%;
  background: #ffdb4f;
  bottom: 0;
}

.wave::before, .wave::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 100% 50%;
}

.wave::before {
  width: 55%;
  height: 109%;
  background-color: #e9976d;
  right: -1.5%;
  top: 60%;
}
.wave::after {
  width: 55%;
  height: 100%;
  background-color: #ffdb4f;
  left: -1.5%;
  top: 40%;
}

@media screen and (max-width: 768px) {
	.triangle {
		background-size: 55%;
}
	.bg-2 {
		background-image: none;
}
	span.name-dantai {
		display: block;
		background-color: red;
	}
}

/*----------------------------------
吹き出し ツールチップ 1
----------------------------------*/
 .tooltip { /* 補足説明するテキストのスタイル */
  position: relative;
  cursor: pointer;
  padding: 0 5px;
  font-size: 0.9em;
  color: #4682b4;
}
 
.balloon_top { /* ツールチップのスタイル */
  width: 400px; /* 横幅 */
  position: absolute;
  left: 50%;
  bottom: 80%; /* Y軸の位置 */
  transform: translateX(-50%);
  margin-bottom: 15px; /* テキストとの距離 */
  padding: 8px;
  border-radius: 10px; /* 角の丸み */
  background-color: #666; /* ツールチップの背景色 */
  font-size: 0.5em;
  color: #fff;
  text-align: left;
  visibility: hidden; /* ツールチップを非表示に */
  opacity: 0; /* 不透明度を0％に */
  z-index: 1;
  transition: 0.5s all; /* マウスオーバー時のアニメーション速度 */
}
 
.balloon_top::before { /* 吹き出しの「しっぽ」のスタイル */
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 12px solid #666; /* 最後の値は「ツールチップの背景色」と合わせる */
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translateX(-50%);
}
 
.tooltip:hover .balloon_top { /* マウスオーバー時のスタイル */
  bottom: 100%; /* Y軸の位置 */
  visibility: visible; /* ツールチップを表示 */
  opacity: 1; /* 不透明度を100％に */
}


/*----------------------------------
吹き出し ツールチップ 1
----------------------------------*/
 .tooltip-2 { /* 補足説明するテキストのスタイル */
  position: relative;
  cursor: pointer;
  padding: 0 5px;
  font-size: 0.9em;
  color: #4682b4;
}
 
.balloon_top-2 { /* ツールチップのスタイル */
  width: 300px; /* 横幅 */
  position: absolute;
  left: 50%;
  bottom: 80%; /* Y軸の位置 */
  transform: translateX(-50%);
  margin-bottom: 130px; /* テキストとの距離 */
  padding: 8px;
  border-radius: 10px; /* 角の丸み */
  background-color: #666; /* ツールチップの背景色 */
  font-size: 0.8em;
  color: #fff;
  text-align: left;
  visibility: hidden; /* ツールチップを非表示に */
  opacity: 0; /* 不透明度を0％に */
  z-index: 1;
  transition: 0.5s all; /* マウスオーバー時のアニメーション速度 */
}
 
.balloon_top-2::before { /* 吹き出しの「しっぽ」のスタイル */
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 12px solid #666; /* 最後の値は「ツールチップの背景色」と合わせる */
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translateX(-50%);
}
 
.tooltip-2:hover .balloon_top-2 { /* マウスオーバー時のスタイル */
  bottom: 100%; /* Y軸の位置 */
  visibility: visible; /* ツールチップを表示 */
  opacity: 1; /* 不透明度を100％に */
}
