@charset "UTF-8";
/* 日本語指定 */
/**********************

Theme Name: article lp

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

   base

**********************/
html {
  font-size: 62.5%;
  font-family: "游ゴシック", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  color: #000;
}

::-moz-selection {
  background: #c6ffff;
  color: #999;
}

::selection {
  background: #c6ffff;
  color: #999;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}
img.img {
  width: 100%;
}
img.ver_btm {
  vertical-align: bottom;
}

a {
  text-decoration: none;
  font-family: "游ゴシック", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
a.disabled {
  pointer-events: none;
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a,
p,
li,
th,
td,
dt,
dd {
  line-height: 1.5;
  font-size: 1.6rem;
}
@media screen and (max-width : 1200px) {
  a,
p,
li,
th,
td,
dt,
dd {
    font-size: 1.5rem;
  }
}
@media screen and (max-width : 600px) {
  a,
p,
li,
th,
td,
dt,
dd {
    font-size: 1.4rem;
  }
}

p {
  padding: 1% 0;
}

h1 a {
  display: block;
  width: 180px;
}

h2,
h3,
h4 {
  font-weight: bold;
  line-height: 1.3;
}

h2 {
  font-size: 3rem;
  padding: 12px;
  margin: 2rem 0 4rem;
}
@media screen and (max-width : 600px) {
  h2 {
    font-size: 2.8rem;
  }
}

h3 {
  font-size: 2.3rem;
  padding: 40px 0 10px;
}
@media screen and (max-width : 600px) {
  h3 {
    font-size: 2.1rem;
  }
}

h4 {
  font-size: 2rem;
  letter-spacing: 0;
  padding: 10px 0 5px;
  text-align: center;
}
@media screen and (max-width : 600px) {
  h4 {
    font-size: 1.6rem;
  }
}

h5 {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
@media screen and (max-width : 600px) {
  h5 {
    font-size: 1.2rem;
  }
}

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

container
margin

**********************/
.main {
  padding-top: 50px;
}

.container {
  width: 87%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .container {
    width: 90%;
  }
}
@media screen and (max-width : 600px) {
  .container {
    width: 95%;
  }
}

.container02 {
  width: 82%;
  margin: 0 auto;
  padding: 2rem 4rem;
}
@media screen and (max-width : 600px) {
  .container02 {
    width: 90%;
    padding: 2rem;
  }
}

.container03 {
  width: 90%;
  margin: 0 auto;
  padding: 2rem;
}

.m1 {
  margin: 1rem;
}

.mt3 {
  margin-top: 3rem;
}

.mt5 {
  margin-top: 5rem;
}
@media screen and (max-width : 600px) {
  .mt5 {
    margin-top: 3rem;
  }
}

.mt7 {
  margin-top: 7rem;
}
@media screen and (max-width : 600px) {
  .mt7 {
    margin-top: 5rem;
  }
}

.mb3 {
  margin-bottom: 3rem;
}

.mb7 {
  margin-bottom: 7rem;
}
@media screen and (max-width : 600px) {
  .mb7 {
    margin-bottom: 5rem;
  }
}

.pt7 {
  padding-top: 7rem;
}
@media screen and (max-width : 600px) {
  .pt7 {
    padding-top: 5rem;
  }
}

.pb7 {
  padding-bottom: 7rem;
}
@media screen and (max-width : 600px) {
  .pb7 {
    padding-bottom: 5rem;
  }
}

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

flex
grid

**********************/
.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex_cc, .pager_allpost, h1 a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.align_center {
  align-items: center;
}

.align_stretch {
  align-items: stretch;
}

.align_end {
  align-items: flex-end;
}

.space_between {
  justify-content: space-between;
}

.space_around {
  justify-content: space-around;
}

.flex_center {
  justify-content: center;
}

.flex_end {
  justify-content: flex-end;
}

.reverse {
  flex-direction: row-reverse;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 42px;
}
@media screen and (max-width : 1024px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width : 600px) {
  .grid {
    display: block;
  }
}

@media screen and (max-width : 600px) {
  .sp_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 23px;
    padding: 0 1.2rem;
  }
}

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

display none

**********************/
@media screen and (min-width: 601px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width : 600px) {
  .pc {
    display: none;
  }
}
/**********************

header

**********************/
.header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 888;
  background-color: #fff;
  border-bottom: 1px solid #d3d3d3;
  height: 50px;
}

.hamburger {
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
  z-index: 999;
  margin-left: 2rem;
}
.hamburger span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 5px;
  background: #000;
  width: 45%;
}
.hamburger span:nth-of-type(1) {
  top: 13px;
}
.hamburger span:nth-of-type(2) {
  top: 19px;
}
.hamburger span:nth-of-type(3) {
  top: 25px;
}
.hamburger span:nth-of-type(3)::after {
  content: "Menu";
  position: absolute;
  top: 5px;
  left: -2px;
  font-size: 0.6rem;
  text-transform: uppercase;
}

/*hamburger btn active*/
.hamburger.active span:nth-of-type(1) {
  top: 14px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active span:nth-of-type(3) {
  top: 26px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
.hamburger.active span:nth-of-type(3)::after {
  content: "Close";
  transform: translateY(0) rotate(-45deg);
  top: 5px;
  left: 4px;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  background: #e0edfb;
  overflow: auto;
  overscroll-behavior: contain;
  overflow-y: auto;
  z-index: 99;
}
.overlay .wrap {
  color: #e9e9e9;
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
}
.overlay .wrap .global_nav {
  border-bottom: 1px solid #6EB6FB;
  text-transform: capitalize;
  padding: 150px 0px 100px;
}
@media screen and (max-width: 768px) {
  .overlay .wrap .global_nav {
    padding: 30px 0px 0px;
    border-bottom: 0;
  }
}
.overlay .wrap .global_nav > li {
  font-size: 20px;
  display: inline-block;
  vertical-align: top;
  width: 24%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .overlay .wrap .global_nav > li {
    width: 100%;
    padding: 20px 0;
  }
}
.overlay .wrap .global_nav > li span {
  color: #6EB6FB;
  font-weight: bold;
  display: block;
  padding: 8px 0;
  text-decoration: none;
  transition-property: all 0.2s linear 0s;
}
.overlay .wrap .global_nav > li ul {
  padding: 20px 0;
}
.overlay .wrap .global_nav > li ul li {
  display: block;
  font-size: 13px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .overlay .wrap .global_nav > li ul li {
    padding: 20px 0;
    border-bottom: 1px solid #6EB6FB;
  }
}
.overlay .wrap .global_nav > li ul li a {
  color: #6EB6FB;
}
.overlay .wrap .global_nav > li ul li a:hover {
  color: #fff;
}

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

common

**********************/
.base_sec {
  padding: 5rem 0 8rem;
}
@media screen and (max-width : 600px) {
  .base_sec {
    padding: 3rem 0;
  }
}

.por {
  position: relative;
}

.mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
}

.gothic {
  font-family: "游ゴシック", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
}

.fz12 {
  font-weight: 500;
  font-size: 1.2rem;
}

.fz14 {
  font-size: 1.4rem;
}

.fz16 {
  font-size: 1.6rem;
}
@media screen and (max-width : 600px) {
  .fz16 {
    font-size: 1.4rem;
  }
}

.white {
  color: #fff;
}

.red {
  color: #FE666F;
}

.gray {
  color: #a3a3a3;
}

.bl {
  color: #6EB6FB;
}

.yl_marker {
  background: linear-gradient(transparent 70%, #FEFF8C 70%);
}

.bg_white {
  background-color: #fff;
}

.bg_gray {
  background-color: rgba(247, 247, 247, 0.5);
}

.bg_grad {
  background: linear-gradient(155deg, rgb(252, 216, 234) 0%, rgb(245, 208, 255) 100%);
}

.txt_center {
  text-align: center;
}

.txt_left {
  text-align: left;
}

.txt_right {
  text-align: right;
}

.txt_just {
  text-align: justify;
}

.txt_change {
  text-align: center;
}
@media screen and (max-width : 600px) {
  .txt_change {
    text-align: justify;
  }
}

.bold {
  font-weight: bold;
}

.breadcrumbs {
  margin: 0 auto;
  padding: 1.2rem 6rem;
  color: #a3a3a3;
  border-bottom: 1px solid #d3d3d3;
}
.breadcrumbs a:hover {
  opacity: 1;
}
.breadcrumbs a span {
  font-size: 1.4rem;
  color: #a3a3a3;
}
.breadcrumbs a span:hover {
  font-weight: bold;
}
.breadcrumbs span {
  font-size: 1.4rem;
  color: #a3a3a3;
}

time {
  display: inline-block;
  padding: 5px 0;
}
time span {
  display: flex;
  align-items: center;
  line-height: 1.3;
  color: #a3a3a3;
}
time span::before {
  content: "";
  background-image: url(../img/icon_time.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  padding-left: 3px;
}
time span.pl::before {
  content: "";
  background-image: url(../img/icon_re.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  padding-left: 3px;
}

/***************
searchform
search
***************/
.search_btn {
  background: #fff url("../img/icon.png") no-repeat 15px center;
  background-size: 20px 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

#search_wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s;
}
#search_wrap .search_area {
  display: none;
}
#search_wrap form {
  position: relative;
  height: 66px;
}
#search_wrap input {
  outline: none;
  cursor: pointer;
}
#search_wrap input[type=text] {
  width: 100%;
  padding: 20px;
  border: none;
  border-bottom: 2px solid rgba(247, 247, 247, 0.5);
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.5s;
  letter-spacing: 0.05em;
}
#search_wrap input[type=text]:focus {
  background: rgba(247, 247, 247, 0.5);
}
#search_wrap input[type=submit] {
  position: absolute;
  top: 0;
  right: 10px;
  background: url("../img/icon.png") no-repeat 15px center;
  background-size: 25px 25px;
  width: 50px;
  height: 55px;
  border: none;
}

