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

Theme Name: kukuna_kobo

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

   base

**********************/
html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  scroll-behavior: smooth;
  background-color: #fff;
}

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

img {
  border: 0;
  max-width: 100%;
  height: auto;
}
img.img {
  width: 100%;
}
img.r45 {
  border-radius: 45px;
}
@media screen and (max-width : 1024px) {
  img.r45 {
    border-radius: 22px;
  }
}
img.vab {
  vertical-align: bottom;
}

a {
  text-decoration: none;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", 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 {
  letter-spacing: 0.1rem;
  line-height: 1.5;
  font-size: 1.6rem;
}
@media screen and (max-width : 1300px) {
  a,
p,
li,
th,
td,
dt,
dd {
    font-size: 1.5rem;
  }
}
@media screen and (max-width : 1024px) {
  a,
p,
li,
th,
td,
dt,
dd {
    font-size: 1.4rem;
  }
}

p {
  padding: 1% 0;
}

h2,
h3,
h4 {
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

h2 {
  font-size: 3.4rem;
  padding: 12px;
  font-family: "Kiwi Maru", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
@media screen and (max-width : 900px) {
  h2 {
    font-size: 3rem;
  }
}
@media screen and (max-width : 600px) {
  h2 {
    font-size: 2.2rem;
  }
}

h3 {
  font-size: 3.4rem;
  padding: 40px 0 10px;
}
@media screen and (max-width : 1300px) {
  h3 {
    font-size: 2.9rem;
  }
}
@media screen and (max-width : 600px) {
  h3 {
    font-size: 2.2rem;
    padding: 20px 0 10px;
  }
}

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

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

title

**********************/
.sec_ttl_icon {
  display: block;
  margin: 0 auto 1rem;
  width: 33px;
}

.sec_ttl_sub {
  font-size: 1.6rem;
  padding: 1% 0 0;
}
@media screen and (max-width : 798px) {
  .sec_ttl_sub {
    font-size: 1.4rem;
  }
}

.sec_ttl_jp {
  font-size: 4rem;
}
@media screen and (max-width : 798px) {
  .sec_ttl_jp {
    font-size: 3rem;
  }
}

.sec_ttl_en {
  color: #F39800;
  font-weight: bold;
  font-size: 1.9rem;
  padding: 0;
}
@media screen and (max-width : 798px) {
  .sec_ttl_en {
    font-size: 1.7rem;
  }
}

.sec_ttl_en02 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 3.8rem;
}
@media screen and (max-width : 798px) {
  .sec_ttl_en02 {
    font-size: 3.2rem;
  }
}

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

display none

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

display
flex,grid,inline-block

**********************/
.dib {
  display: inline-block;
}

.dit {
  display: table;
  margin: 0 auto;
}

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

.flex_cc, .pager_allpost, .allpost_post_item > div:first-of-type > a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex_column_c {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aic {
  align-items: center;
}

.ais {
  align-items: stretch;
}

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

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

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

.jcc {
  justify-content: center;
}

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

.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width : 600px) {
  .reverse {
    flex-direction: unset;
  }
}

/* allpost */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 27px;
}
@media screen and (max-width : 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
  }
}
@media screen and (max-width : 600px) {
  .grid {
    padding: 0;
    gap: 17px 8px;
  }
}
@media screen and (max-width : 460px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* post item */
.grid02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 21px 36px;
}
@media screen and (max-width : 1024px) {
  .grid02 {
    gap: 17px;
  }
}
@media screen and (max-width : 798px) {
  .grid02 {
    grid-template-columns: 1fr;
  }
}

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

button

**********************/
.btn_pill {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  padding: 2rem 3.6rem;
  border-radius: 41px;
  background-color: #F39800;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  min-width: 300px;
  position: relative;
}
@media screen and (max-width : 600px) {
  .btn_pill {
    min-width: 80%;
  }
}
.btn_pill::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.btn_more {
  padding: 1rem 2.6rem;
  border: 1px solid #6d6d6d;
  border-radius: 50vh;
  font-weight: bold;
  font-size: 1.5rem;
  background-color: #fff;
}

.arrow_circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.7rem;
  height: 4.7rem;
  border-radius: 50%;
  background-color: #F39800;
  border: 1px solid #fff;
  background-image: url(../img/icon/arrow_white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2.2rem;
}
@media screen and (max-width : 798px) {
  .arrow_circle {
    width: 4rem;
    height: 4rem;
  }
}

p.arrow_btn {
  position: relative;
}
p.arrow_btn a {
  text-decoration: underline;
}
p.arrow_btn .arrow_circle {
  position: absolute;
  top: 0;
  width: 35px;
  height: 35px;
  display: inline-block;
  margin-left: 10px;
  background-size: 2rem;
}

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

