@charset "utf-8";
/*========================================================*/
/*header*/
/*========================================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px;
  text-align: center;
  background: #9ed5df;
  border-radius: 0 0 20px 20px;
  z-index: 99999;
}
.header-logo {
  font-size: 28px;
  font-weight: 800;
}
.menu {
  display: flex;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  background: #fff;
  border-radius: 20px;
  justify-content: center;
}
.menu li {
  margin: 0 8px;
}
.menu li a {
  padding: 4px 0;
  line-height: 1.1;
  font-weight: 500;
  border-bottom: 1px solid #fff;
}
.menu li a:hover {
	border-color: #9ed5df;
}
@media screen and (max-width: 767px) {
	.header {
    display: flex;
    padding: 10px 15px;
    justify-content: space-between;
	}
	.header-logo {
    font-size: 20px;
	}
	.header-menu {
    position: relative;
	}
	.hamburger {
    position: relative;
    width: 40px;
    height: 32px;
    cursor: pointer;
	}
	.hamburger span {
    position: absolute;
    top: 15px;
    left: 9px;
    width: 24px;
    height: 1px;
    background: #000;
    transition: 0.3s ease;
	}
	.hamburger span:first-child {
    top: 9px;
	}
	.hamburger span:last-child {
    top: 22px;
	}
	.hamburger.js-active span:nth-child(2) {
    opacity: 0;
	}
	.hamburger.js-active span:first-child {
    top: 15px;
    transform: rotate(-45deg);
	}
	.hamburger.js-active span:last-child {
    top: 15px;
    transform: rotate(45deg);
	}
	.hamburger-menu {
    position: fixed;
    display: none;
    top: 44px;
    left: 0;
    width: 100%;
    height: calc(100vh - 44px);
    padding: 50px 15px 80px;
    background: #9ed5df;
    border-radius: 12px 12px 0 0;
	}
	.menu {
    display: block;
    padding: 0;
    border-top: 1px dotted #fff;
	}
	.menu li {
    margin: 0;
	}
	.menu li a {
    display: block;
    padding: 13px 10px;
    border-bottom: 1px dotted #FFF;
	}
}
/*========================================================*/
/*footer*/
/*========================================================*/
.footer {
  padding: 20px 10px;
  font-size: 13px;
  text-align: center;
  background: #9ed5df;
  border-radius: 20px 20px 0 0;
}
.footer-info {
  margin-bottom: 20px;
}
.footer-info b {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}
.copyright {
  font-size: 12px;
}
/*========================================================*/
/*main*/
/*========================================================*/
main {
	display: block;
	padding-top: 85px;
}
@media screen and (max-width: 767px) {
	main {
    padding-top: 30px;
	}
}
/*========================================================*/
/*front*/
/*========================================================*/
.front-kv {
  position: relative;
}
.page-title {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
  padding: 0 40px;
	font-size: 34px;
	transform: translateY(-50%);
	z-index: 9;
}
.page-title span {
	display: inline-block;
	padding: 4px 24px;
	margin-bottom: 14px;
	color: #5682b5;
	background: rgba(255,255,255,0.9) url(../images/dot_bg.png) 0 0 / 4px 4px repeat;
	border-radius: 30px;
}
.front-kv img {
	width: 100%;
	height: calc(100vh - 80px);
  max-height: 640px;
	object-fit: cover;
}
/*--------------------------------------------------------*/
.f-works {
  padding: 80px 40px;
  background: url(../images/plus_bg.png) 0 0 / 80px auto repeat;
}
.t-title {
  display: block;
  margin-bottom: 32px;
  font-size: 32px;
  text-align: center;
}
.t-title span {
  position: relative;
  /*padding: 0 24px;*/
  color: #5682b5;
}
.t-title span::before,
.t-title span::after {
  /*content: "";*/
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #5682b5;
  border-radius: 50px;
  transform: rotate(-20deg);
}
.t-title span::after {
  left: auto;
  right: 0;
  transform: rotate(20deg);
}
.works-list {
  display: flex;
  max-width: 800px;
  margin: 0 auto 60px;
  justify-content: space-between;
}
.works-box {
  width: 30%;
}
.works-img {
  position: relative;
  border: 5px solid #9ed5df;
  overflow: hidden;
}
.works-img::before {
  content: "";
  display: block;
  padding-top: 85%;
}
.works-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.works-box p {
  display: block;
  padding: 10px 16px;
  color: #FFF;
  font-weight: 600;
  background: #9ed5df;
  border-bottom: 5px double #056a69;
}
.f-works-content:not(:last-child) {
  margin-bottom: 80px;
}
/*--------------------------------------------------------*/
.f-btns {
  display: flex;
  justify-content: center;
}
.btn {
  display: flex;
  width: 50%;
  max-width: 240px;
  height: 40px;
  margin: 0 20px;
  background: #fff9bd;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
}
/*--------------------------------------------------------*/
.f-about-content {
  padding: 80px 40px;
  color: #FFF;
  text-align: center;
  background: #5682b5;
}
.about-txt {
  margin-bottom: 40px;
}
.forte-list ul {
  display: flex;
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 1.2;
  justify-content: center;
}
.forte-list ul li {
  margin: 0 10px;
}
.forte-list ul li:nth-child(2n) {
  margin-top: 40px;
}
.forte-ill {
  display: block;
  margin-bottom: 16px;
  font-size: 0;
}
.f-about-content .btn {
  color: #5682b5;
  background: #FFF;
}
/*--------------------------------------------------------*/
.f-contact {
  display: flex;
  padding: 80px 40px 110px;
  min-height: 320px;
  margin-bottom: -30px;
  background: #FFF;
  align-items: center;
}
.f-contact-content {
  width: 100%;
}
.f-contact-btn {
  display: flex;
  width: 100%;
  max-width: 320px;
  height: 64px;
  text-align: center;
  color: #000;
  border: 1px solid #000;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  cursor: pointer;
}
.f-contact-btn:hover {
  background: #fff9bd;
  border-color: #fff9bd;
  opacity: 1;
}
@media screen and (max-width: 767px) {
	.page-title {
    top: 34%;
    padding: 0;
    font-size: 20px;
    text-align: center;
  }
	.page-title span {
    padding: 4px 16px;
	}
	/*------------------------*/
	.t-title {
    margin-bottom: 24px;
    font-size: 22px;
	}
	/*------------------------*/
	.f-works {
    padding: 40px 15px;
	}
	.works-list {
    display: block;
    margin-bottom: 48px;
	}
	.works-box {
    width: 100%;
    max-width: 260px;
    margin: 0 auto 30px;
	}
	.works-box p {
    padding: 20px 16px 16px;
    margin-top: -1px;
    color: #000;
    font-weight: 400;
    text-align: center;
	}
	.f-works-content:not(:last-child) {
    margin-bottom: 60px;
	}
	/*------------------------*/
	.f-btns {
    display: block;
	}
	.btn {
    width: 64%;
    height: 48px;
    margin: 0 auto 14px;
	}
	.btn:last-child {
		margin-bottom: 0;
	}
	/*------------------------*/
	.f-about-content {
    padding: 40px 15px;
	}
	.about-txt {
    font-size: 14px;
    text-align: left;
	}
	.forte-list ul {
    display: block;
    max-width: 440px;
    margin: 0 auto 40px;
	}
	.forte-list ul li {
    width: 50%;
    margin: 0;
	}
	.forte-list ul li:nth-child(2n) {
    margin: -44px 0 -44px auto;
	}
	/*------------------------*/
	.f-contact {
    padding: 40px 15px 70px;
    min-height: 240px;
	}
	.f-contact-btn {
    margin: 0 auto;
	}
	/*------------------------*/
}
/*--------------------------------------------------------*/
/*========================================================*/
/*pages*/
/*========================================================*/
.p-title {
  padding: 44px 40px 26px;
  text-align: center;
  background: #ddd;
}
.p-page-content {
  min-height: calc(100vh - 350px);
  padding: 80px 40px;
}
.wp-block-heading {
  margin-bottom: 26px;
  text-align: center;
}
.p-page-content > p:not(:last-child) {
  margin-bottom: 20px;
}
h3.wp-block-heading {
  margin-bottom: 40px;
  color: #5682b5;
}
h3.wp-block-heading:not(:first-child) {
  margin-top: 80px;
}
iframe {
  width: 100%;
  height: 280px;
}
body .is-layout-flex > .icons-list {
  display: flex;
  max-width: 980px;
  margin: 0 auto;
  justify-content: center;
}
body .icons-list > .is-layout-flex {
	position: relative;
  display: block;
  max-width: 120px;
  margin: 0 40px;
}
body .icons-list > .is-layout-flex .wp-block-image {
  display: flex;
  width: 100%;
  height: 128px;
  align-items: center;
}
body .icons-list > .is-layout-flex .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body .icons-list > .is-layout-flex:not(:last-child)::after {
  content: "▶︎";
  position: absolute;
  display: block;
  top: 50%;
  right: -45px;
  color: #9ed5df;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
	.p-page-content {
    padding: 40px 15px;
	}
	body .is-layout-flex > .icons-list {
    display: block;
	}
	body .icons-list > .is-layout-flex {
    max-width: 200px;
    margin: 0 auto 56px;
	}
	body .icons-list > .is-layout-flex:not(:last-child)::after {
    top: auto;
    right: 51%;
    bottom: -35px;
    transform: translateX(50%)rotate(90deg);
	}
	.wp-block-media-text:not(:last-child) {
    margin-bottom: 30px;
	}
	.wp-block-media-text .wp-block-media-text__content {
    padding: 20px 0 0;
	}
}
/*========================================================*/
/*contact*/
/*========================================================*/
.contact-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.ct-point {
  display: block;
  margin-bottom: 24px;
  font-size: 14px;
  color: #ff2727;
}
.contact-wrap table {
  width: 100%;
  margin-bottom: 24px;
}
.contact-wrap table th {
  width: 160px;
  height: 48px;
  padding: 12px;
  font-weight: 400;
  text-align: left;
  background: #9ed5df;
  border: 1px solid #9ed5df;
}
.contact-wrap table td {
  padding: 12px;
  border: 1px solid #9ed5df;
}
.contact-wrap table td input {
  width: 100%;
  max-width: 100%;
  height: 32px;
  padding: 0 16px;
  background: #f6f6f6;
  border-radius: 4px;
}
.contact-wrap table td textarea {
  width: 100%;
  height: 200px;
  padding: 12px 16px;
  background: #f6f6f6;
  border-radius: 4px;
}
.privacy {
  margin-bottom: 24px;
  font-size: 14px;
  text-align: center;
}
.privacy a {
  color: #3337e7;
  text-decoration: underline;
}
.contact-wrap .btns {
  display: flex;
  justify-content: center;
}
.contact-wrap .btns input {
  width: 48%;
  max-width: 240px;
  height: 40px;
  margin: 0 1%;
  background: #fff9bd;
  border-radius: 40px;
}
.contact-wrap .btns input.back {
  background: #ddd;
}
@media screen and (max-width: 767px) {
  .contact-wrap table th {
    display: block;
    width: 100%;
    height: auto;
    padding: 8px;
  }
  .contact-wrap table td {
    display: block;
    width: 100%;
  }
  .contact-wrap table td input {
    height: 44px;
  }
  .contact-wrap .btns {
    display: block;
  }
  .contact-wrap .btns input {
    display: block;
    width: 100%;
    height: 48px;
    margin: 0 auto 10px;
  }
  .contact-wrap .btns input:last-child {
    margin-bottom: 0;
  }
}
/*========================================================*/
/*post*/
/*========================================================*/
.post-main {
  min-height: calc(100vh - 350px);
  padding: 80px 40px;
  background: url(../images/plus_bg.png) 0 0 / 80px auto repeat;
}
/*------------------------*/
.blog-list {
  max-width: 800px;
  margin: 0 auto;
}
.blog-list a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px dotted #eee;
  transition: 0.3s;
}
.blog-list a:hover {
  padding-left: 12px;
  opacity: 1;
}
.blog-list a time {
  display: block;
  font-size: 12px;
  color: #9ed5df;
  font-weight: 600;
}
.blog-list a p {
  -webkit-line-clamp: 1;
  -moz-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
}
.blog-list .category {
  display: flex;
  padding: 10px 16px 0;
  margin-bottom: -5px;
  font-size: 12px;
  background: #9ed5df;
}
.blog-list .category li {
  padding: 0 4px;
  margin: 0 5px 5px 0;
  background: #fff;
}
/*------------------------*/
.post-main .works-list {
  flex-wrap: wrap;
}
.post-main .works-list::after {
  content: "";
  display: block;
  width: 30%;
}
.post-main .works-list .works-box {
  margin-bottom: 40px;
}
/*------------------------*/
@media screen and (max-width: 767px) {
  .post-main {
    padding: 56px 15px;
  }
}
/*------------------------*/
.post-top {
  display: flex;
  margin-bottom: 40px;
  justify-content: space-between;
}
.tp-img {
  width: 48%;
  min-width: 48%;
  margin-right: 2%;
}
.tp-img img {
  width: 100%;
  height: auto;
}
.post-top > div {
  width: 100%;
}
.work-name {
  padding: 4px 20px;
  margin-bottom: 20px;
  background: #9ed5df;
}
.info-box {
  padding: 30px 20px 20px;
  background: #FFF;
  border-radius: 30px;
}
.info-box dl {
  display: flex;
  margin-bottom: 10px;
}
.info-box dl dt {
  min-width: 110px;
}
@media screen and (max-width: 767px) {
  .post-top {
    display: block;
  }
  .work-name {
    padding: 4px 10px;
    margin-bottom: 0;
    font-size: 20px;
  }
  .info-box {
    padding: 20px 10px;
    font-size: 14px;
    border-radius: 0 0 20px 20px;
  }
  .info-box dl dt {
    min-width: 100px;
  }
}
/*------------------------*/
.blog-img {
  max-width: 800px;
  margin: 0 auto 40px;
}
.blog-img img {
  width: 100%;
  height: auto;
}
.post-detail time {
  display: block;
  margin-bottom: 40px;
  font-size: 13px;
  text-align: right;
  color: #9ed5df;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .post-detail time {
    margin: 10px 0 16px;
  }
}
/*------------------------*/