/* search btn active */
#search_wrap.active {
  opacity: 1;
  z-index: 1000;
  background: #ffdbff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}
#search_wrap.active .search_area {
  display: block;
  width: 80%;
  position: relative;
}

.search_close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
.search_close span {
  display: inline-block;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #000;
}
.search_close span:nth-of-type(1) {
  top: 14px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.search_close span:nth-of-type(2) {
  top: 26px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
.search_close span:nth-of-type(2)::after {
  content: "Close";
  transform: translateY(0) rotate(-45deg);
  position: absolute;
  top: 5px;
  left: 4px;
}

.search_item {
  margin: 1.5rem 0;
  padding: 1.5rem 2rem;
  border: 1px solid #e5e5e5;
  background-color: #fff;
}
.search_item > p {
  width: 25%;
}
@media screen and (max-width : 450px) {
  .search_item > p {
    width: 100%;
  }
}
.search_item > div {
  width: 75%;
  padding-left: 2rem;
}
@media screen and (max-width : 450px) {
  .search_item > div {
    width: 100%;
    padding: 2rem;
  }
}
.search_item a {
  display: block;
}
.search_item a:hover {
  color: #a3a3a3;
}

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

front-page

**********************/
section.mv {
  position: relative;
  overflow-x: hidden;
}

.metaslider .flex-viewport {
  overflow: visible !important;
}

h2.new {
  position: relative;
  display: inline-block;
}
h2.new::after {
  content: "New";
  font-family: serif;
  font-size: 2.2rem;
  margin-right: 4px;
  -webkit-animation: blinkEffect 2s ease-in-out infinite alternate;
          animation: blinkEffect 2s ease-in-out infinite alternate;
  position: absolute;
  top: -1.1rem;
  right: -2.4rem;
  transform: rotate(23deg);
}

@-webkit-keyframes blinkEffect {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.7;
  }
}

@keyframes blinkEffect {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.7;
  }
}
/**********************

front-page
allpost
category　共通

**********************/
.ttl span {
  position: relative;
}
.ttl span::after {
  content: "•";
  position: absolute;
  top: -1.4rem;
  right: -1.2rem;
}
.ttl span.c01::after {
  color: #FE4353;
}
.ttl span.c02::after {
  color: #FE43A4;
}