container
margin

**********************/
.container {
  width: 87%;
  max-width: 1320px;
  margin: 0 auto;
}
@media screen and (max-width : 600px) {
  .container {
    width: 92%;
  }
}

.container02 {
  width: 81%;
  max-width: 1140px;
  margin: 0 auto;
}
@media screen and (max-width : 600px) {
  .container02 {
    width: 88%;
  }
}

.container03 {
  width: 72%;
  max-width: 910px;
  margin: 0 auto;
}
@media screen and (max-width : 600px) {
  .container03 {
    width: 88%;
  }
}

.m1 {
  margin: 1rem;
}

.m2 {
  margin: 2rem;
}

.mt1 {
  margin-top: 1rem;
}

.mt2 {
  margin-top: 2rem;
}

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

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

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

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

.mt12 {
  margin-top: 12rem;
}
@media screen and (max-width : 900px) {
  .mt12 {
    margin-top: 9rem;
  }
}
@media screen and (max-width : 600px) {
  .mt12 {
    margin-top: 7rem;
  }
}

.mb1 {
  margin-bottom: 1rem;
}

.mb2 {
  margin-bottom: 2rem;
}

.mb3 {
  margin-bottom: 3rem;
}
@media screen and (max-width : 600px) {
  .mb3 {
    margin-bottom: 2rem;
  }
}

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

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

.mb10 {
  margin-bottom: 10rem;
}
@media screen and (max-width : 900px) {
  .mb10 {
    margin-bottom: 7rem;
  }
}
@media screen and (max-width : 600px) {
  .mb10 {
    margin-bottom: 4rem;
  }
}

.mb12 {
  margin-bottom: 12rem;
}
@media screen and (max-width : 900px) {
  .mb12 {
    margin-bottom: 9rem;
  }
}
@media screen and (max-width : 600px) {
  .mb12 {
    margin-bottom: 7rem;
  }
}

.pt3 {
  padding-top: 3rem;
}
@media screen and (max-width : 600px) {
  .pt3 {
    padding-top: 2rem;
  }
}

.pt5 {
  padding-top: 5rem;
}
@media screen and (max-width : 900px) {
  .pt5 {
    padding-top: 3rem;
  }
}

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

.pb3 {
  padding-bottom: 3rem;
}
@media screen and (max-width : 600px) {
  .pb3 {
    padding-bottom: 2rem;
  }
}

.pb5 {
  padding-bottom: 5rem;
}
@media screen and (max-width : 900px) {
  .pb5 {
    padding-bottom: 3rem;
  }
}

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

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

header

**********************/
#top-head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  display: flex;
  z-index: 999;
  transition: 0.5s;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width : 600px) {
  #top-head {
    height: 90px;
  }
}
#top-head .inner {
  width: 96%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width : 1260px) {
  #top-head .inner {
    width: 100%;
  }
}
#top-head .inner .logo .fz10 {
  padding-left: 1em;
}
#top-head .inner .logo img {
  width: 280px;
}
@media screen and (max-width : 600px) {
  #top-head .inner .logo img {
    width: 200px;
  }
}
@media screen and (max-width : 1260px) {
  #top-head .inner .div_ham {
    display: flex;
  }
}
@media screen and (max-width : 1300px) {
  #top-head .inner .div_ham {
    display: flex;
    align-items: center;
  }
}
#top-head .inner .div_ham #nav_toggle {
  display: none;
}
@media screen and (max-width : 1260px) {
  #top-head .inner .div_ham #nav_toggle {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
    top: 5px;
    right: 18px;
    z-index: 100;
    margin-left: 30px;
  }
}
@media screen and (max-width : 1260px) {
  #top-head .inner .div_ham #nav_toggle div {
    position: relative;
  }
}
@media screen and (max-width : 1260px) {
  #top-head .inner .div_ham #nav_toggle div span {
    display: block;
    height: 2px;
    background: #000;
    position: absolute;
    width: 100%;
    left: 0;
    transition: 0.5s ease-in-out;
  }
  #top-head .inner .div_ham #nav_toggle div span:nth-child(1) {
    top: 0px;
  }
  #top-head .inner .div_ham #nav_toggle div span:nth-child(2) {
    top: 10px;
  }
  #top-head .inner .div_ham #nav_toggle div span:nth-child(3) {
    top: 20px;
  }
}
@media screen and (max-width : 1260px) {
  #top-head .inner nav {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99;
    padding-top: 100px;
    background-color: #fff;
    overflow-y: auto;
  }
}
#top-head .inner nav ul.icon_nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
#top-head .inner nav ul.icon_nav li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  background-color: #FFFAEA;
  border-radius: 20px;
  padding: 15px 12px;
}
#top-head .inner nav ul.icon_nav li a img.icon {
  width: 26px;
  height: auto;
}
#top-head .inner nav ul.icon_nav li a span {
  font-size: 1.3rem;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width : 1260px) {
  #top-head .inner nav ul.icon_nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 5%;
  }
  #top-head .inner nav ul.icon_nav li {
    border-bottom: 1px solid #D9D9D9;
  }
  #top-head .inner nav ul.icon_nav li:first-child {
    border-top: 1px solid #D9D9D9;
  }
  #top-head .inner nav ul.icon_nav li a {
    flex-direction: row;
    justify-content: flex-start;
    gap: 1.4rem;
    padding: 20px;
    border-radius: 0;
    font-size: 1.6rem;
    background-color: #fff;
    transition: background-color 0.2s ease;
  }
  #top-head .inner nav ul.icon_nav li a img.icon {
    width: 24px;
  }
  #top-head .inner nav ul.icon_nav li a span {
    font-size: 1.6rem;
  }
  #top-head .inner nav ul.icon_nav li a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #6d6d6d;
    border-right: 2px solid #6d6d6d;
    transform: rotate(45deg);
    margin-left: auto;
  }
}

