@charset "UTF-8";
/*
	Theme Name: KOSAERU2023
	Description: KOSAERUテーマ2023ver
	Theme URI: https://kosaeru.net
	Author: KOSAERU
	Author URI: https://kosaeru.net
	Version: 1.0.0
*/
/****************************************

          General Setting

*****************************************/
html, body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #fafafa;
  color: #333;
  font-size: 16px;
  font-family: Oswald, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 160%;
}

figure {
  margin: 0;
}

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

.btn:focus,
.btn-close:focus {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.d-sp {
  display: inline-block;
}

.d-pc {
  display: none;
}

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

          Typography

*****************************************/
.en {
  font-family: "Josefin Sans", sans-serif;
} /* 1 2 3 4 5 6 7 */
.english2 {
  font-family: "Oswald", sans-serif;
} /* 2 3 4 5 6 7 */
.japanese {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.jp {
  font-family: "Noto Sans JP", sans-serif;
}

.jp2 {
  font-family: "Zen Maru Gothic", sans-serif;
}

.english, .english2, .japanese, .jp, .jp2 {
  line-height: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

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

          List

*****************************************/
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul ul {
  margin-left: 1em;
}

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

          Link

*****************************************/
a {
  text-decoration: none;
  color: #333;
}

a:hover {
  opacity: 0.8;
}

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

          FORM

*****************************************/
.form-control {
  font-weight: lighter;
}

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

	HERO

************************/
#hero {
  position: relative;
  text-align: center;
  height: 100vh;
  overflow: hidden;
}

.hero-inner {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 100%;
  height: 100vh;
  color: #1e3536;
}

.hero-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

.hero-img img {
  width: 100%;
}

#hero h2 {
  font-family: "Josefin Sans", sans-serif;
  margin: 0;
  font-size: 3.8rem;
  font-weight: 600;
}

#hero h3 {
  margin: 0 0 160px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 5px;
  line-height: 2;
}

.hero-img {
  position: absolute;
  bottom: 20px;
  left: 30%;
}

.shape-bg-green {
  position: absolute;
  top: 82%;
  right: -12%;
  transform: translate(0%, -50%);
  width: auto;
  z-index: -1;
}

.shape-bg-green .circle {
  width: 400px;
  height: 400px;
  border-radius: 39% 61% 44% 56%/56% 43% 57% 44%;
  background: rgba(53, 166, 166, 0.54);
  animation: 50s linear infinite rotation1;
}

.shape-bg-red {
  position: absolute;
  top: 46%;
  right: -50%;
  transform: translate(0%, 0%);
  width: auto;
  z-index: -1;
}

.shape-bg-red .circle {
  width: 350px;
  height: 350px;
  border-radius: 39% 61% 44% 56%/56% 43% 57% 44%;
  background: rgba(255, 82, 82, 0.55);
  animation: 45s linear infinite rotation2;
}

@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotation2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* scroll down */
a.scrolldown {
  display: inline-block;
  position: absolute;
  left: 20px;
  bottom: 0;
  z-index: 2;
  padding: 10px 10px 210px;
  overflow: hidden;
  color: #555;
  font-weight: 900;
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
}

a.scrolldown::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 200px;
  background: #555;
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

a.scrolldown::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 200px;
  background: #ddd;
}

@keyframes sdl {
  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%;
  }
}
/****************************************

    top

*****************************************/
#top {
  background: #212529;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

#top h1,
#top p {
  letter-spacing: 2px;
  line-height: 2.5;
  font-weight: 100;
  margin: 0;
  font-size: 10px;
  white-space: nowrap;
  animation: scrollSample01 20s linear infinite;
}

@keyframes scrollSample01 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/****************************************

          header

*****************************************/
header {
  background-color: rgba(255, 255, 255, 0);
  padding: 5px 0;
  width: 100%;
  z-index: 999;
}

.home header {
  position: fixed;
}

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

header p.site-title {
  font-weight: 700;
  margin: 0 auto 0 0;
  padding-left: 15px;
}

header img.custom-logo {
  width: 28px;
  height: auto;
}

header .btn-link {
  color: #000;
}

header .bi-search {
  font-size: 22px;
}

header .bi-list {
  font-size: 32px;
}

header .info {
  text-align: center;
  padding: 20px 0;
}

header .info p {
  line-height: 2;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 300;
  display: inline-block;
}

header .info strong {
  font-weight: 400;
}

/* offcanvas */
.offcanvas-backdrop {
  background: #15161c;
}

.offcanvas-backdrop.show {
  opacity: 0.95;
}

.offcanvas-end {
  width: 80%;
}

/* modal */
.modal-backdrop {
  background: #15161c;
}

.modal-backdrop.show {
  opacity: 0.95;
}

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

          Navigation

*****************************************/
#header .menu {
  position: relative;
  bottom: -1px;
  clear: both;
  margin-bottom: 0;
}

#header div.menu > ul,
#header ul.menu {
  border-left: 1px solid #ddd;
}

#header div.menu > ul > li,
#header ul.menu > li {
  float: left;
}

#header .menu li {
  position: relative;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

#header .menu li a {
  display: block;
  padding: 0.5em 1em;
  border-bottom: none;
}

#header div.menu > ul > li.current_page_item,
#header ul.menu > li.current_page_item {
  border-bottom: 1px solid #fff;
}

#header ul.sub-menu,
#header ul.children {
  position: absolute;
  left: -1px;
  display: none;
  margin-left: 0;
  width: auto;
  width: 150px;
  border: 1px solid #ddd;
  background: #eee;
}

#header .sub-menu li,
#header .children li {
  position: relative;
  border: none;
}

#header ul.sub-menu ul,
#header ul.children ul {
  top: -1px;
  left: 150px;
}

#header .menu li:hover > ul {
  display: block;
}

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

    Breadcrumb

*****************************************/
#breadcrumb {
  margin: 0 0 20px;
  background-color: #fff;
}

ul.breadcrumb-lists {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
}

ul.breadcrumb-lists::-webkit-scrollbar {
  display: none;
}

#breadcrumb li {
  font-weight: 100;
  margin-right: 0.5em;
}

#breadcrumb li,
#breadcrumb li a {
  color: #888;
  font-size: 11px;
}

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

          HOME

*****************************************/
.home {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 2px;
  overflow-x: hidden;
}

/**/
#catch {
  text-align: center;
  background-color: #263238;
  padding: 20px 0 0;
}

#catch .container {
  position: relative;
}

#catch h2 {
  color: #fff;
  font-weight: 600;
  position: sticky;
  z-index: 1;
  margin: 0;
  filter: drop-shadow(0px 0px 6px #000);
  text-align: end;
  line-height: 1.4;
}

#catch h2 strong {
  font-weight: 800;
  font-size: 174%;
  color: #d2ff2d;
  margin: 0 3px;
}

#catch figure {
  position: absolute;
  top: -50px;
  left: 0px;
  width: 150px;
  z-index: 0;
}

/* cause */
#cause {
  background-color: #20292e;
  padding: 10px 0;
  width: 100vw;
  margin: 20px calc(50% - 50vw) 0;
}

#cause ul {
  text-align: start;
  display: inline-block;
  position: sticky;
  z-index: 1;
}

#cause ul li {
  color: #fff;
  padding: 15px;
  font-weight: 100;
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