.top_post_item {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 3rem;
}
@media screen and (max-width : 600px) {
  .top_post_item {
    margin-bottom: 5.4rem;
  }
}
.top_post_item:hover::before {
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.top_post_item::before {
  content: "";
  background-color: #fff;
  position: absolute;
  width: 108%;
  height: 108%;
  left: -4%;
  top: -4%;
  border-radius: 0 30px 0 0;
  z-index: -1;
  border: 1px solid #e8e8e8;
  transition: all 0.4s;
}
.top_post_item > div {
  padding: 0;
}
.top_post_item > div > a {
  height: 150px;
  overflow: hidden;
  display: block;
  border-radius: 0 20px 0 0;
}
.top_post_item .top_post_item_in {
  padding: 1rem 1rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.top_post_item .top_post_item_in > a {
  position: relative;
  height: 100%;
  display: block;
}
.top_post_item .top_post_item_in > a:hover h3, .top_post_item .top_post_item_in > a:hover p {
  color: #a3a3a3;
}
.top_post_item .top_post_item_in > a h3 {
  font-size: 1.8rem;
  position: relative;
  display: inline-block;
  border-bottom: none;
  padding: 2% 0;
  margin: 0;
}

.post_item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  width: 50%;
  position: relative;
}
@media screen and (max-width : 900px) {
  .post_item {
    width: 77%;
    margin: 0 auto 2.2rem;
  }
}
@media screen and (max-width : 600px) {
  .post_item {
    width: 92%;
  }
}
.post_item:hover::before {
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.post_item::before {
  content: "";
  position: absolute;
  width: 98%;
  height: 103%;
  left: -4%;
  top: -4%;
  border-radius: 15px;
  z-index: -1;
  border: 1px solid #e8e8e8;
  transition: all 0.4s;
}
@media screen and (max-width : 900px) {
  .post_item::before {
    width: 105%;
  }
}
.post_item > div:first-of-type {
  width: 40%;
  height: auto;
  padding: 0;
}
.post_item > div:first-of-type > a {
  display: block;
  padding: 1.2rem 0;
}
.post_item > div:first-of-type > a img {
  border-radius: 10px;
}
.post_item .post_item_in {
  width: 54%;
}
@media screen and (max-width : 600px) {
  .post_item .post_item_in {
    width: 100%;
  }
}
.post_item .post_item_in a {
  display: flex;
  padding: 2rem 2rem 2rem 1.4rem;
  width: 100%;
  height: 100%;
}
@media screen and (max-width : 900px) {
  .post_item .post_item_in a {
    padding: 0 2.2rem 0 1rem;
  }
}
@media screen and (max-width : 600px) {
  .post_item .post_item_in a {
    padding: 0 0 0 1.4rem;
    display: block;
  }
}
.post_item .post_item_in a:hover {
  opacity: 1;
}
.post_item .post_item_in a:hover h3, .post_item .post_item_in a:hover p {
  color: #a3a3a3;
}
.post_item .post_item_in a h3 {
  font-size: 1.8rem;
  padding: 0;
  margin: 0;
}
@media screen and (max-width : 600px) {
  .post_item .post_item_in a h3 {
    font-size: 1.6rem;
  }
}

.cat_post_item {
  display: flex;
  width: 48%;
  margin: 1%;
  padding: 1rem 0;
}
@media screen and (max-width : 900px) {
  .cat_post_item {
    width: 77%;
    margin: 0 auto;
  }
}
@media screen and (max-width : 600px) {
  .cat_post_item {
    width: 87%;
  }
}
.cat_post_item > div:first-of-type {
  width: 40%;
  height: auto;
  padding: 0;
}
@media screen and (max-width : 600px) {
  .cat_post_item > div:first-of-type {
    width: 80%;
  }
}
.cat_post_item > div:first-of-type > a {
  display: block;
}
@media screen and (max-width : 600px) {
  .cat_post_item > div:first-of-type > a {
    height: 130px;
    overflow: hidden;
    border-radius: 10px;
  }
}
.cat_post_item > div:first-of-type > a img {
  border-radius: 10px;
}
.cat_post_item .cat_post_item_in {
  background-color: #fff;
  padding: 2rem 3rem 2.2rem 1.4rem;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width : 900px) {
  .cat_post_item .cat_post_item_in {
    padding: 0 2.2rem 0 1rem;
  }
}
@media screen and (max-width : 600px) {
  .cat_post_item .cat_post_item_in {
    width: 100%;
    padding: 0 0 0 1.4rem;
  }
}
.cat_post_item .cat_post_item_in a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.cat_post_item .cat_post_item_in a:hover {
  opacity: 1;
}
.cat_post_item .cat_post_item_in a:hover h3, .cat_post_item .cat_post_item_in a:hover p {
  color: #a3a3a3;
}
.cat_post_item .cat_post_item_in a h3 {
  font-size: 1.8rem;
  padding: 0;
  margin: 0;
}
@media screen and (max-width : 600px) {
  .cat_post_item .cat_post_item_in a h3 {
    font-size: 1.6rem;
  }
}

.more_btn.tac {
  text-align: center;
}
.more_btn.tar {
  text-align: right;
  margin-right: 8rem;
}
@media screen and (max-width : 600px) {
  .more_btn.tar {
    text-align: center;
    margin-right: 0;
  }
}
.more_btn a {
  position: relative;
  border: 1px solid #000;
  padding: 8px 50px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #000;
  outline: none;
  transition: all 0.2s linear;
}
.more_btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  width: 40px;
  height: 1px;
  background: #000;
  transition: all 0.2s linear;
}
.more_btn a::after {
  content: "";
  position: absolute;
  top: 32%;
  right: -23px;
  width: 1px;
  height: 7px;
  background: #000;
  transform: skewX(45deg);
  transition: all 0.2s linear;
}
.more_btn a:hover {
  background: #d8eafc;
  color: #000;
  opacity: 1;
}
.more_btn a:hover::before {
  right: -30px;
}
.more_btn a:hover::after {
  right: -27px;
}

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

カテゴリー名取得
全ページ共通

**********************/
p.category {
  line-height: 1;
  padding: 0;
}
p.category a {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0;
  padding: 4px 8px 4px 0;
  display: inline-block;
}
@media screen and (max-width : 900px) {
  p.category a {
    font-size: 1rem;
  }
}

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

footer

**********************/
.top_btn {
  display: none;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 3rem;
  bottom: 2rem;
  opacity: 0.7;
  z-index: 222;
}
@media screen and (max-width : 600px) {
  .top_btn {
    display: none;
  }
}
.top_btn a {
  position: relative;
  display: block;
  padding: 0 0 0 16px;
}
.top_btn a::before, .top_btn a::after {
  position: absolute;
  margin: auto;
  content: "";
}
.top_btn a::before {
  top: 0;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  border: 1px solid #a3a3a3;
  border-radius: 50%;
}
.top_btn a::after {
  left: 19px;
  top: -3px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #a3a3a3;
  border-right: 1px solid #a3a3a3;
  transform: rotate(315deg);
}
.top_btn a:hover::before {
  background-color: #a3a3a3;
}
.top_btn a:hover::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.tag_dl dd {
  display: flex;
}
.tag_dl dd li {
  margin: 6px 4px;
}
.tag_dl dd li a {
  padding: 4px 8px;
  border-radius: 3px;
  border: 1px solid #000;
  background: rgba(255, 255, 255, 0.6);
}
.tag_dl dd li a:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  opacity: 1;
  background: #fff;
}