/* when nav open */
@media screen and (max-width : 1260px) {
  #top-head.open .inner #nav_toggle div span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
  }
  #top-head.open .inner #nav_toggle div span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  #top-head.open .inner #nav_toggle div span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
  }
}

/* when header scrolling */
#top-head.HeightMin {
  position: fixed;
  z-index: 999;
  height: 65px;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.08);
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
  top: 0;
  border-bottom: 1px solid #d0d0d0;
}
#top-head.HeightMin .logo {
  padding: 0 4rem;
  height: 65px;
}
@media screen and (max-width : 1260px) {
  #top-head.HeightMin .logo {
    display: flex;
    align-items: center;
    margin-left: -2rem;
  }
}
#top-head.HeightMin .logo .fz10 {
  display: none;
}
#top-head.HeightMin .logo img {
  width: 212px;
}
#top-head.HeightMin .inner nav ul.icon_nav li a {
  background-color: transparent;
  padding: 0 15px;
}
@media screen and (max-width : 1260px) {
  #top-head.HeightMin .inner nav ul.icon_nav li a {
    padding: 20px;
  }
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-170px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-170px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
main.main {
  margin-top: 120px;
}
@media screen and (max-width : 600px) {
  main.main {
    margin-top: 90px;
  }
}

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

common

**********************/
.base_sec {
  padding: 12rem 0;
}
@media screen and (max-width : 1024px) {
  .base_sec {
    padding: 9rem 0;
  }
}
@media screen and (max-width : 600px) {
  .base_sec {
    padding: 6rem 0;
  }
}

.base_sec_top {
  padding: 12rem 0 0;
}
@media screen and (max-width : 1024px) {
  .base_sec_top {
    padding: 9rem 0 0;
  }
}
@media screen and (max-width : 600px) {
  .base_sec_top {
    padding: 6rem 0 0;
  }
}

.base_sec_btm {
  padding: 0 0 12rem;
}
@media screen and (max-width : 1024px) {
  .base_sec_btm {
    padding: 0 0 9rem;
  }
}
@media screen and (max-width : 600px) {
  .base_sec_btm {
    padding: 0 0 6rem;
  }
}

.service_sec, .company_sec {
  border-top: 15px solid #F39800;
}

.por {
  position: relative;
}

.lh16 {
  line-height: 1.6;
}

.lh18 {
  line-height: 1.8;
}

.lh2 {
  line-height: 2;
}

.lh22 {
  line-height: 2.2;
}
@media screen and (max-width : 600px) {
  .lh22 {
    line-height: 2;
  }
}

.fz10 {
  font-size: 1rem;
}

.fz12 {
  font-weight: 500;
  font-size: 1.2rem;
}
@media screen and (max-width : 600px) {
  .fz12 {
    font-size: 1rem;
  }
}

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

.fz16, .allpost_post_item .allpost_post_item_in > a h3 {
  font-size: 1.6rem;
}
@media screen and (max-width : 600px) {
  .fz16, .allpost_post_item .allpost_post_item_in > a h3 {
    font-size: 1.4rem;
  }
}

.fz18 {
  font-size: 1.8rem;
}
@media screen and (max-width : 600px) {
  .fz18 {
    font-size: 1.5rem;
  }
}

.fz22 {
  font-size: 2.2rem;
}
@media screen and (max-width : 1300px) {
  .fz22 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width : 600px) {
  .fz22 {
    font-size: 1.6rem;
  }
}