#cause ul li span {
  border: 1px solid #d2ff2d;
  color: #d2ff2d;
  background-color: #263238;
  padding: 5px 15px 7px;
  margin-bottom: 5px;
  line-height: 1;
  font-size: 0.85rem;
}

/* trouble */
#trouble {
  overflow: hidden;
  padding: 50px 0 20px;
}

#trouble .section-title {
  position: relative;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

#trouble .section-title::before,
#trouble .section-title::after {
  position: absolute;
  top: -75px;
  content: "";
  width: 500px;
  height: 300px;
  background-repeat: no-repeat;
  opacity: 0.1;
  filter: hue-rotate(177deg);
}

#trouble .section-title::before {
  background-image: url(images/title-bg-left.svg);
  left: -360px;
}

#trouble .section-title::after {
  background-image: url(images/title-bg-right.svg);
  right: -360px;
}

#trouble h2 {
  color: #263238;
  position: relative;
  display: inline-block;
  padding: 0 15px;
  font-size: 1.75rem;
  font-weight: 700;
  color: transparent;
  background: repeating-linear-gradient(90deg, #f64a4a 0, #cea809 50%, #34a5a5 100%);
  -webkit-background-clip: text;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 15px;
}

#trouble .section-contents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: column;
}

#trouble .section-contents ul {
  order: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 0;
}

#trouble .section-contents.okomarigoto figure {
  order: 1;
  width: 100%;
  animation: 3s linear infinite troubleImg;
  margin: 0 0 15px;
  text-align: center;
}

#trouble .section-contents.okomarigoto figure img {
  width: 65%;
}

#trouble .section-contents ul li {
  position: relative;
  width: 48%;
  padding: 25px;
  display: flex;
  font-weight: 900;
  font-size: 13px;
  line-height: 1.8;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-shadow: 0px 0px 5px #5a8484;
  z-index: 0;
}

#trouble .section-contents ul li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 45% 61% 56% 54%/56% 59% 44% 53%;
  background: rgba(255, 82, 82, 0.34);
  width: 100%;
  height: 100%;
  z-index: -2;
}

#trouble .section-contents ul li:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 39% 61% 44% 56%/56% 43% 57% 44%;
  background: rgba(53, 166, 166, 0.8);
  width: 100%;
  height: 100%;
  z-index: -2;
}

#trouble .section-contents ul li:nth-child(1) {
  border-radius: 45% 61% 56% 54%/56% 59% 44% 53%;
  animation: 4s linear infinite troubleRotation01;
}

#trouble .section-contents ul li:nth-child(2) {
  border-radius: 39% 61% 44% 56%/56% 43% 57% 44%;
  animation: 3s linear infinite troubleRotation02;
}

#trouble .section-contents ul li:nth-child(3) {
  border-radius: 65% 40% 79% 54%/75% 59% 57% 51%;
  animation: 4s linear infinite troubleRotation03;
}

#trouble .section-contents ul li:nth-child(4) {
  border-radius: 50% 63% 67% 38%/57% 50% 54% 58%;
  animation: 3s linear infinite troubleRotation04;
}

#trouble .section-contents ul li:nth-child(5) {
  border-radius: 69% 61% 69% 57%/65% 54% 82% 78%;
  animation: 4s linear infinite troubleRotation05;
}

#trouble .section-contents ul li:nth-child(6) {
  border-radius: 39% 61% 44% 56%/56% 43% 57% 44%;
  animation: 3s linear infinite troubleRotation06;
}

@keyframes troubleImg {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(1px, -4px);
  }
}
@keyframes troubleRotation01 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(1px, -4px);
  }
}
@keyframes troubleRotation02 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -4px);
  }
}
@keyframes troubleRotation03 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(1px, -4px);
  }
}
@keyframes troubleRotation04 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -4px);
  }
}
@keyframes troubleRotation05 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(1px, -4px);
  }
}
@keyframes troubleRotation06 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -4px);
  }
}
/**/
#trouble p.arrow-down {
  text-align: center;
  margin: 50px 0;
}

#trouble p.arrow-down i {
  font-size: 70px;
  color: #5dacac;
}

#trouble .leave-it-to-me .section-contents-left {
  width: 20%;
}

#trouble .leave-it-to-me .section-contents-right {
  width: 78%;
}

.home .leave-it-to-me .section-inner {
  align-items: flex-start;
  justify-content: space-between;
}

p.strong-point-txt {
  position: relative;
  padding: 15px;
  border: 3px solid #333;
  box-shadow: 3px 3px 0 0 #c4c4c4;
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 40px;
  background-color: #fff;
  line-height: 1.4;
}

p.strong-point-txt:before,
p.strong-point-txt:after {
  position: absolute;
  left: 30px;
  height: 0;
  width: 0;
  border: solid transparent;
  content: "";
}

p.strong-point-txt:before {
  top: 100%;
  margin-left: -11px;
  border-color: transparent;
  border-top-color: #333;
  border-right-color: #333;
  border-width: 12px;
}

p.strong-point-txt:after {
  top: 99%;
  margin-left: -7px;
  border-color: transparent;
  border-top-color: white;
  border-right-color: white;
  border-width: 8.5px;
}

#trouble .shape-bg-green {
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
}

/* section */
.home section {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 50px 0;
  position: relative;
}

.home section#contact01,
.home section#faq,
.home section#blog {
  background-color: rgba(255, 255, 255, 0.5);
}

.home section .section-title {
  justify-content: center;
  padding: 0;
}

.home section .section-title h2 {
  margin: 0 0 50px;
  font-size: 2.5rem;
  text-transform: uppercase;
}

.home .section-title.left-alignment {
  justify-content: flex-start;
  flex-direction: column;
  text-shadow: 0px 0px 15px #fff;
}

.home .section-title.left-alignment h2 {
  font-size: 13px;
  font-weight: 300;
  padding: 0;
  line-height: 1;
  margin: 0 0 5px 0;
  text-transform: uppercase;
  color: #20292e;
  letter-spacing: 0;
  font-weight: 900;
}

.home .section-title.left-alignment h2::after {
  content: "";
  width: 25%;
  height: 1px;
  display: inline-block;
  background: #35a6a6;
  margin: 5px 10px;
}

.home .section-title.left-alignment h3 {
  text-transform: uppercase;
  color: #35a6a6;
  font-size: 2rem;
  letter-spacing: 0;
  margin: 0 0 35px;
  font-weight: 900;
}

.home .section-inner {
  display: flex;
  align-items: center;
  width: 100%;
}

.home .section-contents-left,
.home .section-contents-right {
  width: 50%;
}

/* about */
#about {
  padding: 0 0 30px;
  overflow: hidden;
}

#about .section-inner {
  margin: 0;
  flex-direction: column;
}

#about .section-contents-left,
#skills .slill-txt {
  width: 100%;
  order: 2;
}

#about .section-contents-right,
#skills figure {
  width: 100%;
  text-align: center;
  order: 1;
}

#about ul {
  margin: 0;
  overflow-x: auto;
}

#about ul li {
  margin: 10px 0;
  font-size: 14px;
  white-space: nowrap;
}

#about ul li strong {
  font-weight: inherit;
  background-color: #333;
  color: #fff;
  font-size: 12px;
  padding: 0;
  width: 100px;
  text-align: center;
  margin-right: 10px;
  display: inline-block;
  border-radius: 3px;
}

