@charset "UTF-8";
/*  
Theme Name: theme_kikutoko
Author: cruller
Description: Customized by cruller.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

@import url(base.css);


/************/

/*** basement ***/
html {
  background-color: #F9F9F9;
}

body {
  font: 12px/24px "Lucida Grande", "segoe UI", "ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic ProN", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", Meiryo, Arial, sans-serif;
  color: #333333;
  letter-spacing: 0.1em;
}

a {
  color: #34B0D4;
  text-decoration: none;
}

a:hover, a:active, a:focus {
  color: #6FC7E0;
}

a:hover {
  transition-duration: 0.2s;
}

.inner {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 480px) {
.inner {
  padding: 0 4vw;
}
}


/*** header ***/
header {
  position: fixed;
	top: 0;
	left: 0;
  width: 100%;
  padding: 30px 0 10px;
  background: linear-gradient(to bottom, #FFFFFF calc(100% - 6px), #BCD3DB calc(100% - 6px), #BCD3DB calc(100% - 3px), #FFFFFF calc(100% - 3px));
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 100;
}

@media screen and (max-width: 768px) {
header {
  min-height: 65px;
  padding: 5vw 0;
}
}

header .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

header p.logoHeader {
  margin: 0 0 30px;
}

@media screen and (max-width: 768px) {
header p.logoHeader {
  margin: 0
}

header p.logoHeader img {
  width: 50vw;
  max-width: 300px;
  height: auto;
}
}

header h1 {
  margin: 0 0 0.6em;
  font-size: 0.6rem;
  text-align: right;
}

@media screen and (max-width: 768px) {
header h1 {
  display: none;
}
}

/* scrolled (is-animation) */
@media screen and (min-width: 769px) {
body.is-animation header {
  padding: 20px 0 10px;
	transition-duration: 0.3s;
}

body.is-animation header p.logoHeader {
  margin: 0 0 20px;
	transition-duration: 0.3s;
}
}

/*** navigation ***/
/* navi button (mobile) */
@media screen and (max-width: 768px) {
#menubtn {
  position: fixed;
  top: 15px;
  right: 15px;
	display: block;
	padding: 8px 8px 6px;
  background-color: #5BC4FD;
  border: 1px solid;
  border-color: #FFFFFF;
	border-radius: 4px;
	cursor: pointer;
	z-index: 30;
}
#menubtn:hover {
  background-color: #7FD1FD;
}
#menubtn:focus {
	outline: none;
}
#menubtn i {
	color: #232323;
	font-size: 18px;
}
#menubtn span {
	display: inline-block;
	text-indent: -9999px;
  background-color: #FFFFFF;
}
#menubtn:hover span {
}
}

@media screen and (min-width: 769px) {
#menubtn {
	display: none;
}
}

/* navi (mobile) */
@media screen and (max-width: 768px) {
#header-menu {
	display: none;
}
#header-menu {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 80px 0 0;
  background-color: #B2EAFF;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	z-index: -1;
}
#header-menu li:not(:first-of-type) {
	padding: 4px 0;
	letter-spacing: 0.1em;
}
#header-menu li a {
	display: block;
	padding: 12px 8px 12px 8px;
  color: #0E536D;
	font-size: 0.8rem;
	text-decoration: none;
}
#header-menu li a:before {
	content: "\f0da";
	font-family: FontAwesome;
	margin: 0 0.6em 0 5px;
	color: #F6B7AA;
	font-size: 120%;
}
#header-menu li.naviHome a:before {
	content: "\f015";
	margin: 0 0.4em 0 0;
}
#header-menu li a:hover {
  color: #47ACD1;
}
}

@media screen and (min-width: 769px) {
#header-menu {
	display: none!important;
}
}

/* navi (global) */
@media screen and (max-width: 768px) {
#header-menu {
	display: none;
}
}

@media screen and (min-width: 769px) {
#header-menu {
	display: block!important;
}
#header-menu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0 20px;
}
#header-menu li {
	margin: 0 1em 10px;
}
#header-menu li a {
	padding: 0 0 3px 0.1em;
  color: #0E536D;
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	text-decoration: none;
  border-bottom: 2px solid;
  border-color: transparent;
}
#header-menu li a:hover {
  color: #47ACD1;
  border-color: #5BC4FD;
}
}