.fz25 {
  font-size: 2.5rem;
}
@media screen and (max-width : 1300px) {
  .fz25 {
    font-size: 2.1rem;
  }
}
@media screen and (max-width : 600px) {
  .fz25 {
    font-size: 1.8rem;
  }
}

.fz32 {
  font-size: 3.2rem;
}
@media screen and (max-width : 1300px) {
  .fz32 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width : 900px) {
  .fz32 {
    font-size: 2rem;
  }
}
@media screen and (max-width : 600px) {
  .fz32 {
    font-size: 1.6rem;
  }
}

.fz36 {
  font-size: 3.6rem;
}
@media screen and (max-width: 1150px) {
  .fz36 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width : 1024px) {
  .fz36 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width : 798px) {
  .fz36 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width : 460px) {
  .fz36 {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 398px) {
  .fz36 {
    font-size: 2.1rem;
  }
}

.fz42 {
  font-size: 4.2rem;
}
@media screen and (max-width : 1300px) {
  .fz42 {
    font-size: 3.7rem;
  }
}
@media screen and (max-width : 900px) {
  .fz42 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width : 600px) {
  .fz42 {
    font-size: 2.8rem;
  }
}

.fz45 {
  font-size: 4.5rem;
}
@media screen and (max-width : 1300px) {
  .fz45 {
    font-size: 4rem;
  }
}
@media screen and (max-width : 900px) {
  .fz45 {
    font-size: 3.5rem;
  }
}
@media screen and (max-width : 600px) {
  .fz45 {
    font-size: 3rem;
  }
}

.fz55 {
  font-size: 5.5rem;
}
@media screen and (max-width : 1300px) {
  .fz55 {
    font-size: 4.4rem;
  }
}
@media screen and (max-width : 798px) {
  .fz55 {
    font-size: 4rem;
  }
}
@media screen and (max-width : 600px) {
  .fz55 {
    font-size: 3rem;
  }
}

.tdu {
  text-decoration: underline;
}

.bb1 {
  border-bottom: 1px solid;
}

.white {
  color: #fff;
}

.red {
  color: #FF0000;
}

.og {
  color: #F39800;
}

.gray {
  color: #6d6d6d;
}

.font_ttl {
  color: #2F2F2F;
}

.bg_white {
  background-color: #fff;
}

.bg_gray {
  background-color: #F2F2F2;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.taj {
  text-align: justify;
}

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

.normal {
  font-weight: normal;
}

.bold {
  font-weight: bold;
}

.bold_normal {
  font-weight: bold;
}
@media screen and (max-width : 600px) {
  .bold_normal {
    font-weight: normal;
  }
}

.yl_marker {
  background-color: #ffffa3;
}

.breadcrumbs {
  margin: 0 auto;
  padding: 1rem 5rem;
  background: #F39800;
  color: #fff;
}
.breadcrumbs a {
  color: #fff;
}
.breadcrumbs a:hover {
  opacity: 1;
}
.breadcrumbs a span {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
}
.breadcrumbs a span:hover {
  text-decoration: underline;
}
.breadcrumbs span {
  font-size: 1.4rem;
  color: #fff;
}

time {
  display: inline-block;
  padding: 5px 0;
}
time span {
  display: flex;
  align-items: center;
  line-height: 1.3;
}

time + .post-categories {
  margin: 0 12px;
}

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

keyframes

**********************/
@-webkit-keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/**********************

front-page
mv

**********************/
/* mv */
.mv {
  position: relative;
  height: 60rem;
  margin-top: 9rem;
  padding: 0 3%;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 26px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width : 1024px) {
  .mv {
    height: 50rem;
  }
}
@media screen and (max-width : 600px) {
  .mv {
    height: 60rem;
    margin-top: 7rem;
    border-radius: 16px;
  }
}

.mv_slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3%;
  right: 3%;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
}
.mv_slider .splide__track,
.mv_slider .splide__list,
.mv_slider .splide__slide {
  height: 100%;
}
.mv_slider .splide__slide {
  background-image: var(--bg-pc);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width : 600px) {
  .mv_slider .splide__slide {
    background-image: var(--bg-sp);
  }
}
.mv_slider .splide__pagination {
  z-index: 2;
}

.mv_overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3%;
  right: 3%;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background-color: rgba(6, 40, 82, 0.189);
}

.mv_in {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.mv_catch {
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.65);
  font-family: "Kiwi Maru", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 500;
}
.mv_catch span {
  display: block;
}

.mv_catch_sm {
  font-size: 3rem;
  margin-bottom: 1rem;
}
@media screen and (max-width : 600px) {
  .mv_catch_sm {
    font-size: 2rem;
  }
}

