header,main,footer {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

header img,main img,footer img {
    max-width: 100%;
}

main article {
    padding:50px 3vw 0;
}



html {
  box-sizing: border-box;
  margin-top: 0 !important;
}

*, *::after, *::before {
  box-sizing: inherit;
}

*, *:before, *:after {
  box-sizing: border-box;
  outline: none;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-smooth: auto;
  font-weight: 300;
  line-height: 1.75;
  color: #444;
  overflow-x: hidden;
}

header {
    border-bottom: 1px solid #575757;
	position: fixed;
	top: 0;
	left:0;
	right: 0;
	margin: 0 auto;
	height: 50px;
	background-color: rgba(255,255,255,0.5);
	z-index: 3;
}

header h1 {
    padding: 1rem 0 1rem 1rem;
    line-height: 1;
    margin: 0;
	width: 64%;
   }

header h1 a {
    color: inherit;
    text-decoration: none;
}

header h1 a img {
	display: block;
}

h2 {
    font-size: 30px;
}

article[id*="post"] h2 {
    font-size: 24px;

        }


h3 {

}

h3:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #d96925;
  bottom: -3px;
  width: 20%;
}

.entry-content h3:nth-of-type(1) {
    margin-top: 0;
}

h3.spe {
    font-size: 30px;
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 0 none;
}

h3.spe:after {
    position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: '';
  border-radius: 3px;
  background: #b2d1fb;
  border-bottom: 0 none;

}


h4 {
    font-size: 22px;
}

/* パンくずリスト */
ul.breadcrumb{
    list-style: none;
	margin: 1rem 0;
	padding: 0;
  }

ul.breadcrumb li{
    display: inline;
	font-size: 80%;
  }
ul.breadcrumb li a{
    color: inherit;
    text-decoration: underline;
  }
ul.breadcrumb li + li:before{
    content: ">";
    margin:.5em;
  }


.headerNavi {
    position: relative;
	display: none;
}



.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 60px;
  height: 60px;
  background-color: #FFF;
  border-radius: 0;
  transition: transform 250ms ease;
  cursor: pointer;
  z-index: 200;
}
.menu span {
  position: relative;
  display: block;
  width: 50%;
  height: 2px;
  background-color: #151515;
  float: left;
  transform-origin: center center;
  transition: transform 250ms ease;
  z-index: 200;
}
.menu span:nth-of-type(1) {
  transform: translateY(-5px);
}
.menu span:nth-of-type(3) {
  transform: translateY(5px);
}

#menu {
  display: none;
}
#menu:checked ~ .menu {
  background-color: transparent;
  transform: rotate(360deg);
  transition: transform 250ms ease;
}
#menu:checked ~ .menu span {
  background-color: white;
  transition: transform 250ms ease;
}
#menu:checked ~ .menu span:nth-of-type(1) {
  transform: translateY(1px) rotate(45deg);
}
#menu:checked ~ .menu span:nth-of-type(2) {
  display: none;
}
#menu:checked ~ .menu span:nth-of-type(3) {
  transform: translateY(-1px) rotate(-45deg);
}
#menu:checked ~ .nav {
  right: 0px;
  transition: right 500ms ease;
}
#menu:checked ~ main {
  transform: translateX(250px);
  transition: transform 500ms ease;
}

.nav {
  position: fixed;
  top: 0;
  right: -80vw;
  width: 80vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #444;
  transition: left 500ms ease;
  z-index: 1;
}
.nav ul {
  position: relative;
  list-style-type: none;
  margin: 100px 0;
  padding: 0;
}
.nav ul li {
  position: relative;
  display: block;
  border-bottom: 5px solid white;
}
.nav ul li a {
  position: relative;
  display: block;
  margin: 0;
  padding: 15px 20px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
}
.nav ul li a:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: width 250ms ease;
  z-index: -1;
}

.nav ul li a:hover:before {
  width: 100%;
  height: 100%;
  background-color: white;
  transition: width 250ms ease;
}

footer {
    padding: 4vw;
}

footer h2 {
	text-align: center;
	margin: 0.2em 0;	
}