#about img {
  position: absolute;
  top: 2%;
  right: 20px;
  width: 19%;
}

#about .shape-bg-green {
  top: 5%;
  right: auto;
  left: 0%;
  transform: translate(-50%, -5%);
}

/* service */
#service {
  overflow: hidden;
}

#service .section-inner {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px 0;
  width: 100%;
}

.s-item figure {
  text-align: center;
}

.s-item figure img {
  border-radius: 5px;
  filter: brightness(0.7);
}

.s-item {
  width: 100%;
  position: relative;
  border-radius: 10px;
}

.s-item .s-num {
  position: absolute;
  top: 75px;
  right: 40px;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.5);
  font-size: 100px;
  z-index: 1;
}

.s-item .s-txt {
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 15px 20px;
  width: 90%;
  border-radius: 5px;
  text-shadow: 1px 1px 1px rgb(255, 255, 255);
}

.s-item .s-txt h4 {
  font-size: 1rem;
  font-weight: 900;
  margin: 0 0 10px;
  text-align: center;
}

.s-item .s-txt p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 140%;
}

#other-searvice {
  margin: 15px 0;
  text-align: center;
}

#other-searvice p {
  margin: 0;
  text-align: center;
  width: 100%;
  font-size: 1.25rem;
}

#other-searvice ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5px 0;
}

#other-searvice ul li {
  width: 49%;
  background-color: #263238;
  border: 2px solid #fff;
  text-align: left;
  color: #fff;
  padding: 10px 0 10px 35px;
  font-weight: 700;
  font-size: 0.75rem;
  background-image: url(https://kosaeru.net/wp-content/themes/kosaeru2023/images/ux-design.webp);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: left 10px center;
}

#service .shape-bg-green {
  top: 15%;
  left: -10%;
  right: auto;
}

#about .shape-bg-green .circle,
#service .shape-bg-green .circle,
#trouble .shape-bg-green .circle,
#contact01 .circle {
  width: 400px;
  height: 400px;
  background: radial-gradient(110.88% 79.69% at 47.77% 151.82%, #ffec45 0%, rgba(255, 236, 69, 0.3) 54.92%, rgba(255, 236, 69, 0) 96.11%), radial-gradient(50% 68.23% at 98.21% 96.61%, #41d1b7 0%, rgba(65, 209, 183, 0.35) 49.27%, rgba(65, 209, 183, 0) 100%), radial-gradient(83.71% 75.52% at -10.04% 2.86%, #8263db 0%, rgba(129, 114, 218, 0.26) 56.87%, rgba(129, 114, 218, 0) 100%), linear-gradient(180deg, #58ccdc 0%, rgba(88, 204, 220, 0) 100%), linear-gradient(81.23deg, #ff557e 21.4%, rgba(255, 85, 85, 0) 84.87%), #f2f5fa;
  background-blend-mode: normal, normal, darken, normal, normal, normal;
  filter: blur(20px);
  animation: 10s linear infinite rotation1;
}

#service .shape-bg-red {
  top: 57%;
  right: -10%;
}

#service .shape-bg-red .circle {
  width: 400px;
  height: 400px;
  border-radius: 15rem;
  background: radial-gradient(61.98% 61.98% at 100% 0%, rgba(32, 30, 147, 0.65) 0%, rgba(32, 30, 147, 0.2405) 49.77%, rgba(2, 209, 255, 0) 100%), radial-gradient(50% 68.23% at 98.21% 96.61%, rgb(56, 167, 167) 0%, rgba(65, 209, 183, 0.3358) 57.82%, rgba(65, 209, 183, 0) 100%), radial-gradient(72.32% 89.58% at 1.34% 3.39%, #f74e76 0%, rgba(242, 87, 87, 0) 100%), linear-gradient(180deg, #35a6a6 0%, rgba(88, 204, 220, 0) 100%), linear-gradient(62.9deg, #f64a4a 14.56%, rgba(133, 50, 199, 0) 92.07%), #f2f5fa;
  background-blend-mode: normal, normal, normal, normal, normal, normal;
  filter: blur(20px);
  animation: 10s linear infinite rotation1;
}

/* skill */
/* #skills{
	background-color: #20292e;
	color: #fff;
}
.home #skills .section-title.left-alignment h2{
	color: #fff;
}
#skills h4{
	color:#35a6a6;
	margin-top: 50px;
}
#skills h4:first-child{
	margin-top: 0;
}
#skills h4 i{
	margin-right: 10px;
} */
/* campaign */
#campaign {
  background-image: url(images/campaign-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.gizagiza {
  position: relative;
}

.gizagiza::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0%;
  top: 100%;
  z-index: 10;
  display: block;
  height: 10px;
  background-size: 10px 100%;
  background-image: linear-gradient(135deg, #ffc800 25%, transparent 25%), linear-gradient(225deg, #ffc800 25%, transparent 25%);
  background-position: 0 0;
}

.gizagiza01::after {
  background-image: linear-gradient(135deg, #fff 25%, transparent 25%), linear-gradient(225deg, #fff 25%, transparent 25%);
}

#campaign {
  padding-top: 80px;
}

#campaign .section-title {
  position: relative;
}

#campaign .section-title p {
  position: absolute;
  top: -35px;
  left: 50.5%;
  transform: translate(-50%, 0);
  font-weight: 900;
  font-size: 18px;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
  width: 100%;
  text-align: center;
}

#campaign h2 {
  font-size: 1.5rem;
  position: relative;
  text-align: center;
  margin: 0 0 30px;
}

#campaign h2:before,
#campaign h2:after {
  position: absolute;
  z-index: 0;
  bottom: -10px;
  display: block;
  content: "";
  border: 1em solid #e74747;
}

#campaign h2:before {
  left: -30px;
  border-left-width: 15px;
  border-left-color: transparent;
}

#campaign h2:after {
  right: -30px;
  border-right-width: 15px;
  border-right-color: transparent;
}

#campaign h2 span {
  position: relative;
  z-index: 1;
  display: block;
  padding: 15px 60px 10px;
  color: #fff;
  background: #fa4141;
}

#campaign h2 span:before,
#campaign h2 span:after {
  position: absolute;
  bottom: -10px;
  display: block;
  width: 10px;
  height: 10px;
  content: "";
  border-style: solid;
  border-color: #b70505 transparent transparent transparent;
}

#campaign h2 span:before {
  left: 0;
  border-width: 10px 0 0 10px;
}

#campaign h2 span:after {
  right: 0;
  border-width: 10px 10px 0 0;
}

#campaign .section-inner {
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 15px 0;
}

.campaign-item {
  position: relative;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.97);
  border-radius: 3px;
  padding: 20px;
  height: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 2px 8px #ce9d1c;
}

.campaign-item h3 {
  text-align: center;
  margin: 0 0 15px;
  padding-bottom: 15px;
  border-bottom: 4px dotted #ffb100;
  font-weight: 900;
}

.campaign-item figure {
  position: absolute;
  top: -4px;
  left: 20px;
}

.campaign-item figure img {
  width: 45px;
  height: auto;
}

.campaign-item p {
  margin: 0;
}

#campaign p.attention {
  font-size: 10px;
  margin: 10px 0 0;
}

/* price */
#price {
  position: relative;
  background-color: rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