.mv_catch_lg {
  font-size: 4.6rem;
}
@media screen and (max-width : 600px) {
  .mv_catch_lg {
    font-size: 2.6rem;
  }
}

.mv_lead {
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.65);
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 4px;
  line-height: 1.8;
  margin-top: 2rem;
}
@media screen and (max-width : 600px) {
  .mv_lead {
    font-size: 1.4rem;
  }
}

/* banner */
.banner_sec {
  margin: 4rem 0;
}

.lead_bnr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
  gap: 2em;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width : 600px) {
  .lead_bnr {
    grid-template-columns: 1fr;
    gap: 1em;
  }
}

/* about */
.about_sec {
  background-size: cover;
  background-position: center;
  background-color: #F39800;
  padding: 8rem 0;
}
@media screen and (max-width : 600px) {
  .about_sec {
    padding: 5rem 0;
  }
}

.about_card {
  max-width: 1176px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 63px;
  padding: 10rem 12rem 12rem;
}
@media screen and (max-width : 900px) {
  .about_card {
    padding: 6rem;
    border-radius: 38px;
  }
}
@media screen and (max-width : 600px) {
  .about_card {
    padding: 4rem 2rem;
    border-radius: 30px;
  }
}

.about_mark {
  padding: 0;
}
.about_mark img {
  width: 75px;
}

.about_ttl {
  text-align: center;
  margin: 0 0 4.8rem;
}
@media screen and (max-width : 900px) {
  .about_ttl {
    margin: 0 0 2rem;
  }
}

/* kodawari */
.kodawari_item {
  display: flex;
  align-items: center;
  gap: 5rem;
  margin-top: 8rem;
}
@media screen and (max-width : 900px) {
  .kodawari_item {
    flex-direction: column;
    gap: 2rem;
    margin-top: 6rem;
  }
}

.kodawari_img {
  flex: 0 0 45%;
  border-radius: 43px;
}

.kodawari_txt {
  flex: 1;
  position: relative;
  padding-left: 3rem;
}
.kodawari_txt h3 {
  font-size: 2.4rem;
  font-weight: bold;
  border-left: 7px solid #F39800;
  margin-bottom: 1em;
  padding: 0 15px;
}
@media screen and (max-width : 900px) {
  .kodawari_txt h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width : 798px) {
  .kodawari_txt {
    padding-left: 0;
  }
}

.kodawari_note {
  font-size: 1.3rem !important;
  color: #6d6d6d;
}

/* policy */
.policy_sec h3 {
  font-size: 2rem;
  font-weight: bold;
  padding: 0 0 1.2rem;
  margin-top: 5rem;
  border-bottom: 2px solid #D9D9D9;
}
@media screen and (max-width : 600px) {
  .policy_sec h3 {
    font-size: 1.8rem;
  }
}
.policy_sec h3:first-of-type {
  margin-top: 0;
}
.policy_sec p {
  line-height: 1.8;
}
.policy_sec ol {
  list-style: none;
  margin-top: 0.8rem;
}
.policy_sec ol li {
  margin-top: 0.6rem;
  line-height: 1.8;
}
.policy_sec ol ol {
  margin-top: 0.6rem;
  padding-left: 1.6em;
}

/* map */
.map_frame {
  border-radius: 45px;
  overflow: hidden;
}
@media screen and (max-width : 1024px) {
  .map_frame {
    border-radius: 22px;
  }
}
.map_frame iframe {
  display: block;
  width: 100%;
  height: 45rem;
  border: 0;
}
@media screen and (max-width : 600px) {
  .map_frame iframe {
    height: 30rem;
  }
}

/* tips box */
.tips_box {
  background-color: #FFFAEA;
  border-radius: 30px;
  padding: 4.5rem 5.5rem;
}
@media screen and (max-width : 900px) {
  .tips_box {
    padding: 3rem;
    border-radius: 20px;
  }
}
@media screen and (max-width : 600px) {
  .tips_box {
    padding: 2.5rem;
    border-radius: 16px;
  }
}
.tips_box h4 {
  padding-top: 0;
}

/* point list */
.point_list {
  margin-top: 1.5rem;
}
.point_list li {
  position: relative;
  padding-left: 1.8rem;
  margin-top: 0.8rem;
}
.point_list li:first-child {
  margin-top: 0;
}
.point_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #F39800;
}

/* flow */
.flow_list {
  margin-top: 5rem;
}

.flow_item {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid #D9D9D9;
}
.flow_item:first-child {
  padding-top: 0;
}
.flow_item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
@media screen and (max-width : 798px) {
  .flow_item {
    gap: 1.6rem;
    padding: 2rem 0;
  }
}