footer {
  background: url(../img/line_logo.svg) no-repeat center bottom;
  background-size: contain;
}
footer nav {
  padding: 2rem 4rem 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 3fr));
}
@media screen and (max-width : 900px) {
  footer nav {
    padding: 4rem 0rem;
    grid-template-columns: repeat(auto-fit, minmax(120px, 3fr));
  }
}
@media screen and (max-width : 600px) {
  footer nav {
    grid-template-columns: repeat(auto-fit, minmax(150px, 3fr));
  }
}
footer nav > li {
  border-right: 1px solid #a3a3a3;
  text-align: center;
}
@media screen and (max-width : 600px) {
  footer nav > li {
    text-align: left;
    border-right: none;
  }
}
footer nav > li:last-of-type {
  border-right: none;
}
footer nav > li span {
  font-weight: bold;
}
@media screen and (max-width : 600px) {
  footer nav > li span {
    display: block;
    border-bottom: 1px solid;
    margin: 0 5px;
    padding: 5px 2px;
  }
}
footer nav > li ul {
  margin: 1rem auto;
}
@media screen and (max-width : 600px) {
  footer nav > li ul {
    margin: 5px auto 2rem;
    padding: 0 6px;
  }
}
footer nav > li ul li {
  line-height: 1.6;
  margin: 3px 5px;
  border-radius: 3px;
}
@media screen and (max-width : 600px) {
  footer nav > li ul li {
    line-height: 2;
  }
}
footer nav > li ul li a {
  display: block;
}
footer nav > li ul li a:hover {
  opacity: 1;
}
footer nav > li ul li a.c01:hover {
  background-color: #ffdbff;
}
footer nav > li ul li a.c02:hover {
  background-color: #d6ffd6;
}
footer nav > li ul li a.c03:hover {
  background-color: #d8eafc;
}
footer p {
  padding: 1% 0 3%;
}

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