#price:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(images/price.webp);
  background-size: cover;
  opacity: 0.3;
  z-index: -1;
}

.strong-point {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.strong-point li {
  padding: 2px 8px;
  border: 1px solid #333;
  font-weight: 400;
  font-size: 10px;
}

.price-slider {
  padding: 50px 0;
  overflow: visible;
  position: relative;
}

.price-slider .swiper-slide {
  height: auto;
}

.price-slider .price-box {
  padding: 20px;
  transition: all 0.5s 0s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgba(53, 166, 166, 0.62);
  border: 5px solid #35a6a6;
  border-radius: 5px;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.25);
}

.price-slider .price-box .price-box-contents {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  justify-content: space-between;
}

.price-slider .price-box:hover {
  transform: translateY(-10px);
}

.swiper-button-prev {
  left: -10px;
}

.swiper-button-next {
  right: -10px;
}

.swiper-button-prev,
.swiper-button-next {
  display: grid;
  place-content: center;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  transition: all 0.5s 0s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: scale(1.1);
}

.swiper-button-prev::before,
.swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  background-color: rgba(68, 68, 68, 0.85);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  width: 1rem;
  height: 1rem;
  content: "";
  border: solid #fff;
  border-width: 3px 3px 0 0;
}

.swiper-button-prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}

.swiper-button-next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}

.price-slider .swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0.2rem;
  justify-content: center;
  margin-top: 3.2rem;
  text-align: center;
}

.price-slider .swiper-pagination-bullet {
  width: 0.8rem;
  height: 5px;
  cursor: pointer;
  transition: all 0.5s 0s ease;
  vertical-align: top;
  ackground-color: #444;
  opacity: 0.8;
  border-radius: 20px;
}

.price-slider .swiper-pagination-bullet-active {
  width: 4rem;
  background-color: #ed4141;
}

.price-box .case-number,
.price-box .price-box-title {
  text-align: center;
}

.price-box .case-number {
  padding: 5px 15px;
  background-color: #444;
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  margin: 0 0 15px;
}

.price-box .case-number p {
  margin: 0;
  display: inline-block;
}

.price-box h4 {
  font-size: 18px;
  font-weight: 800;
}

.price-box h5 {
  color: #35a5a5;
  margin: 20px 0;
  font-size: 32px;
  background-color: #fff;
  padding: 20px 0 15px;
  border-radius: 5px;
}

.price-box h5 span {
  font-size: 16px;
  font-weight: 900;
  vertical-align: middle;
}

.price-box h5 span.yen {
  font-size: 20px;
  font-family: initial;
}

.price-box ul {
  padding-left: 20px;
}

.price-box ul li {
  list-style: disc;
  font-weight: 700;
  font-size: 14px;
}

.price-box ul li:empty {
  list-style: none;
}

.price-box ul.point {
  background-color: #fff5cc;
  padding: 15px;
  border-radius: 5px;
  margin: 15px 0 0;
}

.price-box ul.point:empty {
  background-color: #fff;
}

/* FAQ */
.faq-q {
  background-color: #F4F1EC;
  padding: 25px;
}

.faq-a {
  padding: 25px;
  margin: 0 0 30px;
}

.faq-q h4,
.faq-a p:last-child {
  margin: 0;
}

.faq-q h4 span {
  margin-right: 25px;
  color: #aaa191;
  font-size: 110%;
}

/**/
.home section#contact01 {
  position: relative;
  color: #333;
}

.home section#contact01 .section-title h2 {
  margin: 0 0 50px;
}

.home section#contact01 .section-contents {
  text-align: center;
}

.home section#contact01 .section-contents a.contact-btn {
  font-weight: 700;
  line-height: 1.5;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 3px;
  font-size: 1.25rem;
  position: relative;
  padding: 2.5rem 2rem 2.5rem 5.6rem;
  color: #fff;
  background: #35a5a6;
  box-shadow: 0 5px 0 #35797a;
  margin: 50px 0 0;
}

.home section#contact01 .section-contents a.contact-btn span {
  font-size: 1rem;
  display: inline-block;
  width: 100%;
  margin-bottom: 0.5em;
  padding: 0.2rem 0.5rem;
  color: #35797a;
  border-radius: 3px;
  background: #fff;
}

.home section#contact01 .section-contents a.contact-btn:before {
  content: "\f32c";
  font-family: bootstrap-icons;
  font-size: 1.8rem;
  line-height: 1;
  position: absolute;
  top: calc(50% - 0.7rem);
  left: 1.8rem;
  margin: 0;
  padding: 0;
  transition: all 0.3s;
}

.home section#contact01 .section-contents a.contact-btn:hover {
  transform: translate(0, 3px);
  color: #fff;
  background: #35a5a6;
  box-shadow: 0 2px 0 #3a4a4a;
}

.home section#contact01 .section-contents a.contact-btn:hover:before {
  left: 2rem;
}

/* blog */
section#blog {
  padding-top: 0;
}

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

          Main

*****************************************/
.section-title {
  display: flex;
  justify-content: space-between;
  padding: 0 0 20px;
}

.section-title p {
  font-size: 0.75rem;
}

article.post {
  margin-bottom: 25px;
  text-align: left;
}

.home article.post {
  text-align: center;
}

article.post .post-img {
  position: relative;
}

article.post .post-img span.category {
  position: absolute;
  top: 20px;
  left: 15px;
  line-height: 1;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 1;
}

article.post .post-img span.category a {
  font-family: "Josefin Sans", sans-serif;
  background-color: #35a5a5;
  color: #fff;
  padding: 6px 10px 5px;
  border-radius: 0.15rem;
}

article.post h2.post-title {
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0;
  font-weight: bold;
}

.related-posts article.post h2.post-title,
.home article.post h2.post-title {
  font-size: 1rem;
  margin: 15px 0;
}

article.post p.post-meta {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  margin-bottom: 0;
}

article.post p.post-meta,
article.post p.post-meta a {
  color: #888;
}

.page-link {
  margin: 3em 0;
}

.comment-page-link {
  margin: 0 0 3em;
}

.page-link span,
.comment-page-link span,
.comment-page-link a {
  display: inline-block;
  margin-right: 3px;
  padding: 5px 8px;
  border: 1px solid #ddd;
  background: #ddd;
}

.page-link a span,
.comment-page-link a {
  background: #fff;
}

.page-link a {
  border-bottom: none;
  color: #000;
}

.page-link a span:hover,
.comment-page-link a:hover {
  background: #ffeff7;
  color: #000;
}

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

          ARCHIVE POSTS

*****************************************/
article.archive-post {
  display: flex;
  justify-content: space-between;
}

article.archive-post .post-img {
  width: 35%;
}

article.archive-post .post-txt {
  width: 62%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

article.archive-post .post-txt h2.post-title {
  margin-top: 0;
}

article.archive-post .post-txt .post-content {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

article.archive-post .post-txt .post-content p {
  color: #999;
  line-height: 1.8;
  font-size: 0.75rem;
  margin: 0;
}

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

          SINGLE

*****************************************/
body.single {
  background-color: #fff;
}

.single-header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
  height: 75vh;
  overflow: hidden;
  background-size: cover !important;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 37%, rgba(0, 0, 0, 0.65) 100%), no-repeat center center scroll;
  margin-bottom: 15px;
  background-position: center;
  border-radius: 5px;
}