/*========================================================*/
/*230704　追跡お問合せボタン*/
/*========================================================*/
.sl-wrap {
  position: fixed;
  bottom: 50px;
  right: 0;
  z-index: 9;
}
.sl-item a {
  display: flex;
  padding: 6px 12px;
  margin-top: 12px;
  background: #ffd536;
  border-radius: 50px 0 0 50px;
  align-items: center;
}
.sl-item a.sl-tel {
  background: #8ff482;
}
.sl-item a span {
  display: block;
  margin-right: 2px;
  transition: 0.3s;
}
.sl-item a:hover span {
  transform: rotate(5deg);
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 68px;
  }
  .sl-wrap {
    bottom: 0;
    width: 100%;
  }
  .sl-item {
    display: flex;
  }
  .sl-item a {
    width: 100%;
    padding: 8px;
    margin: 0;
    font-size: 14px;
    font-family: 'ヒラギノ丸ゴ ProN','Hiragino Maru Gothic ProN','MS UI Gothic',sans-serif;
    border-radius: 0;
    justify-content: center;
  }
  .sl-item a span {
    width: 32px;
  }
}
/*========================================================*/
/*230704　グロナビ変更*/
/*========================================================*/
.header {
  display: flex;
  padding: 14px 40px;
  align-items: center;
  justify-content: space-between;
}
.menu {
  padding: 10px 20px;
  border-radius: 20px;
}
.menu li a {
  font-weight: 600;
  font-family: 'ヒラギノ丸ゴ ProN','Hiragino Maru Gothic ProN','MS UI Gothic',sans-serif;
  border: none;
}
.menu li a:hover {
    color: #9ed5df;
  }
main {
  padding-top: 30px;
}

@media screen and (max-width: 767px) {
  .header {
    padding: 10px 15px;
  }
}