404.php

**********************/
.error_404 {
  padding-top: 180px;
  margin-bottom: 100px;
}

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

single.php

**********************/
/* プラグインadd this */
span.at-label {
  color: #fff;
}

/* 投稿内のcssは editor-style 記述 */
.single_article {
  margin: 4rem auto 5rem;
}
@media screen and (max-width : 600px) {
  .single_article {
    width: 100%;
  }
}
.single_article h1 {
  font-size: 3rem;
  font-weight: 600;
  padding: 2rem;
  margin: 1rem 0 4rem;
  display: block;
  text-align: left;
  line-height: 1.6;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width : 900px) {
  .single_article h1 {
    font-size: 2.4rem;
    padding: 1rem;
    margin: 1rem 0 3rem;
  }
}
@media screen and (max-width : 600px) {
  .single_article h1 {
    font-size: 2rem;
  }
}
.single_article h1:after, .single_article h1:before {
  content: none;
  text-align: left;
}

/* 目次 */
.page_nav {
  border: double 5px rgba(110, 182, 251, 0.2);
  background-color: rgba(110, 182, 251, 0.05);
  width: 88%;
  padding: 3rem 2rem 3rem 6rem;
  margin: 3rem auto 6rem;
}
@media screen and (max-width : 600px) {
  .page_nav {
    padding: 3rem 2rem 3rem 4rem;
  }
}
@media screen and (max-width : 450px) {
  .page_nav {
    width: 100%;
  }
}
.page_nav p {
  margin-bottom: 0;
  text-align: left;
  font-size: 2rem;
  color: #6EB6FB;
  position: relative;
}
@media screen and (max-width : 600px) {
  .page_nav p {
    font-size: 1.8rem;
  }
}
.page_nav p::before {
  content: "";
  background: url(../img/icon_toc.png) no-repeat;
  width: 15px;
  height: 15px;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}
.page_nav #toc > ol li {
  list-style-type: decimal;
  line-height: 1.8;
  margin: 4px 0;
}
.page_nav #toc > ol li a {
  display: block;
  text-decoration: none;
  font-size: 1.6rem;
}
@media screen and (max-width : 600px) {
  .page_nav #toc > ol li a {
    font-size: 1.4rem;
  }
}
.page_nav #toc > ol li a:hover {
  font-weight: bold;
  opacity: 1;
}
.page_nav #toc > ol li a span:hover {
  font-weight: bold;
}
.page_nav #toc > ol li a br {
  display: none;
}
.page_nav #toc > ol > ol > li {
  list-style: none;
}
.page_nav #toc > ol > ol > li a::before {
  content: "- ";
}