.single article {
  text-align: left;
}

.single .post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: lighter;
  font-size: 11px;
  line-height: 1;
}

.single .post-meta span {
  margin-right: 10px;
}

.single ul.share-link {
  display: none;
}

.single ul.share-link li {
  margin-left: 16px;
}

.single ul.share-link li a i {
  margin-right: 5px;
}

.single ul.share-link li span {
  display: none;
}

.single ul.share-link li:nth-child(1) a {
  color: #3b5998;
}

.single ul.share-link li:nth-child(2) a {
  color: #1da1f2;
}

.single ul.share-link li:nth-child(3) a {
  color: #01c300;
}

.single .post-category a {
  background-color: #f54949;
  color: #fff;
  text-decoration: none;
  padding: 7px 15px;
  display: inline-block;
  border-radius: 3px;
}

h1.post-title {
  line-height: 1.4;
  margin: 10px 0 40px;
}

.single .post-thumbnail {
  margin: 1rem 0 2rem;
}

.single .post-content {
  word-break: break-all;
}

.single .post-content p {
  line-height: 2;
  margin-bottom: 2rem;
}

.single .post-content img {
  max-width: 100%;
  height: auto;
}

.single .share-link2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
}

.single .share-link2 p {
  font-weight: bold;
  font-size: 1.25rem;
  margin: 0;
}

.single .share-link2 a.share-fb {
  color: #3b5998;
  font-size: 32px;
}

.single .share-link2 a.share-tw {
  background-color: #1da1f2;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

.single .share-link2 .share-line img {
  width: 32px;
}

.copy-button {
  display: block;
  margin: 30px auto;
  padding: 10px 1em;
  border: solid 1px #ddd;
  color: #868686;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}

.copy-button.success {
  background: #35a5a5;
  border-color: #35a5a5;
  color: #fff;
}

.copy-button.error {
  background: red;
  border-color: red;
  color: #fff;
}

.single .footer-post-meta {
  margin: 40px 0;
}

.single .footer-post-meta a {
  white-space: nowrap;
  border: 1px solid #ddd;
  padding: 3px 20px 5px;
  border-radius: 20px;
  color: #777;
  font-weight: lighter;
  font-size: 0.75rem;
}

.single .footer-post-meta a:hover {
  background-color: #343a46;
  border: 1px solid #343a46;
  color: #fff;
}

/* You Tube */
.youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

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

/* page-nav */
.page-nav {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin: 40px 0;
  background: #343a46;
  color: #fff;
  border-radius: 5px;
}

.page-nav li {
  width: 100%;
}

.page-nav li.next-post {
  text-align: right;
}

.page-nav li .link-box {
  display: flex;
}

.page-nav li.prev-post {
  border-bottom: 1px solid #fff;
}

.page-nav li.next-post .link-box {
  justify-content: flex-end;
}

.page-nav li .link-box img {
  width: 100px;
  height: auto;
  border-radius: 5px;
}

.page-nav li.prev-post img {
  margin-right: 20px;
}

.page-nav li.next-post img {
  margin-left: 20px;
}

.page-nav p.englihs {
  font-size: 20px;
}

.page-nav a {
  display: block;
  color: #fff;
  padding: 25px;
  height: 100%;
}

.page-nav a h4 {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  font-weight: lighter;
}

/* post-content */
.single .post-content h2 {
  font-size: 32px;
  line-height: 120%;
  background-color: #ffffff;
  color: #000000;
  padding: 0 0 13px;
  font-weight: bold;
  margin: 100px 0 20px;
  border-bottom: 4px solid #000000;
}

.single .post-content h3 {
  border-bottom: solid 2px #454545;
  font-weight: bold;
  display: inline-block;
  font-size: 20px;
  margin: 0 0 0.5rem;
  padding-bottom: 0.5rem;
}

.single .post-content u {
  background: linear-gradient(transparent 60%, rgba(255, 91, 205, 0.56) 60%);
  text-decoration: none;
}

.single .post-content ul {
  padding: 15px 15px 15px 40px;
  margin-bottom: 25px;
  background-color: #f5fdff;
  border-left: 5px solid #5fcae4;
}

.single .post-content ul li {
  list-style: square;
  margin: 1rem 0;
}

.crayon-syntax {
  padding: 15px !important;
}

.single .post-content blockquote {
  background-color: #f0f0f0;
  background-image: url(images/quote.png);
  background-repeat: no-repeat;
  background-position: 20px 10px;
  padding: 90px 40px 20px;
  border: 5px solid #ECECEC;
  font-size: 14px;
}

.single .post-content blockquote p:last-child {
  margin-bottom: 0;
}

.single .post-content a {
  text-decoration: underline;
  color: #0b3b9b;
}

.single .post-content p:empty {
  display: none;
}

.link_area {
  padding: 30px;
  margin-bottom: 20px;
  color: #353535;
  border: 5px dotted #ddd;
  font-size: 14px;
  background-color: #fdfdfd;
  word-break: break-word;
}

.link_area p {
  font-size: 14px;
  margin-bottom: 0;
}

.link_area strong {
  font-size: 16px;
}

/*----------------------------
Chat Bubbles　CSS Setting
-----------------------------*/
/* 全体のスタイル */
.voice {
  margin: 2rem 0;
  display: flex;
  flex-direction: row;
}

.voice:first-child {
  margin-top: 0;
}

/* 左画像 */
.voice-img-left {
  width: 60px;
  height: 60px;
}

/* 右画像 */
.voice-img-right {
  width: 60px;
  height: 60px;
}

.voice figure img {
  width: 100%;
  height: 100%;
  border: 2px solid #eee;
  border-radius: 50%;
  margin: 0;
}

/* 画像の下のテキスト */
.voice-img-description {
  padding: 0px 0 0;
  font-size: 10px;
  text-align: center;
}

/* 左からの吹き出しテキスト */
.voice-text-right {
  color: #444;
  position: relative;
  margin-left: 1rem;
  padding: 1.2em;
  border: 3px solid #eee;
  background-color: #fff;
  border-radius: 5px;
  width: calc(100% - 60px);
}

/* 右からの吹き出しテキスト */
.voice-text-left {
  position: relative;
  margin-right: 1rem;
  padding: 1.2em;
  border: 3px solid #eee;
  background-color: #fff;
  border-radius: 5px;
  width: calc(100% - 60px);
}

p.voice-text {
  margin: 0 0 8px;
}

p.voice-text:last-child {
  margin-bottom: 0px;
}

/* 左の三角形を作る */
.voice-text-right:before {
  position: absolute;
  content: "";
  border: 10px solid transparent;
  border-right: 10px solid #eee;
  top: 15px;
  left: -20px;
}

.voice-text-right:after {
  position: absolute;
  content: "";
  border: 10px solid transparent;
  border-right: 10px solid #fff;
  top: 15px;
  left: -16px;
}

/* 右の三角形を作る */
.voice-text-left:before {
  position: absolute;
  content: "";
  border: 10px solid transparent;
  border-left: 10px solid #eee;
  top: 15px;
  right: -23px;
}

.voice-text-left:after {
  position: absolute;
  content: "";
  border: 10px solid transparent;
  border-left: 10px solid #fff;
  top: 15px;
  right: -19px;
}

/* 回り込み解除 */
.voice:after, .voice:before {
  clear: both;
  content: "";
  display: block;
}

/*-------------
蛍光の下線
---------------*/
.marker-y {
  background: linear-gradient(transparent 60%, #ffff66 60%);
  font-weight: bold;
}

.marker-b {
  background: linear-gradient(transparent 60%, #a6ebff 60%);
  font-weight: bold;
}

/*-------------
ＵＬデザイン
---------------*/
ul.ul-arrow a {
  color: #00709e;
  text-decoration: underline;
}

.single .post-content ul.ul-arrow,
.single .post-content ul.ul-b {
  position: relative;
  margin: 30px 0;
  background-color: #fff !important;
}

.single .post-content ul.ul-arrow strong,
.single .post-content ul.ul-b strong {
  position: absolute;
  top: -14px;
  left: 15px;
  background-color: #fff;
  font-size: 20px;
  padding: 0 15px;
}

.single .post-content ul.ul-arrow strong {
  color: #0098d6;
}

.single .post-content ul.ul-b strong {
  color: #ff4c7a;
}

.single .post-content ul.ul-arrow {
  border-left: 2px solid skyblue !important;
  border: solid 2px skyblue;
  border-radius: 5px;
  padding: 0.5em 1em 0.5em 2.3em !important;
  position: relative;
}

.single .post-content ul.ul-arrow li {
  line-height: 1.2;
  padding: 0.25rem 1rem;
  list-style-type: none !important;
  color: #333 !important;
}

.single .post-content ul.ul-arrow li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  position: absolute;
  left: 1.5rem;
  color: skyblue;
  font-weight: 900;
}

.single .post-content ul.ul-b {
  border-left: 2px solid #f7a3b8 !important;
  border: solid 2px #f7a3b8;
  border-radius: 5px;
  padding: 1rem 3em;
  position: relative;
  margin-bottom: 10px;
}

.single .post-content ul.ul-b li {
  line-height: 1.2;
  padding: 0.5em 0;
  list-style-type: none !important;
  color: #333 !important;
}

.single .post-content ul.ul-b li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  position: absolute;
  left: 1.5rem;
  color: #f7a3b8;
  font-weight: 900;
}

/*-------------
まとめ
---------------*/
.single .post-content h2.matome {
  position: relative;
  padding: 4px 15px 10px 39px !important;
  margin: 100px 0 15px !important;
  border-bottom: 4px solid #ff8183 !important;
  font-size: 28px !important;
  font-weight: bold !important;
  background-color: #fff !important;
  color: #333 !important;
  border-left: none !important;
  text-shadow: none !important;
}

.single .post-content h2.matome::before,
.single .post-content h2.matome::after {
  position: absolute;
  content: "";
  border-radius: 100%;
}

.single .post-content h2.matome::before {
  top: 0.2em;
  left: 0.2em;
  z-index: 2;
  width: 20px;
  height: 20px;
  background: rgba(255, 0, 0, 0.5);
}

.single .post-content h2.matome::after {
  top: 0.7em;
  left: 0.7em;
  width: 13px;
  height: 13px;
  background: rgba(60, 152, 60, 0.5);
}

/*-------------
TOC
---------------*/
#toc_container {
  color: #666;
  margin-bottom: 40px;
  overflow: hidden;
  padding: 0px !important;
  border: 0 !important;
  background: #fff !important;
  background-color: #fff !important;
  margin: 80px 0 0 !important;
}

#toc_container p.toc_title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 28px;
  line-height: 60px;
  color: #1d1d1d;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  text-align: left !important;
}