/*** footer ***/
footer {
  padding: 30px 20px 15px;
  background-color: #FAE06A;
}

footer article {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  margin: 0 0 30px;
}

@media screen and (max-width: 768px) {
footer article {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
} 
}

footer article h2 {
}

footer article p.address {
  font-size: 0.9rem;
  line-height: 1.5;
}

footer article p.address span {
  font-size: 120%;
  font-weight: bold;
}

footer article p.address a {  /* for mobile */
  color: #333333;
  text-decoration: none;
}

footer p.copyright {
  color: rgba(0,0,0,0.4);
  font-size: 0.7rem;
  line-height: 1.3;
  text-indent: 0.1em;
  text-align: center;
}


/*** scrolltop ***/
p.pagetop {
  display: none;
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 40px;
}

@media screen and (max-width: 768px) {
p.pagetop {
  bottom: 80px;
} 
}

p.pagetop a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
	padding: 0.6em 0.8em;
  color: #FFFFFF;
  font-size: 0.8rem;
  text-align: center;
  background-color: #5BC4FD;
  border-width: 1px 0 1px 1px;
  border-style: solid;
  border-color: #FFFFFF;
  border-radius: 10px 0 0 10px;
}

p.pagetop a:hover {
  background-color: #7FD1FD;
}

p.pagetop a i {
  margin: 0 0.3em 0 0;
  padding: 2px 0 0;
  font-size: 1.25rem;
  border-top: 3px solid;
}

p.pagetop a:hover i {
}



/*** wrapper ***/
#wrapper {
  position: relative;
  min-height: 100vh;
  padding: 180px 0 60px;
}

body.home #wrapper {
  padding: 80px 0 60px;
}

@media screen and (max-width: 768px) {
#wrapper {
  padding: 25vw 0 60px;
}

body.home #wrapper {
  padding: 15vw 0 60px;
}
}

/*** common ***/
p.btn {
  display: flex;
  flex-direction: column;
  align-items: center;
}

p.btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 1em;
  color: #FFFFFF;
  font-size: 1rem;
  background-color: #5BC4FD;
  border: 3px solid;
  border-color: #5BC4FD;
  border-radius: 8px;
}

p.btn a:hover {
  background-color: #7FD1FD;
}

p.btn a i {
  margin: 0 0 0 0.3em;
  font-size: 125%;
}


/*** content (each cont page) ***/
h2.pagetitle {
  margin: 0 0 1.5em;
  color: #0E536D;
  font-size: 1.75rem;
  line-height: 1.5;
	font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 768px) {
h2.pagetitle {
  font-size: 1.5rem;
} 
}

h2.pagetitle::before, h2.pagetitle::after {
  content: "●";
  color: #FAE06A;
  font-size: 120%;
  margin: 0 0.4em;
}

body:not(.home) #wrapper section {
	margin: 0 0 80px;
	padding: 0 15px;
}

body:not(.home) #wrapper section h3 {
	margin: 0 0 1.8em;
	padding: 0.6em 0.8em;
  color: #FFFFFF;
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1.3;
	background-color: #0E536D;
  box-shadow: 6px 6px 0 rgba(0,0,0,0.2);
}

body:not(.home) #wrapper section h4 {
	margin: 0 0 1em;
	padding: 0 2px 0.5em;
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1.3;
	border-bottom: 2px solid;
  border-color: #BCD3DB;
}

body:not(.home) #wrapper section h5 {
	margin: 0 0 0.8em;
	padding: 1px 0 1px 8px;
	font-size: 1.1rem;
	line-height: 1.3;
	border-left: 5px solid;
  border-color: #BCD3DB;
}

body:not(.home) #wrapper section p:not(.btn), body:not(.home) #wrapper section li, body:not(.home) #wrapper section dt, body:not(.home) #wrapper section dd {
	margin: 0 0 1.5em;
	font-size: 1rem;
	line-height: 1.8;
  text-align: justify;
}



/*** content (Home) ***/
/* mainvisual */
section.mv {
  margin: 0 0 60px;
}