footer h3 {
	padding: 0.2em;
	line-height: 1;
	background-color: #000;
	color: #fff;
	font-weight: bold;
	text-align: center;
	margin: 0.2em 0 0 0;
}


footer a {
    /*color: #fff !important;*/
	color:#000;
    }
	
footer dl.snsBox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

footer dl.snsBox > div {
	width: 49%;
}

footer dl.snsBox > div.long {
	width: 100%;
}

footer dl.snsBox dt,footer dl.snsBox dd {
	margin: 0;
	padding: 0;
	width: 100%;
	text-align: center;
}

footer dl.snsBox dt {
	margin-top: 1rem;
	border-top: solid 1px #999;
	padding-top: 1rem;
}

footer dl.snsBox div:nth-of-type(1) dt,footer dl.snsBox div:nth-of-type(2) dt {
	border-top: 0 none;
}

footer dl.snsBox div.long:nth-of-type(2) dt {
	border-top: solid 1px #999;
}


footer dl.snsBox dd {
}

footer dl.snsBox dt.contactMail img,
footer dl.snsBox dt.snsX img,
footer dl.snsBox dt.snsInsta img,
footer dl.snsBox dt.snsYoutube img,
footer dl.snsBox dt.snsHatena img,
footer dl.snsBox dt.snsSuzuri img {
	height: 4rem
	}
footer dl.snsBox dt.snsXforio {
	padding-top: 0;
}

footer dl.snsBox dt.snsXforio img {
	height: 6rem;
	}
footer dl.snsBox dt.contactMail img {
	height: auto;
	width: 100%;
}


footer .copyright {
    text-align: center;
    font-size: 0.76rem;
	border-top: solid 1px #999;
	padding-top: 1rem;

}

div.kv {
}

div.kv img {
}

div.noticeInfo {
	font-weight: bold;
}

div.topInfo {
    width: 100%;
    max-width: 900px;
    background-color: #E2F1F9;
    border-radius: 10px;
    padding: 0.4rem;
    margin: 2rem auto;
}

div.topInfo h2 {
    margin: 0 auto 1rem;
    text-align: center;
}

div.topInfo p {
    text-align: center;
}

div.topInfo a {
    color: inherit;
    text-decoration: none;
}

div.topInfo dl {
    width: 100%;
}

div.topInfo dl div {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.6em;
    padding: 0 0 0.2em 1em;
    border-bottom: 1px dashed #93CBE8;
    position: relative;
}

div.topInfo dl div::before {
    content: "";
    display: block;
    position: absolute;
    top: 0.2em;
    bottom: 0;
    left: -0.4em;
    margin: auto;
  width: 0.6em;
  height: 0.6em;
  border: 2px solid;
  border-color: #93CBE8 #93CBE8 transparent transparent ;
  transform: rotate(45deg);
    
}

div.topInfo dl div dt {
    width: 100%;
}

div.topInfo dl div dd {
    width: 100%;   
    padding: 0;
    margin: 0;
}

/*fix pc footer*/
.pagetop {
    display: none;
    position: fixed;
    bottom: 1rem;
    right: 4rem;
}
.pagetop a {
    display: block;
    background-color: #ccc;
    text-align: center;
    color: #222;
    font-size: 12px;
    text-decoration: none;
    padding: 5px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.8;
    width: 4rem;
    height: 4rem;
    border-radius: 50px;
}

.pagetop a::before {
    content: "";
    display: block;
    position: absolute;
    top: 1rem;
    bottom: 0;
    left:0;
    right: 0;
    margin: auto;
  width: 2rem;
  height: 2rem;
  border: 2px solid;
  border-color: transparent transparent #fff #fff ;
  transform: rotate(135deg);

}