#toc_container ul.toc_list,
#toc_container ul.toc_list ul {
  padding: 0 !important;
  margin-bottom: 0 !important;
  border: none !important;
  background-color: #fff !important;
}

#toc_container ul.toc_list li {
  font-size: 14px;
  list-style: none;
}

#toc_container ul.toc_list > li a {
  color: #353535;
  text-decoration: underline;
}

#toc_container ul.toc_list > li a span.toc_number {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #353535;
  display: inline-block;
  width: 40px;
  text-align: center;
  font-size: 15px;
}

/*-------------
引用リンク
---------------*/
.single .post-content .qlink {
  margin: -20px 0 20px;
}

.single .post-content .qlink a {
  font-size: 11px;
  color: #888;
}

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

          Related Posts

*****************************************/
.related-posts {
  padding: 80px 0 0;
}

.related-posts h3 {
  font-weight: lighter;
  border-bottom: 1px dotted #555;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

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

          Comments Area

*****************************************/
#comment-area {
  padding: 80px 0 0;
}

#comment-area h3 {
  font-size: 150%;
  font-family: "Josefin Sans", sans-serif;
}

.required {
  color: #fe56aa;
}

.commets-list,
.trackback-list {
  overflow: hidden;
  margin-top: -20px;
  margin-bottom: 40px;
}

.commets-list li,
.trackback-list li {
  overflow: hidden;
  margin-top: -1px;
  padding: 20px 0 0;
  width: 100%;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid transparent;
}

.commets-list .avatar {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

.comment-meta,
.reply,
.comment-notes,
.form-allowed-tags,
span.small {
  font-size: 80%;
}

.comment-body p {
  clear: both;
}

.reply {
  text-align: right;
}

.children {
  padding-left: 2em;
}

#respond {
  margin-bottom: 40px;
}

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

          swiper

*****************************************/
/* #recommended{
	padding: 0 0 80px;
	background-color: #fff;
	box-shadow: 0px 1px 1px rgb(0 0 0 / 10%);
}

#recommended .swiper-slide{
	position: relative;
}
#recommended .swiper-slide .post-txt{
	text-align: center;
	margin: -15px 0 0;
	position: sticky;
	z-index: 1;
}
#recommended .swiper-slide .post-txt h2{
	font-size: 1rem;
	margin: 10px 0 0;
	font-weight: 700;
	line-height: 1.6;
}
#recommended .swiper-slide .post-txt h2 a{
	color: #333;
}
#recommended .swiper-slide .post-txt span.category{
	font-family: 'Josefin Sans', sans-serif;
	line-height: 1;
	font-size: 0.750rem;
	font-weight: 700;
}
#recommended .swiper-slide .post-txt span.category a{
	background-color: #fff;
	color: #f54949;
  padding: 10px 20px;
	border-radius: .15rem;
}


.swiper-slider2-button-prev,
.swiper-slider2-button-next {
	position: absolute;
	top: 42%;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #fff;
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(-50%);
}
.slider2 .swiper-button-pre:after,
.slider2 .swiper-button-next:after {
  content: '';
}
.swiper-slider2-button-prev i,
.swiper-slider2-button-next i{
	font-size: 0.625rem;
}
.swiper-pagination {
	left: 50%;
	transform: translate(-50%,0);
	position: absolute;
}
.swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  display: inline-block;
  border-radius: 100%;
  background: #ccc;
  outline: none;
  margin: 0 8px;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #353535;
}
#recommended .container{
  position: relative;
}
.swiper-slider2-button-prev {
  left:0;
}
.swiper-slider2-button-next {
  right: 0;
}
.slider2-pagenation-wrapper{
	margin-top: 15px;
} */
/****************************************

          CLASSIC EDITOR

*****************************************/
.mce-content-body h2 {
  background-color: #333;
  color: #fff;
  padding: 10px 15px;
}

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

          Sidebar