section.mv picture source, section.mv picture img {
	width: 100%;
  height: auto;
}

/* message */
section.messageHome {
  margin: 0 0 60px;
  padding: 3em 3em;
  background-color: #FAE06A;
  border: 3px solid;
	border-color: #0E536D;
  border-radius: 20px;
}

section.messageHome p {
	color: #0E536D;
	font-size: 1rem;
	line-height: 1.8;
  text-align: justify;
}

/* news (pickup) */
section.newsPickup {
  margin: 0 0 60px;
  padding: 40px 0;
  background-color: #DBEAEF;
}

section.newsPickup .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.newsPickup h2 {
  margin: 0 0 2em;
  font-size: 1.5rem;
}

section.newsPickup ul {
	margin: 0 0 30px;
  width: 100%;
	display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
}

@media screen and (max-width: 768px) {
section.newsPickup ul {
	flex-direction: column;
  align-items: center;
}
}

section.newsPickup li {
  width: calc(33.333% - 13.332px);
	font-size: 1rem;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
section.newsPickup li {
  max-width: 400px;
  width: 80%;
	margin: 0 0 20px;
}
}

section.newsPickup li a {
  position: relative;
	display: block;
	color: #0E536D;
}

section.newsPickup li .thumbPickup {
	position: relative;
  margin: 0 0 10px;
  border: 3px solid;
  border-color: #BCD3DB;
}

section.newsPickup li a .thumbPickup::before {
  position: absolute;
	content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
}

section.newsPickup li a:hover .thumbPickup::before {
  background-color: rgba(255,255,255,0.2);
  transition-duration: 0.3s;
}

section.newsPickup li .thumbPickup img {
	width: 100%;
}

section.newsPickup li .articlePickup {
}

section.newsPickup li span.title {
	display: block;
  margin: 0 0 0.5em;
}

section.newsPickup li a:hover span.title {
	text-decoration: underline;
}

section.newsPickup li span.date {
  font-size: 85%;
}

/*
section.newsPickup ul {
  width: 100%;
  margin: 0 0 30px;
  border-top: 2px solid;
  border-color: #BCD3DB;
}

section.newsPickup li {
  display: flex;
  flex-wrap: wrap;
  padding: 1em 0.5em;
  font-size: 1rem;
  line-height: 1.5;
  border-bottom: 1px dashed;
  border-color: #BCD3DB;
}

@media screen and (max-width: 768px) {
section.newsPickup li {
  font-size: 0.85rem;
}
}

section.newsPickup li:last-of-type {
  border-bottom: 2px solid;
  border-color: #BCD3DB;
}

section.newsPickup li span.date {
	width: 8em;
  padding: 0.15rem 0 0;
	color: #0E536D;
  font-size: 0.85rem;
}

@media screen and (max-width: 768px) {
section.newsPickup li span.date {
  padding: 0;
  font-size: 0.75rem;
}
}

section.newsPickup li span.title {
	display: block;
  width: calc(100% - 8em);
}

section.newsPickup li a {
	color: #222222;
}

section.newsPickup li a:hover {
  color: #616161;
}
*/


/* activity */
section.activityHome {
  margin: 0 0 60px;
}

section.activityHome h2 {
  margin: 0 0 2em;
  font-size: 1.5rem;
}

section.activityHome div {
  display: flex;
  justify-content: space-between;
  gap: 30px;
	margin: 0 0 30px;
}

@media screen and (max-width: 768px) {
section.activityHome div {
  flex-direction: column;
  align-items: center;
}
}

section.activityHome article {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 31%;
  background-color: #DBEAEF;
  border: 3px solid;
  border-color: #F6B7AA;
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
section.activityHome article {
  width: 100%;
}
}

section.activityHome article h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
	margin: 0 0 2em;
  padding: 2em 2em;
	color: #0E536D;
  text-indent: 0.1em;
  background-color: #F6B7AA;
  border-radius: 15px 15px 0 0;
}

section.activityHome article h3 span:first-of-type {
  margin: 0 0 0.3em;
	font-size: 0.9rem;
	line-height: 1.3;
  text-indent: 0.1em;
}