.pagetop a:hover {
    display: block;
    background-color: #b2d1fb;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    padding:5px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}

/*top*/

.topOpeBox {
    width: 100%;
    max-width: 39em;
    margin: 0 auto 4rem;
}

p.topOpe {
    font-weight: bold;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    font-size: 20px;
    padding: 0.5em 0em 0.5em 4em ;
    text-align: left;
    position: relative;
    line-height: 1.4;
    margin: 0 auto 1.6rem;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 4rem;
}

p.topOpe:nth-of-type(1) {background-image: url("assets/images/ico_ope04.png");}
p.topOpe:nth-of-type(2) {background-image: url("assets/images/ico_ope02.png");}
p.topOpe:nth-of-type(3) {background-image: url("assets/images/ico_ope03.png");}
p.topOpe:nth-of-type(4) {background-image: url("assets/images/ico_ope01.png");}
p.topOpe:nth-of-type(5) {background-image: url("assets/images/ico_ope05.png");}



/*
p.topOpe::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -0.4em;
    margin: auto;
  width: 1em;
  height: 1em;
  border: 5px solid;
  border-color: #E1F6DC #E1F6DC transparent transparent ;
  transform: rotate(45deg);
}*/

.aboutTglin {
    background-color: #EBF9E7;
    font-weight: bold;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    font-size: 30px;
    padding: 0.6em;
    text-align: center;
}

.aboutTxt {
    font-size: 20px;
    width: 100%;
    max-width: 50em;
    margin: 0 auto 2rem;
}

.aboutTxt:last-of-type {
    margin: 0 auto 4rem;
}

div.outline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 4rem;
    width: 100%;
    max-width: 1000px;
}

div.outline > div {
    width: 100%;
}


div.outline h2 {
      font-size: 22px;
      text-align: left;
}

div.outline > div > iframe {
    width: 100%;
    height: 80vw;
}

dl.outline {
    
}


dl.outline dt {
    
}

.pcOnly {
    display: none;
}

/*固定ページヘッダ*/
/*main#post-19 h2 {*/


dl.dl01 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto 1rem;
}


dl.dl01 dt,dl.dl01 dd {
    margin: 0 0 0 0;
    padding: 0;
}

dl.dl01 dt {
    padding: 0 0 0.2em 0;
    margin-bottom: 0.2em;
    line-height: 1;
    border-bottom: solid 2px #b2d1fb;
    font-weight: bold;
}

dl.dl01 dd {
    width: 100%;
    margin: 0 0 0.6rem;
}

dl.dl01 dd a {
    color: inherit;
    text-decoration: none;
}

.inqForm {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    background-color: #E2F1F9;
    padding: 1rem 1rem;
}

.inqForm label {
    display: block;
    width: 100%;
    font-weight: bold;
}

.inqForm label span.hissu {
    font-weight: normal;
    color: #510000;
    background-color: #FFCCCC;
    display: inline-block;
    padding: 0.2rem 0.4rem;
    line-height: 1;
}

.inqForm label input,.inqForm label textarea {
    width: 100%;
    padding: 0.6rem;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ABD6ED;
    margin-top: 0.4rem;
}

.inqForm input[type="submit"] {
    text-align: center;
  display: block;
  padding: 7px 25px;
  border-radius: 7px;
  border: none;
  background-color: #48A5D7;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  appearance: none;
  margin: 0 auto;
}



@media screen and (min-width: 1024px) {
br.pcOnly {display: inline}
p {
    font-size: 18px;
}

main article {
    padding:50px 0 0;
}
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        
    }

    footer {
        padding: 1rem 2rem;
    }

    footer .copyright {
        font-size: 90%;
    }
    
    footer .footerNav ul {
        justify-content: center;
    }

    footer .footerNav ul li {
        width: auto;
        padding: 0.2rem 1rem;
        border-left: 1px solid #fff;
    }

    footer .footerNav ul li:nth-of-type(1) {
        border-left: 0 none;
    }

    dl.topOperation > div {
      width: 24%;
    }



div.topInfo {
    padding: 2rem;
    margin: 2rem auto;
}


div.topInfo dl div {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.4em;
}

div.topInfo dl div dt {
    width: 8em;
}

div.topInfo dl div dd {
    width: calc(100% - 10em);
    padding: 0;
    margin: 0;
}


div.outline {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 4rem;
}

div.outline > div {
    width: 48%;
}

div.outline > div > iframe {
    height: 100%;
}

p.topOpe {
    font-size: 27px;
    padding: 0.5em 0em 0.5em 4em ;
    line-height: 1.4;
    
}