.flow_num {
  flex: 0 0 6rem;
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #F39800;
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
  font-family: "Kiwi Maru", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
@media screen and (max-width : 798px) {
  .flow_num {
    flex: 0 0 4.4rem;
    width: 4.4rem;
    height: 4.4rem;
    font-size: 1.8rem;
  }
}

.flow_txt {
  flex: 1;
}
.flow_txt h4 {
  padding: 0 0 0.6rem;
}

/* service */
.service_grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem 2rem;
}
@media screen and (max-width : 1024px) {
  .service_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service_grid li {
    grid-column: span 1 !important;
  }
}
@media screen and (max-width : 600px) {
  .service_grid {
    grid-template-columns: 1fr;
  }
}
.service_grid li a {
  display: block;
}
.service_grid h3 {
  padding: 1em 0;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width : 798px) {
  .service_grid h3 {
    font-size: 1.5rem;
  }
}
.service_grid h3 .arrow_circle {
  position: absolute;
  right: 1em;
  top: 0.6em;
}
@media screen and (max-width : 798px) {
  .service_grid h3 .arrow_circle {
    right: 0;
    top: 0.3em;
  }
}

.service_grid li.span3 {
  grid-column: span 3;
}

.service_grid li.span2 {
  grid-column: span 2;
}

/* works */
.works_sec {
  background-size: cover;
  background-position: center;
}