section.activityHome article h3 span:nth-of-type(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2.2em;
  height: 2.2em;
  margin: 0 0 0.3em;
  color: #FAE06A;
	font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: 0;
  background-color: #0E536D;
  border: 3px solid;
  border-color: #FAE06A;
  border-radius: 1.1em;
}

section.activityHome article h3 span:last-of-type {
	font-size: 1.5rem;
  font-weight: bold;
	line-height: 1.3;
  text-indent: 0.1em;
}

section.activityHome article li {
	margin: 0 1.5em 1.5em;
	font-size: 1rem;
	line-height: 1.4;
  text-align: justify;
}

section.activityHome article li::before {
	content: "\f0da";
	font-family: FontAwesome;
	margin: 0 0.4em 0 0;
	color: #F6B7AA;
	font-size: 120%;
}

section.activityHome article p {
	margin: 0 1.5em 1.5em;
	font-size: 0.9rem;
	line-height: 1.4;
  text-align: justify;
}





/*** content(business) ***/
section.contBusiness {
}

section.contBusiness article {
  margin: 0 0 80px;
}

section.contBusiness article dt {
  margin: 0!important;
}

section.contBusiness article dd {
  margin: 0 0 1.5em 1em!important;
}

section.contBusiness article p.btn {
  margin: 0 0 1.5em;
}

section.contBusiness article div.merit {
  padding: 3em 2em;
  background-color: #DBEAEF;
  border: 3px solid;
	border-color: #0E536D;
  border-radius: 20px;
}
section.contBusiness article div.merit dt {
  display: inline-block;
  padding: 0.2em 0.5em;
  color: #FFFFFF;
	background-color: #0E536D;
}


/*** content(about) ***/
section.contAbout {
}

section.contAbout article {
  margin: 0 0 80px;
}

section.contAbout article dt {
  margin: 0!important;
}

section.contAbout article dd {
  margin: 0 0 1.5em 1em!important;
}

section.contAbout article li {
  margin: 0 0 1em!important;
}

section.contAbout article.prof {
  padding: 3em 2em;
  background-color: #DBEAEF;
  border: 3px solid;
	border-color: #0E536D;
  border-radius: 20px;
}

section.contAbout article.prof h4 span {
  display: inline-block;
  margin: 0 0 0 1em;
  font-size: 90%;
  font-weight: normal;
}

section.contAbout article.prof dt {
  display: inline-block;
  padding: 0 0.2em;
  border-bottom: 1px solid;
}

section.contAbout article p.tel a {  /* for mobile */
  color: #333333;
  text-decoration: none;
}

section.contAbout iframe {
  width: 100%;
  margin: 0 0 40px;
	border: 3px solid;
  border-color: #BCD3DB;
  aspect-ratio: 16/9;
}

@media screen and (max-width: 520px) {
section.contAbout iframe {
  aspect-ratio: 4/3;
}
}


/*** content(contact) ***/
section.contContact {
}

section.contContact .formContact {
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 40px 30px;
  background-color: #FFFFFF;
  border: 1px solid;
  border-color: #BCD3DB;
}

section.contContact .formContact h4 span.inputMust {
  display: inline-block;
  margin: 0 0.5em;
  padding: 0.2em 0.3em;
  color: #EA4D5A;
  font-size: 90%;
  border: 1px solid #EA4D5A;
}

section.contContact .formContact input[type="text"], section.contContact .formContact input[type="email"], section.contContact .formContact input[type="tel"], section.contContact .formContact textarea {
  padding: 0.25em 0.5em;
	font-size: 1rem;
  line-height: 1.5;
  border: 1px solid #ABABAB;
}

section.contContact .formContact input[type="text"], section.contContact .formContact textarea {
  width: 100%;
}

section.contContact .formContact input[type="email"], section.contContact .formContact input[type="tel"] {
  max-width: 100%;
  width: 32em;
}

section.contContact .formContact p.formCommand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 0 0;
  border-top: 5px solid #DEDEDE;
}

section.contContact .formContact p.formCommand input {
  padding: 0.5em 1em;
  font-size: 1rem;
  border: 3px solid;
  border-radius: 8px;
  cursor: pointer;
}

section.contContact .formContact p.formCommand input[type="submit"] {
  color: #FFFFFF;
  background-color: #5BC4FD;
  border-color: #5BC4FD;
}