/* single用広告スペース */
.add_box {
  border: 1px solid #e5e5e5;
  padding: 2rem;
  margin-top: 2rem;
  position: relative;
}
.add_box::before {
  content: "広告";
  color: #fff;
  background-color: #c1c1c1;
  font-size: 12px;
  width: 35px;
  height: 20px;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.add_box a {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width : 600px) {
  .add_box a {
    font-size: 1.8rem;
  }
}
.add_box img {
  max-width: 230px;
}
@media screen and (max-width : 450px) {
  .add_box img {
    max-width: 90%;
  }
}

/* single用pager */
.post__pagination .post__pagination__right, .post__pagination .post__pagination__left {
  width: 330px;
}
@media screen and (max-width : 600px) {
  .post__pagination .post__pagination__right, .post__pagination .post__pagination__left {
    width: 100%;
  }
}
.post__pagination .post__pagination__right::before, .post__pagination .post__pagination__left::before {
  content: attr(data-label);
  display: block;
  color: #a3a3a3;
  font-weight: normal;
  font-family: "Arial", sans-serif;
}

.post__pagination .post__pagination__right a, .post__pagination .post__pagination__left a {
  display: block;
  transition: all 0.5s;
  position: relative;
  font-weight: bold;
  font-size: 14px;
}
.post__pagination .post__pagination__right a:hover, .post__pagination .post__pagination__left a:hover {
  opacity: 1;
  text-decoration: underline;
}

.post__pagination .post__pagination__right a::after, .post__pagination .post__pagination__left a::after {
  position: absolute;
  content: "";
  bottom: calc(50% - 5px);
  border-top: 5px solid #000;
  border-left: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #000;
}

.post__pagination {
  margin-bottom: 5rem;
  overflow: hidden;
}
.post__pagination .post__pagination__left {
  float: left;
  margin-top: 12px;
}
.post__pagination .post__pagination__left a {
  padding: 2rem 2rem 2rem 4rem;
}
.post__pagination .post__pagination__left a::after {
  left: 10px;
  transform: rotate(225deg);
}
.post__pagination .post__pagination__right {
  float: right;
  text-align: right;
  margin-top: 12px;
}
.post__pagination .post__pagination__right a {
  padding: 2rem 4rem 2rem 2rem;
}
.post__pagination .post__pagination__right a::after {
  right: 10px;
  transform: rotate(45deg);
}

/***************
parts post
***************/
dl.parts_post dt, .tag_dl dt {
  font-weight: bold;
  font-size: 2.4rem;
  margin-bottom: 1rem;
  padding: 12px;
}
@media screen and (max-width : 600px) {
  dl.parts_post dt, .tag_dl dt {
    font-size: 2rem;
  }
}

dl.parts_post dt {
  padding: 50px 0 12px;
  position: relative;
}
dl.parts_post dt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(247, 247, 247, 0.5);
}
dl.parts_post dt::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 2px;
  background: #a3a3a3;
}
dl.parts_post dd {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  margin-bottom: 7rem;
}
dl.parts_post dd:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width : 1024px) {
  dl.parts_post dd {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width : 600px) {
  dl.parts_post dd {
    display: block;
  }
}
dl.parts_post dd > div {
  max-width: 350px;
  display: flex;
  flex-direction: column;
  border-radius: 0 20px 0 0;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
@media screen and (max-width : 600px) {
  dl.parts_post dd > div {
    margin-bottom: 3.2rem;
  }
}
dl.parts_post dd > div:hover {
  box-shadow: none;
  transition: all 0.4s;
}
dl.parts_post dd > div > p {
  padding: 0;
}
dl.parts_post dd > div > p a {
  height: 150px;
  display: block;
  overflow: hidden;
  border-radius: 0 20px 0 0;
}
dl.parts_post dd > div > p img {
  vertical-align: bottom;
}
dl.parts_post dd > div > div {
  height: 100%;
}
dl.parts_post dd > div > div > a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 2rem 2rem 2.4rem;
}
dl.parts_post dd ul.post_cat li {
  display: inline-block;
  padding: 3px 1rem;
  margin: 0 0 5px;
}
dl.parts_post dd ul.post_cat li a {
  font-size: 1.6rem;
}
@media screen and (max-width : 600px) {
  dl.parts_post dd ul.post_cat li a {
    font-size: 1.4rem;
  }
}
dl.parts_post dd.sidebar_lank > div > div {
  padding: 2rem 2rem 2.4rem;
}
dl.parts_post dd.sidebar_lank > div > div a {
  padding: 0;
}

/* %post_dt line color change */
.bg_gray dl.parts_post dt::before {
  background: #c2c2c2;
}
.bg_gray dl.parts_post dt::after {
  background: #000;
}

/***************
pager
***************/
.pager {
  margin-top: 5rem;
}
.pager .posts-navigation {
  border-top: 1px solid #000;
  padding: 20px 0;
  margin: 3.5rem auto;
}
.pager .nav-links {
  display: flex;
  justify-content: space-between;
}
.pager .nav-previous,
.pager .nav-next {
  display: inline-block;
}
.pager .nav-previous a,
.pager .nav-next a {
  font-weight: normal;
}

.pager_allpost .page-numbers {
  padding: 3px 6px;
  margin: 0 2px;
}
.pager_allpost .page-numbers.prev, .pager_allpost .page-numbers.next {
  font-size: 1.5rem;
}
.pager_allpost span.page-numbers.current {
  font-size: 1.7rem;
  padding: 4px 6px;
  background-color: #000;
  color: #fff;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

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

contact

**********************/
/* フォームのテンプレート template01 */
.form__wrap {
  width: 90%;
  max-width: 900px;
  /*フォームの最大幅*/
  margin-right: auto;
  margin-left: auto;
}

.wpcf7 .template01 {
  color: #333;
  font-size: 16px;
}
.wpcf7 .template01 a {
  margin: 0;
  padding: 0;
  text-decoration: underline;
  color: inherit;
  transition: opacity 0.25s;
}
.wpcf7 .template01 a:hover {
  opacity: 0.5;
  transition: opacity 0.25s;
}
.wpcf7 .template01 div.form__row {
  margin: 0;
  padding: 0;
  margin-top: 2em;
}
.wpcf7 .template01 div.form__row.row-privacy {
  margin-top: 3.5em;
  text-align: center;
}
.wpcf7 .template01 p.form__label,
.wpcf7 .template01 p.form__body {
  margin: 0;
  margin-bottom: 2%;
  padding: 0;
  box-sizing: border-box;
}
.wpcf7 .template01 p.form__label label {
  position: relative;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.wpcf7 .template01 p.form__label.is-required label {
  padding-left: 45px;
}
.wpcf7 .template01 p.form__label.is-optional label::after, .wpcf7 .template01 p.form__label.is-required label::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  color: #fff;
  text-align: center;
  font-size: 11px;
  padding: 2px;
  border-radius: 3px;
  box-sizing: border-box;
}

.wpcf7 .template01 p.form__label.is-required label::after {
  content: "必須";
  background: #f00;
}
.wpcf7 .template01 p.form__label.is-optional label {
  padding-left: 45px;
}
.wpcf7 .template01 p.form__label.is-optional label::after {
  content: "任意";
  background: #5c5c5c;
}

/* テキストフィールド */
.wpcf7 .template01 input[type=text],
.wpcf7 .template01 input[type=tel],
.wpcf7 .template01 input[type=email],
.wpcf7 .template01 input[type=url],
.wpcf7 .template01 input[type=date],
.wpcf7 .template01 input[type=number],
.wpcf7 .template01 textarea {
  width: 100%;
  margin: 0;
  padding: 0.5em 1em;
  border: 1px solid #ccc;
  border-radius: 0;
  box-shadow: none;
  background-color: #fff;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* テキストフィールド placeholder */
.wpcf7 .template01 input[type=text]::-moz-placeholder, .wpcf7 .template01 input[type=tel]::-moz-placeholder, .wpcf7 .template01 input[type=email]::-moz-placeholder, .wpcf7 .template01 input[type=url]::-moz-placeholder, .wpcf7 .template01 input[type=date]::-moz-placeholder, .wpcf7 .template01 input[type=number]::-moz-placeholder, .wpcf7 .template01 textarea::-moz-placeholder {
  color: #ccc;
}
.wpcf7 .template01 input[type=text]::placeholder,
.wpcf7 .template01 input[type=tel]::placeholder,
.wpcf7 .template01 input[type=email]::placeholder,
.wpcf7 .template01 input[type=url]::placeholder,
.wpcf7 .template01 input[type=date]::placeholder,
.wpcf7 .template01 input[type=number]::placeholder,
.wpcf7 .template01 textarea::placeholder {
  color: #ccc;
}

.wpcf7 .template01 input[type=text]:-ms-input-placeholder,
.wpcf7 .template01 input[type=tel]:-ms-input-placeholder,
.wpcf7 .template01 input[type=email]:-ms-input-placeholder,
.wpcf7 .template01 input[type=url]:-ms-input-placeholder,
.wpcf7 .template01 input[type=date]:-ms-input-placeholder,
.wpcf7 .template01 input[type=number]:-ms-input-placeholder,
.wpcf7 .template01 textarea:-ms-input-placeholder {
  color: #ccc;
}

.wpcf7 .template01 input[type=text]::-ms-input-placeholder,
.wpcf7 .template01 input[type=tel]::-ms-input-placeholder,
.wpcf7 .template01 input[type=email]::-ms-input-placeholder,
.wpcf7 .template01 input[type=url]::-ms-input-placeholder,
.wpcf7 .template01 input[type=date]::-ms-input-placeholder,
.wpcf7 .template01 input[type=number]::-ms-input-placeholder,
.wpcf7 .template01 textarea::-ms-input-placeholder {
  color: #ccc;
}

/* テキストフィールド フォーカス時 */
.wpcf7 .template01 input[type=text]:focus,
.wpcf7 .template01 input[type=tel]:focus,
.wpcf7 .template01 input[type=email]:focus,
.wpcf7 .template01 input[type=url]:focus,
.wpcf7 .template01 input[type=date]:focus,
.wpcf7 .template01 input[type=number]:focus,
.wpcf7 .template01 textarea:focus {
  outline: 0;
  border: 1px #080808 solid;
}

/* チェックボックス */
.wpcf7 .template01 input[type=checkbox] {
  display: none;
}
.wpcf7 .template01 input[type=checkbox] + span {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0 1em 0 1.8em;
  font-size: inherit;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
  line-height: 1.5;
}
.wpcf7 .template01 input[type=checkbox] + span::before {
  content: "";
  opacity: 1;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.24em;
  height: 1.24em;
  border: 1px solid #ccc;
  border-radius: 0;
  background-color: #fff;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
  z-index: 1;
}
.wpcf7 .template01 input[type=checkbox] + span::after {
  content: "";
  opacity: 0;
  display: block;
  position: absolute;
  top: 0.15em;
  left: 0.44em;
  width: 0.4em;
  height: 0.8em;
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
  box-sizing: border-box;
  transform: rotate(40deg);
  transition: opacity 0.25s ease;
  z-index: 10;
}
.wpcf7 .template01 input[type=checkbox]:checked + span::before {
  opacity: 1;
  transition: opacity 0.25s ease;
}
.wpcf7 .template01 input[type=checkbox]:checked + span::after {
  opacity: 1;
  border-bottom: 2px solid #306ad4;
  border-right: 2px solid #306ad4;
  transition: opacity 0.25s ease;
}

/* ラジオボタン */
.wpcf7 .template01 input[type=radio] {
  display: none;
}
.wpcf7 .template01 input[type=radio] + span {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0 1em 0 1.8em;
  font-size: inherit;
  transition: opacity 0.25s ease;
}
.wpcf7 .template01 input[type=radio] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  border: 1px solid #ccc;
  border-radius: 50%;
  background-color: #fff;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}
.wpcf7 .template01 input[type=radio] + span::after {
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}
.wpcf7 .template01 input[type=radio]:checked + span::after {
  opacity: 1;
  top: 0.2em;
  left: 0.2em;
  width: 0.6em;
  height: 0.6em;
  background-color: #306ad4;
  border-radius: 50%;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}

/* セレクト */
.wpcf7 .template01 span.select-wrap {
  position: relative;
  width: 250px;
  margin: 0;
  padding: 0;
}

.wpcf7 .template01 select {
  cursor: pointer;
  max-width: 100%;
  margin: 0;
  padding: 0.5em 2.5em 0.5em 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: none;
  background-color: #fff;
  color: inherit;
  font-size: inherit;
  line-height: 1;
  box-sizing: border-box;
  transition: border-color 0.2s ease, outline 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.wpcf7 .template01 select::-ms-expand {
  display: none;
}

.wpcf7 .template01 span.select-wrap::after {
  content: "";
  pointer-events: none;
  position: absolute;
  display: block;
  width: 0.6em;
  height: 0.6em;
  top: 50%;
  right: 1.5em;
  margin-top: -3px;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: 50% 0;
  box-sizing: border-box;
}

.wpcf7 .template01 select:focus {
  outline: 0;
  border: 1px #080808 solid;
}

.wpcf7 .template01 span.select-wrap:focus-within::after {
  border-bottom: 1px solid #080808;
  border-right: 1px solid #080808;
}

/* 送信ボタン */
.wpcf7 .template01 .submit-btn {
  position: relative;
  width: 320px;
  height: 65px;
  max-width: 100%;
  margin: 0;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}

.wpcf7 .template01 input[type=submit] {
  cursor: pointer;
  width: 320px;
  max-width: 100%;
  padding: 18px;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
  font-size: 18px;
  text-align: center;
  box-sizing: border-box;
  transition: opacity 0.25s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.wpcf7 .template01 input[type=submit]:disabled {
  cursor: not-allowed;
  box-shadow: none !important;
  border: 1px solid #f8f8f8 !important;
  background-color: #f8f8f8 !important;
  color: #999 !important;
}

.wpcf7 .template01 input[type=submit]:hover {
  background-color: #fff;
  color: #000;
  transition: opacity 0.25s, background-color 0.25s;
}

.wpcf7 .template01 input[type=submit]:focus {
  outline: 1px #eee solid;
  border: 1px #080808 solid;
}

.wpcf7 .template01 span.wpcf7-list-item {
  margin: 0 1em 0.2em 0;
}

.wpcf7 .template01 .ajax-loader {
  display: block;
}

@media only screen and (max-width: 768px) {
  .wpcf7 .template01 span.wpcf7-list-item {
    display: block;
  }
}
/*プライバシーポリシーの説明*/
.contact_privacy {
  margin-bottom: 80px;
}
.contact_privacy p {
  line-height: 1.5em;
}

.contact_privacy_ttl {
  margin-top: 20px;
  font-weight: bold;
}
/*# sourceMappingURL=style.css.map */