dl.dl01 dt,dl.dl01 dd {
    border-bottom: solid 2px #b2d1fb;
    margin-bottom: 0.8em;
    line-height: 1;
    padding: 0 0 0.2em 0;
    }

dl.dl01 dt {
    width: 8em;
    }
dl.dl01.category dt {
    width: 10em;
    }

dl.dl01 dd {
    width: calc(100% - 10em);
}

.inqForm {
    padding: 1rem 3rem;
}

.inqForm label span.hissu {
}

.inqForm label input,.inqForm label textarea {

}


}/**/


/*
.container {
  width: 75%;
  margin: 0 auto;
}

main {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transform: translateX(0px);
  transition: transform 500ms ease;
  z-index: 0;
}
main header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 300px;
  background-color: whitesmoke;
}
main header h1 {
  color: #ccc;
  z-index: 3;
}
main section {
  position: relative;
  display: block;
  margin: 0;
  padding: 50px 0;
  background-color: white;
  z-index: 100;
}
main section p {
  margin-bottom: 30px;
}
main .img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 300px;
  background-color: #444;
}
main .img h1 {
  color: rgba(255, 255, 255, 0.2);
}
main footer {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 20px 20px 20px;
  background-color: #444;
}
main footer::after {
  clear: both;
  content: "";
  display: block;
}
main footer .logo {
  font-size: 28px;
  color: whitesmoke;
  line-height: 0;
  margin-bottom: 8px;
  margin-right: 4px;
}
@media screen and (min-width: 1024px) {
  main footer .logo {
    float: left;
    margin-bottom: 0;
  }
}
main footer ul {

  line-height: 1.5;
  margin: 0 0 16px 0;
  padding: 0;
}
main footer ul::after {
  clear: both;
  content: "";
  display: block;
}
@media screen and (min-width: 1024px) {
  main footer ul {
    float: left;
    line-height: 1.8;
    margin-bottom: 0;
    margin-left: 16px;
  }
  main footer ul::after {
    clear: both;
    content: "";
    display: block;
  }
}
main footer ul li {
  list-style: none;
  padding-right: 16px;
}
@media screen and (min-width: 1024px) {
  main footer ul li {
    display: inline;
    text-align: left;
  }
}
main footer ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}
main footer ul li a:focus, main footer ul li a:hover {
  color: white;
}
@media screen and (min-width: 1024px) {
  main footer .secondary-links {
    float: right;
  }
}
main footer .secondary-links li a {
  font-size: 12px;
  font-weight: 100 !important;
}
main footer .secondary-links .social {
  margin: 1em 0 0 0;
}
@media screen and (min-width: 1024px) {
  main footer .secondary-links .social {
    float: right;
    margin-top: 0;
  }
}
main footer .secondary-links .social li {
  float: left;
  font-size: 1em;
  line-height: 0;
  margin: 0;
  padding-right: 0.7em;
}
main footer .secondary-links .social li:last-child {
  padding-right: 0;
}
main footer .secondary-links .social li > a {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #444;
  text-align: center;
  line-height: 30px;
}
main footer .secondary-links .social li > a:hover {
  background-color: white;
}
*/




a {
	text-decoration-thickness: 1px !important;
	text-underline-offset: .1em;
}

/* Focus styles */
:where(.wp-site-blocks *:focus) {
	outline-width: 2px;
	outline-style: solid;
}

/* Increase the bottom margin on submenus, so that the outline is visible. */
.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
	margin-bottom: 3px;
}

/* Increase the outline offset on the parent menu items, so that the outline does not touch the text. */
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
	outline-offset: 4px;
}

/* Remove outline offset from the submenus, otherwise the outline is visible outside the submenu container. */
.wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	outline-offset: 0;
}

/*
 * Progressive enhancement to reduce widows and orphans
 * https://github.com/WordPress/gutenberg/issues/55190
 */
h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
	text-wrap: pretty;
}

/*
 * Change the position of the more block on the front, by making it a block level element.
 * https://github.com/WordPress/gutenberg/issues/65934
*/
.more-link {
	display: block;
}