.works_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width : 1024px) {
  .works_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media screen and (max-width : 600px) {
  .works_grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.works_grid img.img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

/* company */
.company_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}
@media screen and (max-width : 798px) {
  .company_box {
    grid-template-columns: 1fr;
  }
}
.company_box .sec_ttl .sec_ttl_jp {
  padding: 12px 0;
}
.company_box .sec_ttl .sec_ttl_jp::before {
  content: "";
  display: block;
  width: 1.2em;
  height: 3px;
  background-color: #F39800;
  margin-bottom: 12px;
}

.company_txt {
  flex: 1;
}
.company_txt dt {
  font-weight: bold;
  font-size: 1.6rem;
  margin-top: 1.5rem;
}
.company_txt dt:first-child {
  margin-top: 0;
}
.company_txt dd {
  font-size: 1.6rem;
  margin: 0.6em 0 1.6em;
}

.company_item {
  display: grid;
  grid-template-columns: 1fr 24%;
  gap: 4rem;
  margin-top: 8rem;
}
@media screen and (max-width : 798px) {
  .company_item {
    gap: 2rem;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width : 798px) {
  .company_item figure {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
@media screen and (max-width : 798px) {
  .company_item figure img {
    max-width: 300px;
    width: 50%;
  }
}

.staff_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width : 1024px) {
  .staff_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media screen and (max-width : 600px) {
  .staff_grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* news */
.news_sec {
  padding: 6rem 0;
  background-color: #F2F2F2;
}

.news_flex {
  display: flex;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width : 798px) {
  .news_flex {
    flex-direction: column;
    gap: 2rem;
  }
}

.news_head {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-items: center;
  gap: 1em;
}
@media screen and (max-width : 798px) {
  .news_head {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex: 0 0 auto;
  }
}

.news_list {
  flex: 1;
  min-width: 0;
}
.news_list a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  padding: 1.2rem 0;
  font-size: 1.5rem;
}
@media screen and (max-width : 798px) {
  .news_list a {
    border-bottom: 1px solid #6d6d6d;
  }
}
.news_list .news_empty {
  padding: 2rem 0;
}
@media screen and (max-width : 798px) {
  .news_list time, .news_list .news_cat {
    font-size: 12px;
  }
}

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

page共通

**********************/
.bg_top {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #F39800;
  padding: 17rem 0;
}
@media screen and (max-width : 600px) {
  .bg_top {
    padding: 12rem 0;
  }
}

.page_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.page_ttl::after {
  content: attr(data-label);
  display: block;
  margin-top: 1rem;
  color: #F39800;
  font-weight: bold;
  font-size: 1.9rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  letter-spacing: 1px;
}
@media screen and (max-width : 798px) {
  .page_ttl::after {
    font-size: 1.7rem;
  }
}

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

front-page
allpost
category　共通
投稿取得
カテゴリ名取得

**********************/
.post_item > div {
  background-color: #fff;
  display: flex;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width : 600px) {
  .post_item > div {
    display: block;
  }
}
.post_item > div > div:first-of-type {
  width: 40%;
}
@media screen and (max-width : 600px) {
  .post_item > div > div:first-of-type {
    width: 100%;
  }
}
.post_item > div > div:first-of-type > a {
  display: block;
  overflow: hidden;
  height: 100%;
}
.post_item > div > div:first-of-type > a:hover {
  opacity: 1;
}
.post_item > div > div:first-of-type > a img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.post_item > div > div:first-of-type > a img:hover {
  scale: 1.1;
  transition: all 0.3s;
}
.post_item > div .post_item_in {
  width: 60%;
  padding: 2rem;
}
@media screen and (max-width : 900px) {
  .post_item > div .post_item_in {
    padding: 3rem 2rem;
  }
}
@media screen and (max-width : 600px) {
  .post_item > div .post_item_in {
    width: 70%;
    padding: 2rem;
  }
}
@media screen and (max-width : 600px) {
  .post_item > div .post_item_in {
    width: 100%;
  }
}
.post_item > div .post_item_in > a {
  display: block;
  height: 100%;
  padding: 1.4rem 0 0 4px;
}
@media screen and (max-width : 600px) {
  .post_item > div .post_item_in > a {
    padding: 2px 0 0 2px;
  }
}
.post_item > div .post_item_in > a h3 {
  font-size: 1.8rem;
  padding: 0;
  margin: 0;
  transition: all 0.3s;
}
@media screen and (max-width : 798px) {
  .post_item > div .post_item_in > a h3 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 600px) {
  .post_item > div .post_item_in > a h3 {
    margin-top: 4px;
    text-align: justify;
  }
}

.allpost_post_item {
  overflow: hidden;
}
.allpost_post_item > div:first-of-type > a {
  position: relative;
  border-radius: 12px 12px 0 0;
  text-align: right;
}
@media screen and (max-width : 798px) {
  .allpost_post_item > div:first-of-type > a {
    border-radius: 5px 5px 0 0;
  }
}
.allpost_post_item > div:first-of-type > a img.img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.allpost_post_item .allpost_post_item_in {
  padding: 1.2rem 4px;
}
@media screen and (max-width : 600px) {
  .allpost_post_item .allpost_post_item_in {
    padding: 1rem 4px;
  }
}
.allpost_post_item .allpost_post_item_in > a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-align: right;
}
.allpost_post_item .allpost_post_item_in > a h3 {
  line-height: 1.6;
  padding: 17px 0 7px;
  margin: 0;
  transition: all 0.3s;
}
@media screen and (max-width : 600px) {
  .allpost_post_item .allpost_post_item_in > a h3 {
    padding: 7px 0;
  }
}

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

カテゴリー名取得

**********************/
.cat_nav ul {
  display: flex;
  flex-wrap: wrap;
  width: 75%;
  margin: 4rem auto 0;
}
@media screen and (max-width : 1024px) {
  .cat_nav ul {
    width: 91%;
  }
}
@media screen and (max-width : 600px) {
  .cat_nav ul {
    margin: 2rem auto 0;
  }
}
.cat_nav ul li {
  margin: 4px;
}
.cat_nav ul li a {
  display: block;
  font-weight: bold;
  padding: 5px 24px;
  border-radius: 50px;
  color: #F39800;
  border: 1px solid;
}

ul.post-categories {
  line-height: 1;
}
ul.post-categories li {
  display: inline-block;
}
ul.post-categories li a {
  font-size: 1.2rem;
  font-weight: bold;
  padding: 2px 0;
  display: inline-block;
  color: #F39800;
}
@media screen and (max-width : 900px) {
  ul.post-categories li a {
    font-size: 1rem;
  }
}
@media screen and (max-width : 600px) {
  ul.post-categories li a {
    padding: 3px 0;
  }
}

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

footer

**********************/
.contact_sec {
  background-size: cover;
  background-position: center;
}

.contact_box {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 63px;
  padding: 5rem 6rem;
}
@media screen and (max-width : 900px) {
  .contact_box {
    border-radius: 38px;
  }
}
@media screen and (max-width : 600px) {
  .contact_box {
    padding: 4rem;
  }
}

.contact_mark {
  padding: 0;
}
.contact_mark img {
  width: 50px;
}

footer {
  background-color: #fff;
  padding: 9rem 0 1rem;
}

.footer_nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5rem 2rem;
}
@media screen and (max-width : 900px) {
  .footer_nav {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width : 600px) {
  .footer_nav {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.footer_nav .footer_nav_wide {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 2em;
}
@media screen and (max-width : 798px) {
  .footer_nav .footer_nav_wide {
    grid-template-columns: 1fr;
    gap: 1em;
  }
}
.footer_nav dt a {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: bold;
  font-size: 1.6rem;
}
.footer_nav dt a .icon {
  width: 22px;
}
.footer_nav dd {
  font-size: 1.4rem;
  line-height: 2;
  color: #6d6d6d;
}

.footer_deco img {
  max-width: 180px;
}

.link_list {
  margin-bottom: 1.5rem;
}
.link_list li a {
  font-size: 1.3rem;
  text-decoration: underline;
}

.copyright {
  font-size: 1.2rem;
}

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

404.php

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

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

single.php
投稿ページ

**********************/
.single_article {
  margin: 4rem auto 5rem;
  padding: 2rem 4rem;
}
@media screen and (max-width : 600px) {
  .single_article {
    width: 100%;
    padding: 0;
  }
}
.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 {
  background: #f6f6f6;
  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 : 460px) {
  .page_nav {
    width: 100%;
  }
}
.page_nav p {
  margin-bottom: 0;
  text-align: left;
  font-size: 2rem;
  position: relative;
}
@media screen and (max-width : 600px) {
  .page_nav p {
    font-size: 1.8rem;
  }
}
.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: "- ";
}

.content_design h2 {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  border-left: 10px solid #F39800;
  padding: 3px 16px;
  margin-bottom: 0.5em;
}
@media screen and (max-width : 900px) {
  .content_design h2 {
    border-left: 6px solid #F39800;
    padding: 3px 12px;
    margin-bottom: 0.7em;
  }
}
.content_design h3 {
  border-bottom: 1px solid #F39800;
  margin-bottom: 0.5em;
  font-size: 3rem;
}
@media screen and (max-width : 1300px) {
  .content_design h3 {
    font-size: 2.9rem;
  }
}
@media screen and (max-width : 900px) {
  .content_design h3 {
    margin-bottom: 0.7em;
  }
}
@media screen and (max-width : 600px) {
  .content_design h3 {
    font-size: 2.2rem;
  }
}

/* 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: gray;
  font-weight: normal;
  padding-bottom: 5px;
}

.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;
  background: #F2F2F2;
}
.post__pagination .post__pagination__right a:hover, .post__pagination .post__pagination__left a:hover {
  opacity: 1;
  background: #efefef;
}

.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;
  padding: 3rem 5rem 7rem;
  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 {
  font-weight: bold;
  font-size: 2.4rem;
  margin-bottom: 3rem;
  padding: 12px;
}
@media screen and (max-width : 600px) {
  dl.parts_post dt {
    font-size: 2rem;
  }
}

dl.parts_post dt {
  padding: 20px 0 12px;
  position: relative;
  border-bottom: 2px dashed;
}
dl.parts_post dd {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 17px;
  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: repeat(auto-fit, minmax(180px, 1fr));
  }
}
@media screen and (max-width : 600px) {
  dl.parts_post dd {
    gap: 12px;
  }
}
dl.parts_post dd > div {
  display: flex;
  flex-direction: column;
  text-align: right;
  overflow: hidden;
}
dl.parts_post dd > div > p {
  padding: 0;
}
dl.parts_post dd > div > p a {
  display: block;
  border: 1px solid #6d6d6d;
}
dl.parts_post dd > div > div {
  height: 100%;
  background-color: #fff;
}
dl.parts_post dd > div > div > a {
  width: 100%;
  height: 100%;
  padding: 1em 1em 2em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width : 600px) {
  dl.parts_post dd > div > div > a {
    padding: 1rem 1.4rem 1.5rem;
  }
}
dl.parts_post dd > div > div > a p {
  transition: all 0.3s;
  line-height: 1.6;
  padding: 17px 0 27px;
  text-align: left;
}

/***************
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: bold;
}

.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

**********************/
.box-scroll {
  height: 12em;
  overflow: auto;
  padding: 10px;
  border: solid 1px #828282;
}
.box-scroll p {
  font-size: 14px;
}

/* フォームのテンプレート 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__short {
  width: 50%;
  min-width: 180px;
  max-width: 250px;
}
.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 #828282;
  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: #828282;
}
.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: #828282;
}

.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: #828282;
}

.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: #828282;
}

/* テキストフィールド フォーカス時 */
.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 #828282;
  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 #828282;
  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;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.wpcf7 .template01 select {
  cursor: pointer;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0.8em 2.5em 0.8em 1em;
  border: 1px solid #828282;
  border-radius: 0;
  box-shadow: none;
  background-color: #fff;
  color: inherit;
  font-family: inherit;
  font-weight: 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 #828282;
  border-right: 1px solid #828282;
  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;
  border-radius: 50vh;
}

.wpcf7 .template01 input[type=submit]:disabled {
  cursor: not-allowed;
  box-shadow: none !important;
  border: 1px solid #cacaca !important;
  background-color: #cacaca !important;
  color: #545454 !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.6em 0;
}

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

@media only screen and (max-width: 768px) {
  .wpcf7 .template01 span.wpcf7-list-item {
    display: block;
  }
}
/*送信後のメッセージ表示*/
.wpcf7 form .wpcf7-response-output {
  font-size: 1.6rem;
  line-height: 1.4;
}
/*# sourceMappingURL=style.css.map */