*****************************************/
#sidebar {
  margin: 45px 0 0;
}

#sidebar h3 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
}

.widget h3 {
  margin: 60px 0 10px;
  padding: 0 0 10px;
  border-bottom: 4px solid #333;
  font-size: 22px;
}

#sidebar .widget ul {
  padding-left: 1.5em;
  list-style-position: outside;
  list-style-type: disc;
}

#sidebar .widget.widget_categories ul {
  padding-left: 0;
  list-style-type: none;
}

#sidebar .widget.widget_categories ul li {
  font-family: "Josefin Sans", sans-serif;
  font-weight: bold;
}

#sidebar .widget.widget_categories ul li a {
  position: relative;
  padding: 10px 0 7px;
  border-bottom: 1px dotted #ccc;
  display: block;
}

#sidebar .widget.widget_categories ul li a:after {
  position: absolute;
  top: 50%;
  right: 5px;
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  margin-top: -4px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
}

.sidebar-thumbnail-box {
  float: left;
  width: 75px;
}

.sidebar-recent-posts-title {
  float: right;
  width: 165px;
}

#sidebar-recent-posts h3,
#sidebar-recent-posts p,
#sidebar-popular-posts h3,
#sidebar-popular-posts p {
  margin: 0;
}

.st-tag-cloud a {
  color: #555;
  white-space: nowrap;
  border: 1px solid #ccc;
  padding: 1px 10px;
  border-radius: 5px;
  font-size: 70%;
  display: inline-block;
  margin-bottom: 10px;
}

.st-tag-cloud a:hover {
  background-color: #212529;
  border: 1px solid #212529;
  color: #fff;
}

/* home */
.home .widget h4 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
}

/* popular posts */
aside#popular-posts img {
  width: 100%;
  height: auto;
}

.pop-post {
  margin-bottom: 40px;
}

.pop-post img {
  border-radius: 5px;
  margin-bottom: 10px;
}

.pop-post h4 {
  font-size: 16px;
  font-weight: lighter;
}

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

          Footer

*****************************************/
#footer {
  position: relative;
  padding: 50px 0 0;
  background-image: url(images/bg.webp);
  background-size: cover;
  background-position: center;
}

#footer::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.75);
}

#footer .row {
  align-items: center;
}

#footer .footer-inner {
  display: flex;
  justify-content: space-between;
  position: sticky;
  z-index: 1;
}

#footer .footer-inner figure {
  width: 23%;
}

#footer .footer-inner p {
  font-size: 12px;
  width: 70%;
  margin: 0;
}

#footer .footer-inner p a {
  display: block;
  margin: 10px 0 0;
  color: #1D9BF0;
}

#footer .footer-inner p a i {
  font-size: 20px;
}

#footer .contact {
  position: sticky;
  z-index: 1;
  background-color: #263238;
  color: #fff;
  padding: 25px;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 50px;
}

#footer .contact h6 {
  font-size: 2rem;
}

#footer .contact p {
  font-size: 12px;
}

#footer .contact a.contact-btn {
  display: block;
  background-color: #d2ff2d;
  padding: 8px 0 5px;
  border-radius: 30px;
  text-align: center;
  width: 100%;
  font-size: 14px;
}

#footer .contact a.contact-btn i {
  margin-left: 5px;
}

#footer .contact a.contact-btn:hover {
  background-color: #ffde00;
  color: #263238;
}

footer a {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 900;
}

#copyright {
  font-family: "Josefin Sans", sans-serif;
  position: sticky;
  z-index: 2;
  background-color: #222;
  color: #fff;
  margin: 40px 0 0;
  padding: 20px 0;
  font-size: 11px;
  text-align: center;
}

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

          WordPress Misc

*****************************************/
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.wp-caption {
  margin: 10px;
  padding-top: 4px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #f3f3f3;
  text-align: center;
}

.wp-caption-text,
.gallery-caption {
  font-size: 80%;
}

.wp-caption img {
  margin: 0;
  padding: 0;
  border: 0 none;
}

.wp-caption-dd {
  margin: 0;
  padding: 0 4px 5px;
  font-size: 11px;
  line-height: 17px;
}

img.alignright {
  display: inline-block;
  margin: 0 0 1em 1.5em;
}

img.alignleft {
  display: inline-block;
  margin: 0 1.5em 1em 0;
}

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

          Pagination

*****************************************/
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  position: relative;
  font-size: 13px;
}

.pagination span, .pagination a {
  display: block;
  width: auto;
  margin: 4px;
  padding: 8px;
  border: 1px solid #000;
  background-color: #fff;
  text-decoration: none;
  text-align: center;
  line-height: 16px;
}

/* ページ番号 */
.pagination .pager {
  width: 32px;
}

/* ホバー時 & 現在のページ */
.pagination a:hover,
.pagination .current {
  color: #fff;
  border-color: #000;
  background-color: #000;
}

/* 前へ */
.pagination a.prev {
  margin-right: 16px;
}

/* 次へ */
.pagination a.next {
  margin-left: 16px;
}

/* Page x / y */
.pagination span.page_num {
  display: none;
}

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

          CONTACT

*****************************************/
.page-template-page-contact main {
  padding: 100px 15px;
}

h2.contact-title {
  text-align: center;
  position: relative;
  padding: 20px 25px;
  border: solid 2px #35a6a6;
  color: #35a6a6;
  margin-bottom: 15px;
}

h2.contact-title:after {
  font-family: "Josefin Sans", sans-serif;
  position: absolute;
  content: "CONTACT";
  top: -10px;
  left: 15px;
  background: #FAFAFA;
  font-size: 1rem;
  color: #35a6a6;
  padding: 0 10px;
}

.mw_wp_form {
  margin-top: 50px;
}

.mw_wp_form label {
  font-weight: bold;
  margin-bottom: 10px;
  color: #35a6a6;
}

.mw_wp_form .btn {
  background-color: #35a6a6;
  color: #fff;
  width: 100%;
  font-weight: bold;
  padding: 10px 0;
}

.mw_wp_form a.back-link {
  background-color: #f64a4a;
  color: #fff;
  font-weight: bold;
  padding: 10px 30px;
  margin: 40px 0 0;
  display: inline-block;
  border-radius: 50px;
}