section.contContact .formContact p.formCommand input[type="submit"]:hover {
  background-color: #7FD1FD;
}

section.contContact .formContact p.formCommand input[type="button"] {
}

section.contContact .formContact p.formCommand input[type="button"]:hover {
}

.wpcf7-response-output {
	padding: 0.8em 0.5em!important;
  font-size: 0.9rem;
	text-align: center;
}

.wpcf7-mail-sent-ok {
	border-color: #268000!important;
}

.wpcf7-mail-sent-ng, .wpcf7-validation-errors {
  color: #EA4D5A!important;
	border-color: #EA4D5A!important;
}

.wpcf7-spam-blocked {
	border-color: #D98C00!important;
}

/* Confirm Plus Contact Form 7 */
div#wpcf7cpcnf {
  z-index: 50!important;
}

div#wpcf7cpcnf table {
  width: 100%;
  border: 1px solid #ABABAB;
}

div#wpcf7cpcnf table th {
  width: 15em;
  padding: 0.5em;
  border: 1px solid #ABABAB;
}

div#wpcf7cpcnf table td {
  width: calc(100% - 15em);
  padding: 0.5em;
  border: 1px solid #ABABAB;
}

div.wpcf7cp-btns {
  display: flex;
  justify-content: center;
  padding: 30px 0 0;
  border-top: 5px solid #DEDEDE;
}

div.wpcf7cp-btns button {
  padding: 0.5em 1em;
  font-size: 1rem;
  border: 3px solid;
  border-radius: 8px;
  cursor: pointer;
}

div.wpcf7cp-btns button.wpcf7cp-cfm-edit-btn {
  border-color: #999999;
}

div.wpcf7cp-btns button.wpcf7cp-cfm-submit-btn {
  color: #FFFFFF;
  background-color: #5BC4FD;
  border-color: #5BC4FD;
}

div.wpcf7cp-btns button.wpcf7cp-cfm-submit-btn:hover {
  background-color: #7FD1FD;
}

/*** content(news) ***/
section.contNews {
}

section.contNews article {
  margin: 0 0 3em;
  padding: 3em 2em 2em;
  background-color: #FFFFFF;
  border: 1px solid;
  border-color: #BCD3DB;
}

section.contNews article h3 {
  margin: 0 0 1em;
  font-size: 1.15rem;
	font-weight: bold;
  line-height: 1.5;
}

section.contNews article h3 span.marking {
  display: inline-block;
  margin: 0 0.5em 0 0;
  padding: 0.1em 0.5em;
  color: #0E536D;
  font-size: 90%;
  text-indent: 0.1em;
  background-color: #FFFFFF;
  border-radius: 5px;
}

section.contNews article h3 span.date {
  display: block;
  font-size: 0.85rem;
  font-weight: normal;
}

section.contNews article p {
  margin: 0 0 1em;
  font-size: 0.9rem;
  line-height: 2;
}



/*** content(404 not found) ***/
section.contNotfound {
}

section.contNotfound article {
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.contNotfound article p {
}


/*** underconstruction ***/
p.underconstruction {
	padding: 150px 0;
	color: #FFFFFF;
	text-align: center!important;
	background-color: #ABABAB;
}



/*** button shape ***/
.menu-trigger, .menu-trigger span {
  display: inline-block;
  transition: all 0.2s;
}
.menu-trigger {
	position: relative;
	width: 20px;
	height: 17px;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #232323;
	border-radius: 3px;
	transition: all .4s;
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 7px;
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
	transform: translateY(7px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
	transform: translateY(-7px) rotate(45deg);
}


/*navigation*/
.navigation {
  font-size: 1rem;
  text-align: center;
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
}
.navigation a, .navigation span.current {
  margin: 0 1em;
  padding: 0.3em;
  text-decoration: none;
}
@media screen and (max-width: 480px) {
.navigation a, .navigation span.current {
  margin: 0 2vw;
}
}
.navigation a i {
  font-size: 2.2rem;
}
.navigation a:hover {
}
.navigation div.alignleft {
  float: left;
}
.navigation div.alignright {
  float: right;
}