.mw_wp_form input,
.mw_wp_form textarea {
  margin-bottom: 25px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

a.privacy-link {
  text-decoration: underline;
  color: #1d9bf0;
}

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

          PRIVACY

*****************************************/
.privacy-policy main {
  padding: 100px 15px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

h2.privacy-title {
  margin-bottom: 50px;
}

h3.pp-title {
  margin-top: 50px;
  font-size: 20px;
}

.privacy-policy main a {
  text-decoration: underline;
  color: #1d9bf0;
}

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

          RESPO

*****************************************/
@media (min-width: 768px) {
  .d-sp {
    display: none;
  }
  .d-pc {
    display: inline-block;
  }
  #top h1,
  #top p {
    animation: none;
    font-size: 12px;
  }
  header {
    padding: 50px 0;
  }
  .home header {
    padding: 10px 0;
  }
  header img.custom-logo {
    width: 28px;
  }
  header .info {
    padding: 40px 0 0;
  }
  header .info p {
    font-size: 2rem;
  }
  .swiper-slider2-button-prev {
    left: -12px;
  }
  .swiper-slider2-button-next {
    right: -12px;
  }
  .swiper-slider2-button-prev,
  .swiper-slider2-button-next {
    width: 48px;
    height: 48px;
  }
  .swiper-slider2-button-prev i,
  .swiper-slider2-button-next i {
    font-size: 1rem;
  }
  .single ul.share-link {
    display: flex;
  }
  .single ul.share-link li span {
    display: inline-block;
  }
  .page-nav {
    flex-direction: row;
  }
  .page-nav li {
    width: 50%;
  }
  .page-nav li.prev-post {
    border-bottom: none;
    border-right: 1px solid #fff;
  }
  article.post {
    margin-bottom: 40px;
  }
  article.post h2.post-title {
    font-size: 2rem;
    margin: 15px 0;
  }
  #recommended .swiper-slide .post-txt h2 {
    margin: 20px 0 0;
  }
  .copy-button {
    padding: 20px 1em;
  }
  /* HOME */
  .home section {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 150px 0;
  }
  .home .section-title.left-alignment h2 {
    font-size: 18px;
    margin: 0 0 20px 0;
  }
  .home .section-title.left-alignment h3 {
    font-size: 3rem;
  }
  #about .shape-bg-green .circle,
  #service .shape-bg-green .circle,
  #trouble .shape-bg-green .circle,
  #contact01 .circle {
    width: 800px;
    height: 800px;
  }
  #service .shape-bg-red .circle {
    width: 600px;
    height: 600px;
  }
  #hero h2 {
    font-size: 4.8rem;
  }
  #hero h3 {
    margin: 0;
    font-size: 1rem;
  }
  .hero-img {
    position: inherit;
  }
  .shape-bg-green {
    top: 50%;
    right: 10%;
  }
  .shape-bg-red {
    top: -1%;
    right: -10%;
  }
  .shape-bg-red .circle,
  .shape-bg-green .circle {
    width: 600px;
    height: 600px;
  }
  #catch {
    padding: 50px 0 0;
  }
  #catch h2 {
    text-align: inherit;
    line-height: 1.2;
  }
  #catch figure {
    top: auto;
    bottom: 0;
    left: 0;
    width: 230px;
  }
  #cause {
    padding: 35px 0;
    margin: 50px calc(50% - 50vw) 0;
  }
  #cause ul li {
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    flex-direction: row;
  }
  #cause ul li span {
    margin-bottom: 0;
    margin-right: 15px;
  }
  #catch h2 strong {
    font-size: 120%;
  }
  #service .section-inner {
    gap: 50px 0;
  }
  .s-item {
    width: 48%;
  }
  .s-item .s-txt {
    padding: 30px 40px;
    width: 85%;
  }
  .s-item .s-txt h4 {
    bottom: 10%;
    font-size: 1.5rem;
    margin: 0 0 25px;
  }
  .s-item .s-txt p {
    margin: 0;
    font-size: 1rem;
    line-height: 160%;
  }
  #other-searvice {
    margin: 50px 0;
  }
  #other-searvice p {
    font-size: 1.4rem;
  }
  #other-searvice ul {
    gap: 40px 0;
  }
  #other-searvice ul li {
    width: 22%;
    font-size: 1rem;
    text-align: center;
    padding: 15px 0;
    background-size: 20px;
    background-position: left 25px center;
  }
  #service .shape-bg-red {
    top: 60%;
  }
  #about {
    padding: 0 0 80px;
  }
  #about .section-inner {
    margin: 50px 0 0;
    flex-direction: row;
  }
  #about .section-contents-left,
  #skills .slill-txt {
    width: 70%;
    order: 1;
  }
  #about .section-contents-right,
  #skills figure {
    width: 30%;
    text-align: center;
    order: 2;
  }
  #about img {
    width: 100%;
    height: auto;
    margin-bottom: 0;
    display: inline-block;
    position: sticky;
    top: auto;
    right: auto;
  }
  #about ul li strong {
    padding: 5px 0;
  }
  #trouble {
    padding: 150px 0;
  }
  #trouble h2 {
    padding: 0 60px;
    font-size: 3rem;
    line-height: 1;
    text-align: left;
    margin: 0 0 100px;
  }
  #trouble .section-title::before {
    left: -100px;
  }
  #trouble .section-title::after {
    right: -100px;
  }
  #trouble .section-contents {
    flex-direction: row;
  }
  #trouble .section-contents ul {
    order: 1;
    width: 68%;
    gap: 30px 0;
  }
  #trouble .section-contents.okomarigoto figure {
    order: 2;
    width: 30%;
    margin: 0;
  }
  #trouble .section-contents.okomarigoto figure img {
    width: 100%;
  }
  #trouble .section-contents ul li {
    width: 31%;
    padding: 45px;
    font-size: 1.18vw;
  }
  p.strong-point-txt {
    padding: 35px 45px 40px;
    border: 4px solid #333;
    box-shadow: 4px 4px 0 0 #c4c4c4;
    font-weight: 700;
    font-size: 26px;
    margin: 0 0 40px;
    background-color: #fff;
  }
  p.strong-point-txt:before {
    margin-left: -12px;
    border-width: 15px;
  }
  #campaign {
    padding-top: 150px;
  }
  #campaign .section-title p {
    font-size: 25px;
  }
  #campaign h2 {
    font-size: 2.5rem;
    text-align: center;
    padding: 15px 0;
    font-weight: 500;
    background-size: 28px;
    background-position: left 20px center;
    margin: 0 0 100px;
  }
  #campaign h2:before {
    left: -45px;
  }
  #campaign h2:after {
    right: -45px;
  }
  #campaign h2 span {
    padding: 30px 60px 20px;
  }
  #campaign .section-inner {
    gap: 50px 0;
  }
  .campaign-item {
    width: 48%;
    padding: 50px;
  }
  .campaign-item figure {
    left: 50px;
  }
  .campaign-item figure img {
    width: 65px;
  }
  #campaign p.attention {
    font-size: 80%;
    margin: 50px 0 0;
  }
  .strong-point {
    gap: 20px;
  }
  .strong-point li {
    padding: 5px 15px;
    border: 2px solid #333;
    font-weight: 600;
    font-size: 0.85rem;
  }
  .price-slider .price-box {
    padding: 50px;
  }
  .swiper-button-prev {
    left: -25px;
  }
  .swiper-button-next {
    right: -25px;
  }
  .swiper-button-disabled {
    pointer-events: none;
    opacity: 0;
  }
  .price-slider .swiper-slide:not(.swiper-slide-visible) .price-box {
    pointer-events: none;
    opacity: 0.3;
  }
  .price-box h4 {
    font-size: 25px;
  }
  .price-box ul li {
    font-size: 1rem;
  }
  #footer {
    padding: 150px 0 0;
  }
  #footer .footer-inner p {
    font-size: 1rem;
  }
  #footer .footer-inner p a {
    margin: 20px 0 0;
  }
  #footer .contact {
    padding: 50px;
    margin-bottom: 0;
  }
  #footer .contact p {
    font-size: 1rem;
  }
  #footer .contact a.contact-btn {
    padding: 8px 30px 5px;
    font-size: 1rem;
  }
  #footer .contact a.contact-btn i {
    margin-left: 25px;
  }
  #copyright {
    margin: 150px 0 0;
  }
}/*# sourceMappingURL=style.css.map */