@charset "UTF-8";
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
* {
  font-weight: 400;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  letter-spacing: 0.1em;
}

html {
  font-size: 100px !important;
}

body {
  font-size: 0.16rem;
  line-height: 1.5;
}

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  transition: all 1s;
}

a:link {
  color: initial;
}

a:visited {
  color: rgb(0, 0, 0);
}

a:hover,
a:focus {
  opacity: 0.5;
  outline: none;
}

#contents,
#main,
#main #col_main {
  width: 100%;
}

#main #col_main {
  float: none;
}

#contents_wrap,
header#global_header,
footer#global_footer {
  min-width: 0;
}

img.imgL {
  max-width: initial;
  margin: 0;
}

@media screen and (max-width: 1199px) {
  .ly_header__100 {
    padding: 15px 0 15px 25px;
  }
}
@media only screen and (min-width: 1200px) {
  .ly_header__100 {
    padding: 30px 0 30px 50px;
  }
}
.ly_header__inner {
  max-width: 1300px;
  margin: 0 auto;
}

.ly_content--inner {
  max-width: 1300px;
  margin: 0 auto;
}
@media only screen and (min-width: 1200px) {
  .ly_content--inner {
    padding: 0 50px;
  }
}
@media screen and (max-width: 1199px) {
  .ly_content--inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 639px) {
  .ly_content--inner {
    padding: 0 25px;
  }
}

.ly_footer__inner {
  max-width: 1300px;
  margin: 0 auto;
}

.bl_btn {
  display: inline-block;
  max-width: 100%;
  padding: 15px 20px;
  text-align: center;
  border: 2px solid transparent;
  font-family: "Arial", sans-serif;
  font-weight: 800;
  position: relative;
  z-index: 1;
}
.bl_btn a {
  display: block;
}
.bl_btn--border {
  border: 2px solid rgb(0, 0, 0);
}
.bl_btn--bg-transparent {
  background-color: transparent;
}
.bl_btn--bg-white {
  color: rgb(0, 0, 0) !important;
  background-color: rgb(255, 255, 255);
}
.bl_btn--bg-black {
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
}
.bl_btn--bg-theme-color {
  color: rgb(255, 255, 255);
  background-color: rgba(160, 216, 239, 0.9);
}
.bl_btn--bg-theme-color:link, .bl_btn--bg-theme-color:visited {
  color: rgb(255, 255, 255);
}
.bl_btn--shadow {
  box-shadow: 4px 3px 8px 1px rgb(185, 185, 185);
}

.bl_btn-bg-2color {
  display: inline-block;
  max-width: 100%;
  padding: 25px 100px;
  border: 2px solid transparent;
  font-family: "Arial", sans-serif;
  font-weight: 800;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1200px) {
  .bl_btn-bg-2color {
    padding: 30px 110px 30px;
  }
}
.bl_btn-bg-2color::after {
  content: "";
  display: block;
  width: 30px;
  height: 100%;
  background-color: rgb(0, 0, 0);
  border: 2px solid transparent;
  position: absolute;
  top: -2px;
  right: -1%;
}
.bl_btn-bg-2color--black-sub-blue {
  color: rgb(255, 255, 255);
  background-color: rgb(51, 51, 51);
}
.bl_btn-bg-2color--black-sub-blue::after {
  background-color: rgb(118, 177, 220);
}
.bl_btn-bg-2color--black-sub-blue:link, .bl_btn-bg-2color--black-sub-blue:visited {
  color: rgb(255, 255, 255);
}

.bl_drawer-btn {
  display: block;
  width: 40px;
  padding: 15px 0;
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 1000;
}
@media only screen and (min-width: 1200px) {
  .bl_drawer-btn {
    display: none;
  }
}
.bl_drawer-btn__line1, .bl_drawer-btn__line2, .bl_drawer-btn__line3 {
  display: block;
  width: 100%;
  height: 2px;
  background-color: rgb(0, 0, 0);
  position: absolute;
  transition: all 0.5s ease;
}
.bl_drawer-btn__line1 {
  top: 0;
}
.bl_drawer-btn__line2 {
  top: 50%;
  transform: translateY(-50%);
}
.bl_drawer-btn__line3 {
  top: 100%;
  transform: translateY(-100%);
}

.is_open {
  overflow: hidden;
}
.is_open .bl_drawer-btn__line1 {
  transform: translate(0, 15px) rotate(45deg);
}
.is_open .bl_drawer-btn__line2 {
  display: none;
}
.is_open .bl_drawer-btn__line3 {
  transform: translate(0, -15px) rotate(-45deg);
}

.bl_dropDown {
  position: relative;
}
@media screen and (max-width: 1199px) {
  .bl_dropDown__parent {
    display: block;
    width: 100%;
    position: relative;
  }
}
.bl_dropDown__lists {
  display: none;
  width: 100%;
  text-align: center;
  list-style: none;
  position: absolute;
  top: 25px;
  left: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1199px) {
  .bl_dropDown__lists {
    width: 100%;
    height: 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    position: static;
  }
}
.bl_dropDown__list {
  width: 100%;
  text-align: left;
  position: relative;
}
@media only screen and (min-width: 1200px) {
  .bl_dropDown__list {
    text-align: center;
  }
}
.bl_dropDown__list > a {
  display: block;
  width: 100%;
}
.bl_dropDown__btn {
  display: block;
  width: 40px;
  height: 30px;
  padding: 0;
  background-color: transparent;
  border: none;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
  z-index: 1;
}
@media only screen and (min-width: 1200px) {
  .bl_dropDown__btn {
    display: none;
  }
}
.bl_dropDown__btn::before, .bl_dropDown__btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  font-size: 0.25rem;
  position: absolute;
  transition: all 0.3s ease;
}
.bl_dropDown__btn::before {
  top: 50%;
  transform: translate(0, -50%);
}
.bl_dropDown__btn::after {
  top: 50%;
  transform: translate(0, -50%) rotate(90deg);
}

@media only screen and (min-width: 1200px) {
  .bl_dropDown:hover .bl_dropDown__lists {
    display: block;
  }
}

@media screen and (max-width: 1199px) {
  .is_on .bl_dropDown__lists {
    display: block;
    height: auto;
    opacity: 1;
    visibility: visible;
  }
}

.is_on .bl_dropDown__btn::before {
  transform: translate(0, -50%) rotate(45deg);
  transition: all 0.3s ease;
}

.is_on .bl_dropDown__btn::after {
  transform: translate(0, -50%) rotate(135deg);
  transition: all 0.3s ease;
}

.bl_eye-catch {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .bl_eye-catch {
    margin-bottom: 60px;
  }
}
.bl_eye-catch > img {
  width: 100%;
  height: 100% !important;
  max-height: 900px;
  min-height: 400px;
  object-fit: cover;
}
.bl_eye-catch__title {
  width: 100%;
  font-size: 0.2rem;
  text-align: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
}
@media screen and (min-width: 640px) {
  .bl_eye-catch__title {
    font-size: 0.32rem;
  }
}
@media screen and (min-width: 834px) {
  .bl_eye-catch__title {
    font-size: 0.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .bl_eye-catch__title {
    font-size: 0.8rem;
  }
}
.bl_eye-catch__title span {
  display: inline-block;
  white-space: nowrap;
}

.bl_sub-eye-catch {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  background-size: cover;
  background-position: center;
  color: rgb(255, 255, 255);
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 0.32rem;
}
@media screen and (min-width: 640px) {
  .bl_sub-eye-catch {
    font-size: 0.4rem;
  }
}
@media screen and (min-width: 834px) {
  .bl_sub-eye-catch {
    font-size: 0.48rem;
  }
}
@media only screen and (min-width: 1200px) {
  .bl_sub-eye-catch {
    font-size: 0.56rem;
  }
}

.bl_sub-eye-catch-with-subtitle {
  display: flex;
  min-height: 200px;
  text-align: left;
  text-shadow: 2px 2px 4px grey;
  color: rgb(255, 255, 255);
  background-size: cover;
  background-position: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 834px) {
  .bl_sub-eye-catch-with-subtitle {
    min-height: 300px;
  }
}
.bl_sub-eye-catch-with-subtitle > article > h1, .bl_sub-eye-catch-with-subtitle > article > h2, .bl_sub-eye-catch-with-subtitle > article > h3, .bl_sub-eye-catch-with-subtitle > article > p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.32rem;
  font-weight: 500;
  letter-spacing: 2px;
}
@media screen and (min-width: 640px) {
  .bl_sub-eye-catch-with-subtitle > article > h1, .bl_sub-eye-catch-with-subtitle > article > h2, .bl_sub-eye-catch-with-subtitle > article > h3, .bl_sub-eye-catch-with-subtitle > article > p {
    font-size: 0.4rem;
  }
}
@media screen and (min-width: 834px) {
  .bl_sub-eye-catch-with-subtitle > article > h1, .bl_sub-eye-catch-with-subtitle > article > h2, .bl_sub-eye-catch-with-subtitle > article > h3, .bl_sub-eye-catch-with-subtitle > article > p {
    font-size: 0.48rem;
  }
}
@media only screen and (min-width: 1200px) {
  .bl_sub-eye-catch-with-subtitle > article > h1, .bl_sub-eye-catch-with-subtitle > article > h2, .bl_sub-eye-catch-with-subtitle > article > h3, .bl_sub-eye-catch-with-subtitle > article > p {
    font-size: 0.56rem;
  }
}
.bl_sub-eye-catch-with-subtitle > article > div {
  font-size: 0.16rem;
}
@media screen and (min-width: 640px) {
  .bl_sub-eye-catch-with-subtitle > article > div {
    font-size: 0.2rem;
  }
}
@media screen and (min-width: 834px) {
  .bl_sub-eye-catch-with-subtitle > article > div {
    font-size: 0.24rem;
  }
}
@media only screen and (min-width: 1200px) {
  .bl_sub-eye-catch-with-subtitle > article > div {
    font-size: 0.28rem;
  }
}
.bl_sub-eye-catch-with-subtitle--center > article {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bl_sub-eye-catch-with-subtitle--bottom-left > article {
  position: absolute;
  top: 70%;
  left: 10%;
  transform: translate(-10%, -70%);
}

.bl_ul {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  margin-bottom: 120px;
}
@media screen and (min-width: 834px) {
  .bl_ul {
    margin-bottom: 140px;
  }
}
.bl_ul > ul > li {
  margin-bottom: 30px;
}
@media only screen and (min-width: 1200px) {
  .bl_ul > ul > li {
    margin-bottom: 40px;
  }
}
.bl_ul > ul > li:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) {
  .bl_ul > ul > li:last-child {
    margin-bottom: 0;
  }
}
.bl_ul--display-title > ul > li {
  float: none !important;
}
.bl_ul--display-title article > h5 {
  display: block;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 0.2rem;
  border-bottom: 1px solid rgb(204, 204, 204);
}

.bl_nav {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}
@media screen and (max-width: 1199px) {
  .bl_nav {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20vh 0 0;
    background-color: rgb(160, 216, 239);
    position: fixed;
    top: 50%;
    transform: translate(0, -50%);
    overflow: auto;
    z-index: 300;
    transition: all 0.3s ease-out;
  }
}
@media only screen and (min-width: 1200px) {
  .bl_nav {
    display: flex;
  }
}
@media screen and (max-width: 1199px) {
  .bl_nav__list {
    padding: 20px 0 20px 30px;
    text-align: left;
    border-top: 1px solid rgb(255, 255, 255);
  }
}
@media only screen and (min-width: 1200px) {
  .bl_nav__list--right-bar {
    margin: 0;
    padding: 0 25px;
    border-right: 1px solid rgb(0, 0, 0);
  }
}
@media only screen and (min-width: 1200px) {
  .bl_nav__list--right-bar:first-child {
    padding: 0 25px 0 0;
  }
}
@media only screen and (min-width: 1200px) {
  .bl_nav__list--right-bar:last-child {
    padding: 0 0 0 25px;
    border: none;
  }
}
@media screen and (max-width: 1199px) {
  .bl_nav__list:last-child {
    border-bottom: 1px solid rgb(255, 255, 255);
  }
}
@media screen and (max-width: 1199px) {
  .bl_nav__list a, .bl_nav__list a:visited {
    display: block;
    color: rgb(255, 255, 255);
  }
}
@media screen and (max-width: 1199px) {
  .bl_nav__list:last-child {
    margin-bottom: 0;
  }
}
.bl_nav--appear-right {
  right: -100%;
}

.is_open .bl_nav--appear-right {
  right: -30%;
}

.bl_sns .sns_list {
  border: none;
}
@media screen and (min-width: 834px) {
  .bl_sns .sns_list {
    flex-direction: row;
  }
}
.bl_sns .sns_list > div {
  border: none;
}
@media screen and (min-width: 640px) {
  .bl_sns .sns_list > div {
    flex-direction: row;
  }
}
@media screen and (min-width: 834px) {
  .bl_sns .sns_list > div {
    width: 20%;
    flex-direction: column;
  }
}
@media screen and (min-width: 834px) {
  .bl_sns .sns_list > div > .sns_photo {
    width: 100%;
    padding: 0;
  }
}
@media screen and (min-width: 640px) {
  .bl_sns .sns_list > div > .sns_text {
    width: 50%;
  }
}
@media screen and (min-width: 834px) {
  .bl_sns .sns_list > div > .sns_text {
    width: 100%;
  }
}
.bl_sns .caption {
  width: 100%;
  height: 57.6px;
  text-overflow: ellipsis;
  overflow: hidden;
  word-wrap: break-word;
}
@media screen and (min-width: 640px) {
  .bl_sns .caption {
    height: 216px;
  }
}
@media screen and (min-width: 834px) {
  .bl_sns .caption {
    height: 57.6px;
  }
}

.bl_fixed-under {
  display: none;
  align-items: center;
  text-align: center;
  position: fixed;
  right: 5.16666vw;
  bottom: 15px;
  z-index: 90;
}
.bl_fixed-under > i {
  font-size: 0.24rem;
}
.bl_fixed-under > span {
  font-size: 0.3rem;
}
.bl_fixed-under__tel {
  padding: 20px;
  border-radius: 50%;
}
@media screen and (max-width: 1199px) {
  .bl_fixed-under__tel {
    display: block;
  }
}
@media screen and (max-width: 1199px) {
  .bl_fixed-under__top {
    display: none !important;
  }
}
@media only screen and (min-width: 1200px) {
  .bl_fixed-under__top {
    display: block;
  }
}

.bl_zoom-lens {
  display: flex;
}
@media screen and (max-width: 1199px) {
  .bl_zoom-lens {
    max-width: 630px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1200px) {
  .bl_zoom-lens {
    width: 40.625vw;
    max-width: 780px;
    max-height: 640px;
  }
}
.bl_zoom-lens__img-wrapper {
  flex: 0 1 73.0769%;
  margin-right: 15px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .bl_zoom-lens__img-wrapper {
    display: flex;
  }
}
.bl_zoom-lens__img {
  object-fit: cover;
}
@media only screen and (min-width: 1200px) {
  .bl_zoom-lens__img {
    width: 100%;
  }
}
.bl_zoom-lens__lens-wrapper {
  display: none;
  width: 100px;
  height: 100px;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 2;
}
.bl_zoom-lens__lens {
  max-width: initial;
  object-fit: cover;
}
.bl_zoom-lens__img-wrapper:hover .bl_zoom-lens__lens-wrapper {
  display: block;
}
.bl_zoom-lens__lists {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-height: 100%;
}
.bl_zoom-lens__list {
  min-height: 0;
  margin-bottom: 15px;
}
@media only screen and (min-width: 1200px) {
  .bl_zoom-lens__list {
    flex: 1;
  }
}
.bl_zoom-lens__list:last-child {
  margin-bottom: 0;
}
.bl_zoom-lens__list-img {
  object-fit: cover;
}

@media only screen and (min-width: 1200px) {
  .bl_h2 {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .bl_h2 {
    margin-bottom: 40px;
  }
}
.bl_h2 > article > h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 0.25rem;
  font-weight: 600;
  padding: 1em 0;
}
@media screen and (min-width: 834px) {
  .bl_h2 > article > h2 {
    font-size: 0.3rem;
  }
}
.bl_h2--bg-misalignment > article > h2 {
  padding: 0.5em 1em;
  padding-bottom: 0.8em;
  color: rgb(255, 255, 255);
  background-color: rgba(160, 216, 239, 0.9);
  text-shadow: 1px 1px 3px #707070;
  position: relative;
}
.bl_h2--bg-misalignment > article > h2::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 4px solid #e6e6e6;
}

@media only screen and (min-width: 1200px) {
  .bl_h2-with-subtitle {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .bl_h2-with-subtitle {
    margin-bottom: 40px;
  }
}
.bl_h2-with-subtitle > article {
  display: flex;
}
.bl_h2-with-subtitle > article > h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 0.4rem;
  font-weight: 600;
}
.bl_h2-with-subtitle > article > div {
  font-family: "Arial", sans-serif;
  font-size: 0.2rem;
  font-weight: 800;
}
.bl_h2-with-subtitle > article > *:last-child {
  margin-bottom: 25px;
}
@media screen and (max-width: 1199px) {
  .bl_h2-with-subtitle > article > *:last-child {
    margin-bottom: 10px;
  }
}
.bl_h2-with-subtitle--top-subtitle > article {
  flex-direction: column-reverse;
}
.bl_map {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
.bl_map > iframe {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 100%;
  width: 100%;
  height: 100%;
}
.bl_map--4-1 {
  padding-top: 100%;
}
@media screen and (min-width: 834px) {
  .bl_map--4-1 {
    padding-top: 62.5%;
  }
}
@media only screen and (min-width: 1200px) {
  .bl_map--4-1 {
    padding-top: 25%;
  }
}
.bl_map--4-3 {
  padding-top: 100%;
}
@media screen and (min-width: 834px) {
  .bl_map--4-3 {
    padding-top: 75%;
  }
}
@media only screen and (min-width: 1200px) {
  .bl_map--4-3 {
    padding-top: 36%;
  }
}
.bl_map--16-9 {
  padding-top: 100%;
}
@media screen and (min-width: 834px) {
  .bl_map--16-9 {
    padding-top: 56.25%;
  }
}
@media only screen and (min-width: 1200px) {
  .bl_map--16-9 {
    padding-top: 30%;
  }
}

.form_wrap.bl_table {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  margin-bottom: 120px;
}
@media screen and (min-width: 834px) {
  .form_wrap.bl_table {
    margin-bottom: 140px;
  }
}
.form_wrap.bl_table > dl {
  width: 100%;
}
@media screen and (max-width: 833px) {
  .form_wrap.bl_table > dl {
    flex-direction: column;
    align-items: center;
  }
}
.form_wrap.bl_table > dl:last-child {
  margin-bottom: 0;
}
.form_wrap.bl_table > dl:last-of-type > dt, .form_wrap.bl_table > dl:last-of-type > dd {
  border: none;
}
.form_wrap.bl_table > dl > dt, .form_wrap.bl_table > dl > dd {
  border: none;
  background-color: transparent;
}
.form_wrap.bl_table > dl > dt {
  flex: 33%;
  align-items: center;
  padding: 25px 20px;
}
@media screen and (max-width: 833px) {
  .form_wrap.bl_table > dl > dt {
    width: 100%;
  }
}
.form_wrap.bl_table > dl > dd {
  flex: 67%;
  padding: 25px 20px;
}
@media screen and (max-width: 833px) {
  .form_wrap.bl_table > dl > dd {
    width: 100%;
    text-align: center;
  }
}
.form_wrap.bl_table--border-solid > dl {
  border-top: 1px solid rgb(204, 204, 204);
  border-right: 1px solid rgb(204, 204, 204);
  border-left: 1px solid rgb(204, 204, 204);
}
.form_wrap.bl_table--border-solid > dl:last-of-type > dt, .form_wrap.bl_table--border-solid > dl:last-of-type > dd {
  border-bottom: 1px solid rgb(204, 204, 204);
}
@media screen and (min-width: 834px) {
  .form_wrap.bl_table--border-solid > dl:last-of-type > dt {
    border-right: 1px solid rgb(204, 204, 204);
  }
}
.form_wrap.bl_table--border-solid > dl > dt {
  background-color: rgb(236, 240, 243);
}
@media screen and (max-width: 833px) {
  .form_wrap.bl_table--border-solid > dl > dt {
    border-bottom: 1px solid rgb(204, 204, 204);
  }
}
@media screen and (min-width: 834px) {
  .form_wrap.bl_table--border-solid > dl > dt {
    border-right: 1px solid rgb(204, 204, 204);
  }
}
.form_wrap.bl_table--border-dashed > dl {
  border-top: 1px dashed rgb(204, 204, 204);
  border-right: 1px dashed rgb(204, 204, 204);
  border-left: 1px dashed rgb(204, 204, 204);
}
.form_wrap.bl_table--border-dashed > dl:last-of-type > dt, .form_wrap.bl_table--border-dashed > dl:last-of-type > dd {
  border-bottom: 1px dashed rgb(204, 204, 204);
}
@media screen and (min-width: 834px) {
  .form_wrap.bl_table--border-dashed > dl:last-of-type > dt {
    border-right: 1px dashed rgb(204, 204, 204);
  }
}
.form_wrap.bl_table--border-dashed > dl > dt {
  background-color: rgb(236, 240, 243);
}
@media screen and (max-width: 833px) {
  .form_wrap.bl_table--border-dashed > dl > dt {
    border-bottom: 1px dashed rgb(204, 204, 204);
  }
}
@media screen and (min-width: 834px) {
  .form_wrap.bl_table--border-dashed > dl > dt {
    border-right: 1px dashed rgb(204, 204, 204);
  }
}
.form_wrap.bl_table--border-dotted > dl {
  border-top: 1px dotted rgb(204, 204, 204);
  border-right: 1px dotted rgb(204, 204, 204);
  border-left: 1px dotted rgb(204, 204, 204);
}
.form_wrap.bl_table--border-dotted > dl:last-of-type > dt, .form_wrap.bl_table--border-dotted > dl:last-of-type > dd {
  border-bottom: 1px dotted rgb(204, 204, 204);
}
@media screen and (min-width: 834px) {
  .form_wrap.bl_table--border-dotted > dl:last-of-type > dt {
    border-right: 1px dotted rgb(204, 204, 204);
  }
}
.form_wrap.bl_table--border-dotted > dl > dt {
  background-color: rgb(236, 240, 243);
}
@media screen and (max-width: 833px) {
  .form_wrap.bl_table--border-dotted > dl > dt {
    border-bottom: 1px dotted rgb(204, 204, 204);
  }
}
@media screen and (min-width: 834px) {
  .form_wrap.bl_table--border-dotted > dl > dt {
    border-right: 1px dotted rgb(204, 204, 204);
  }
}
@media screen and (max-width: 833px) {
  .form_wrap.bl_table--negative-row > dl {
    flex-direction: row;
  }
}
@media screen and (max-width: 833px) {
  .form_wrap.bl_table--negative-row > dl > dd {
    text-align: left;
  }
}
.form_wrap.bl_table--company > dl > dt, .form_wrap.bl_table--company > dl > dd {
  padding: 0;
}
.form_wrap.bl_table--company > dl {
  flex-direction: column;
  margin-bottom: 60px;
}
.form_wrap.bl_table--company > dl > dt {
  align-items: flex-start;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 0.2rem;
  font-weight: 600;
  border-bottom: 1px solid #ccc;
}
.form_wrap.bl_table--company > dl > dt:last-of-type {
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 833px) {
  .form_wrap.bl_table--company > dl > dd {
    text-align: left;
  }
}

.form_wrap.form > dl > dt {
  flex-direction: row;
  background-color: #f4faff;
}
@media screen and (min-width: 834px) {
  .form_wrap.form > dl > dt {
    flex-direction: column;
  }
}

.bl_flexbox {
  margin-bottom: 80px;
}
@media screen and (min-width: 834px) {
  .bl_flexbox {
    flex-wrap: nowrap !important;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 833px) {
  .bl_flexbox--anchor-btn {
    flex-direction: column !important;
  }
}
@media screen and (max-width: 833px) {
  .bl_flexbox--anchor-btn__anchor {
    flex: 1;
  }
}
@media screen and (min-width: 834px) {
  .bl_flexbox--anchor-btn__anchor {
    flex: calc((100% - 30px) / 3);
    margin-right: 15px;
  }
}
@media screen and (min-width: 834px) {
  .bl_flexbox--anchor-btn__anchor:last-child {
    margin-right: 0;
  }
}
.bl_flexbox--anchor-btn .box {
  position: relative;
}
.bl_flexbox--anchor-btn .box a {
  width: 100%;
}
.bl_flexbox--anchor-btn .box img {
  object-fit: cover;
}
@media screen and (max-width: 833px) {
  .bl_flexbox--anchor-btn .box img {
    width: 100%;
    max-height: 150px;
  }
}
@media screen and (min-width: 834px) {
  .bl_flexbox--anchor-btn .box img {
    width: 100%;
    max-height: 250px;
  }
}
.bl_flexbox--anchor-btn .box div {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  text-shadow: 1px 1px 5px rgb(0, 0, 0);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bl_flexbox--anchor-btn .box div::after {
  content: "\f105";
  padding-left: 15px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.bl_pankuzu {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1199px) {
  .bl_pankuzu {
    margin-bottom: 80px;
  }
}
.bl_pankuzu .pankuzu {
  display: flex;
}
.bl_pankuzu .pankuzu > li {
  margin-right: 10px;
}
.bl_pankuzu .pankuzu > li:last-child {
  margin-right: 0;
}

.form_wrap.bl_form {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
.form_wrap.bl_form > dl > dt {
  flex-direction: row;
  background-color: #f4faff;
}
@media screen and (min-width: 834px) {
  .form_wrap.bl_form > dl > dt {
    flex-direction: column;
  }
}
@media screen and (max-width: 833px) {
  .form_wrap.bl_form > dl > dt {
    border-right: 1px solid rgb(204, 204, 204);
  }
}
.form_wrap.bl_form > dl > dd > div {
  color: #ff0000;
}

.submit {
  margin-bottom: 120px;
}
@media screen and (min-width: 834px) {
  .submit {
    margin-bottom: 140px;
  }
}

section form p.annot {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  margin: 20px auto 0;
}

.bl_contact-text {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  margin-bottom: 60px;
}
@media only screen and (min-width: 1200px) {
  .bl_contact-text {
    margin-bottom: 80px;
  }
}
.bl_contact-text .privacy-policy {
  color: #6c6cff;
}

.bl_privacy-policy {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  margin-bottom: 60px;
}
@media screen and (min-width: 834px) {
  .bl_privacy-policy {
    margin-bottom: 100px;
  }
}
.bl_privacy-policy h2 {
  margin-bottom: 30px;
  padding-bottom: 15px;
  font-size: 0.3rem;
  border-bottom: 1px solid rgb(0, 0, 0);
}
@media screen and (min-width: 834px) {
  .bl_privacy-policy h2 {
    margin-bottom: 50px;
    font-size: 0.4rem;
  }
}
.bl_privacy-policy p {
  margin-bottom: 60px;
}
@media screen and (min-width: 834px) {
  .bl_privacy-policy p {
    margin-bottom: 100px;
  }
}
.bl_privacy-policy p p:last-of-type {
  margin-bottom: 0;
}

.bl_slick-eye-catch {
  position: relative;
}
.bl_slick-eye-catch__lists {
  position: relative;
  z-index: 1;
}
.bl_slick-eye-catch__list {
  width: 100%;
  height: 100%;
}
.bl_slick-eye-catch__img {
  width: 100%;
  height: 100vw !important;
  min-height: 400px;
  max-height: 400px;
  object-fit: cover;
}
@media screen and (min-width: 834px) {
  .bl_slick-eye-catch__img {
    max-height: 700px;
  }
}
@media only screen and (min-width: 1200px) {
  .bl_slick-eye-catch__img {
    max-height: 900px;
  }
}
.bl_slick-eye-catch__title {
  width: 100%;
  padding: 0 20px;
  font-size: 0.2rem;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
}
@media screen and (min-width: 640px) {
  .bl_slick-eye-catch__title {
    font-size: 0.32rem;
  }
}
@media screen and (min-width: 834px) {
  .bl_slick-eye-catch__title {
    font-size: 0.48rem;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -40%);
  }
}
@media only screen and (min-width: 1200px) {
  .bl_slick-eye-catch__title {
    font-size: 0.6rem;
  }
}
@media only screen and (min-width: 1400px) {
  .bl_slick-eye-catch__title {
    font-size: 0.8rem;
  }
}
.bl_slick-eye-catch__title span {
  display: inline-block;
  white-space: nowrap;
}
.bl_slick-eye-catch .slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -50px 0 0 0;
}
.bl_slick-eye-catch .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.bl_slick-eye-catch .slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  border: none;
  background: #fff;
}

.hp_mb {
  margin-bottom: 30px;
}
@media screen and (min-width: 640px) {
  .hp_mb {
    margin-bottom: 60px;
  }
}

header .ly_header {
  display: flex;
  background-color: rgb(255, 255, 255);
}
header .ly_header.fixed {
  width: 100%;
  border-bottom: 1px solid rgb(204, 204, 204);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  animation: fade 0.2s ease;
}
header .wrapper.ly_header__100 {
  display: flex;
  flex: 1;
  align-items: center;
}
header .header-title {
  font-family: "Noto Serif JP", serif;
  font-size: 0.24rem;
}
@media only screen and (min-width: 1200px) {
  header .header-title {
    margin-right: auto;
  }
}
header .header-title > a {
  font-weight: 700;
}
@media only screen and (min-width: 1200px) {
  header .bl_nav {
    padding-right: 50px;
  }
}
header .contact-btn {
  display: inline-block;
  padding: 30px 50px;
  line-height: 2;
  color: rgb(255, 255, 255);
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}
@media screen and (max-width: 1199px) {
  header .contact-btn {
    display: none;
  }
}
header .bl_slick-eye-catch__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: rgb(255, 255, 255);
  text-shadow: 2px 2px 6px rgb(56, 56, 56);
}

.footer.contact {
  background-color: rgb(236, 240, 243);
}
.footer .contact__btn {
  display: block;
  padding: 140px 0;
}
.footer .contact__btn p {
  text-align: center;
}
.footer .contact__btn .size-l {
  margin-bottom: 25px;
  font-family: "Arial", sans-serif;
  font-size: 0.36rem;
  font-weight: 800;
}
.footer .contact__btn .size-s {
  font-family: "Noto Serif JP", serif;
  font-size: 0.16rem;
  font-weight: 500;
}

footer {
  background-color: rgb(51, 51, 51);
  font-size: 0.14rem;
}
footer .wrapper.ly_footer__inner {
  display: flex;
  font-family: "Noto Serif JP", serif;
  color: rgb(255, 255, 255);
}
@media screen and (max-width: 639px) {
  footer .wrapper.ly_footer__inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 1199px) {
  footer .wrapper.ly_footer__inner {
    padding: 15px 20px;
  }
}
@media only screen and (min-width: 1200px) {
  footer .wrapper.ly_footer__inner {
    padding: 30px 40px;
  }
}
footer .nav {
  margin-right: auto;
}
@media screen and (max-width: 639px) {
  footer .nav {
    margin-bottom: 20px;
  }
}
footer .nav-lists {
  display: flex;
}
footer .nav-list {
  padding: 0 15px;
  border-right: 1px solid rgb(255, 255, 255);
}
footer .nav-list > a:link,
footer .nav-list > a:visited {
  color: rgb(255, 255, 255);
}
footer .nav-list:first-child {
  padding-left: 0;
}
footer .nav-list:last-child {
  padding-right: 0;
  border: none;
}
@media screen and (max-width: 639px) {
  footer .copyright {
    text-align: right;
  }
}

@media screen and (max-width: 833px) {
  .top.sec {
    margin-bottom: 70px;
  }
}
@media screen and (min-width: 834px) {
  .top.sec {
    margin-bottom: 150px;
    position: relative;
  }
}
.top.sec__image > img {
  object-fit: cover;
}
@media screen and (max-width: 833px) {
  .top.sec__image > img {
    width: 100%;
    min-width: 100px;
    max-height: 300px;
  }
}
.top.sec__subtitle {
  color: rgb(194, 213, 227);
  line-height: 1;
  font-family: "Noto Serif JP", serif;
  font-size: 0.2rem;
  font-weight: 500;
}
@media screen and (min-width: 834px) {
  .top.sec__subtitle {
    font-size: 1.5rem;
    position: absolute;
  }
}
.top.sec__subtitle > article > h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}
.top.sec__body {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (min-width: 834px) {
  .top.sec__body {
    position: absolute;
    z-index: 1;
  }
}
.top .bl_h2 {
  margin: 0;
  padding: 0;
  margin-bottom: 100px;
}
@media screen and (max-width: 833px) {
  .top .bl_h2 {
    margin-bottom: 50px;
  }
}
.top .bl_h2-with-subtitle {
  margin: 0;
  margin-bottom: 100px;
}
@media screen and (max-width: 833px) {
  .top .bl_h2-with-subtitle {
    margin-bottom: 50px;
  }
}
.top.bl_h2-with-subtitle > article > h2, .top.bl_h2 > article > h2 {
  letter-spacing: 0.1em;
}
.top.bl_h2-with-subtitle > article > div, .top.bl_h2 > article > div {
  letter-spacing: 0.1em;
}
.top.sec__text {
  font-family: "Noto Serif JP", serif;
  font-size: 0.16rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}
@media screen and (max-width: 833px) {
  .top.sec__text {
    margin-bottom: 50px;
  }
}
.top.sec__btn {
  font-size: 0.16rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 833px) {
  .top.sec__btn {
    text-align: right;
  }
}
@media screen and (min-width: 834px) {
  .top.sec__btn {
    position: absolute;
  }
}
@media screen and (max-width: 833px) {
  .top.sec {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 834px) {
  .top.about-us.sec__image > img {
    width: 50%;
    min-height: 650px;
  }
}
@media only screen and (min-width: 1200px) {
  .top.about-us.sec__image > img {
    min-height: 670px;
  }
}
@media screen and (min-width: 834px) {
  .top.about-us .sec__body {
    width: 80%;
    max-width: 1600px;
    padding: 90px 31.25% 140px 6.25%;
    right: 0;
    bottom: 230px;
  }
}
@media only screen and (min-width: 1200px) {
  .top.about-us .sec__body {
    bottom: 270px;
  }
}
@media screen and (max-width: 833px) {
  .top.about-us .sec__btn {
    text-align: center;
  }
}
@media screen and (min-width: 834px) {
  .top.about-us .sec__btn {
    right: 31.25%;
    bottom: -170px;
  }
}
@media screen and (max-width: 833px) {
  .top.about-us .bl_btn {
    padding: 60px 70px;
    position: relative;
  }
}
@media screen and (min-width: 834px) {
  .top.about-us .bl_btn {
    padding: 120px 140px;
  }
}
.top.about-us .bl_btn::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: rgb(194, 213, 227);
  transform: rotate(45deg);
  position: absolute;
  right: 5px;
  bottom: 0;
  z-index: 3;
}
.top.design-image {
  height: 500px;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
@media screen and (max-width: 833px) {
  .top.design-image {
    display: none;
  }
}
@media screen and (min-width: 834px) {
  .top.service .sec__image > img {
    width: 70%;
    min-height: 700px;
  }
}
@media screen and (min-width: 834px) {
  .top.service .sec__subtitle {
    top: -75px;
    right: 9%;
  }
}
@media screen and (min-width: 834px) {
  .top.service .sec__body {
    width: 80%;
    max-width: 1000px;
    padding: 100px 5% 200px;
    right: 0;
    bottom: 0;
  }
}
.top.service .sec__btn {
  font-size: 0.16rem;
}
@media screen and (min-width: 834px) {
  .top.service .sec__btn {
    bottom: 50px;
  }
}
.top.works .sec__image {
  text-align: right;
}
@media screen and (min-width: 834px) {
  .top.works .sec__image > img {
    width: 70%;
    min-height: 700px;
    float: initial;
  }
}
@media screen and (min-width: 834px) {
  .top.works .sec__subtitle {
    top: -60px;
  }
}
@media screen and (min-width: 834px) {
  .top.works .sec__body {
    width: 80%;
    max-width: 1000px;
    padding: 100px 13.75% 200px 5%;
    left: 0;
    bottom: 0;
  }
}
.top.works .sec__btn {
  font-size: 0.16rem;
}
@media screen and (min-width: 834px) {
  .top.works .sec__btn {
    bottom: 50px;
  }
}
.top.map {
  margin-bottom: 30px;
}
@media screen and (min-width: 834px) {
  .top.map {
    margin-bottom: 50px;
  }
}
.top.table {
  max-width: 1000px;
  margin: 0 auto 50px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

/* 
@use "../setting/forward" as *;

.top {
    &.sec {
        @include bp1200Down {
            margin-bottom: 70px;
        }

        @include bp1200Up {
            margin-bottom: 150px;
            position: relative;
        }
    }

    &.sec__image>img {
        @include bp1200Down {
            width: 100%;
            min-width: 100px;
            max-height: 300px;
        }

        object-fit: cover;
    }

    &.sec__subtitle {
        color: $colorPaleBlue;
        line-height: 1;
        font-family: $fontFamilyNoto;
        font-size: 0.20rem;
        font-weight: $fontWeightNotoMedium;

        @include bp1200Up {
            font-size: 1.5rem;
            position: absolute;
        }
    }

    &.sec__subtitle>article>h3 {
        font-family: $fontFamilyNotoSans;
        font-weight: $fontWeightNotoSansMedium;
        letter-spacing: 0;
    }

    &.sec__body {
        padding-top: 50px;
        padding-bottom: 50px;

        @include bp1200Up {
            position: absolute;
            z-index: 1;
        }
    }

    .bl_h2 {
        margin: 0;
        padding: 0;
        margin-bottom: $marginBottom * 1;

        @include bp1200Down {
            margin-bottom: $marginBottom * 0.5;
        }
    }

    .bl_h2-with-subtitle {
        margin: 0;
        margin-bottom: $marginBottom * 1;

        @include bp1200Down {
            margin-bottom: $marginBottom * 0.5;
        }
    }

    &.bl_h2-with-subtitle>article>h2,
    &.bl_h2>article>h2 {
        letter-spacing: 0.1em;
    }

    &.bl_h2-with-subtitle>article>div,
    &.bl_h2>article>div {
        letter-spacing: 0.1em;
    }

    &.sec__text {
        font-family: $fontFamilyNoto;
        font-size: 0.16rem;
        font-weight: $fontWeightNotoSemiBold;
        letter-spacing: 0.16em;

        @include bp1200Down {
            margin-bottom: 50px;
        }
    }

    &.sec__btn {
        font-size: 0.16rem;
        letter-spacing: 0.1em;

        @include bp1200Down {
            text-align: right;
        }

        @include bp1200Up {
            position: absolute;
        }
    }

    // セクション：有限会社菊池について
    &.about-us.sec__image>img {
        @include bp1200Up {
            width: 50%;
            min-height: 670px;
        }
    }

    &.about-us .sec__body {
        @include bp1200Up {
            width: 80%;
            max-width: 1600px;
            padding: 90px 31.25% 140px 6.25%;
            right: 0;
            bottom: 270px;
        }
    }

    &.about-us .sec__btn {

        @include bp1200Down {
            text-align: center;
        }

        @include bp1200Up {
            right: 31.25%;
            bottom: -170px;
        }
    }

    &.about-us .bl_btn {
        @include bp1200Down {
            padding: 60px 70px;
            position: relative;
        }

        @include bp1200Up {
            padding: 120px 140px;
        }
    }

    &.about-us .bl_btn::before {
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: $colorPaleBlue;
        transform: rotate(45deg);
        position: absolute;
        right: 5px;
        bottom: 0;
        z-index: 3;
    }

    // セクション：デザイン用画像
    &.design-image {
        @include bp1200Down {
            display: none;
        }
    }

    &.design-image>img {
        max-width: 100%;
    }

    // セクション：事業内容
    &.service .sec__image>img {
        @include bp1200Up {
            width: 70%;
            min-height: 700px;
        }
    }

    &.service .sec__subtitle {
        @include bp1200Up {
            top: -75px;
            right: 9%;
        }
    }

    &.service .sec__body {
        @include bp1200Up {
            width: 80%;
            max-width: 1000px;
            padding: 100px 5% 200px;
            right: 0;
            bottom: 0;
        }
    }

    &.service .sec__btn {
        font-size: 0.16rem;

        @include bp1200Up {
            bottom: 50px;
        }
    }

    // セクション：実績
    &.works .sec__image {
        text-align: right;
    }

    &.works .sec__image>img {
        @include bp1200Up {
            width: 70%;
            min-height: 700px;
            float: initial;
        }
    }

    &.works .sec__subtitle {
        @include bp1200Up {
            top: -60px;
        }
    }

    &.works .sec__body {

        @include bp1200Up {
            width: 80%;
            max-width: 1000px;
            padding: 100px 13.75% 200px 5%;
            left: 0;
            bottom: 0;
        }
    }

    &.works .sec__btn {
        font-size: 0.16rem;

        @include bp1200Up {
            bottom: 50px;
        }
    }

    // コンテンツ：マップ
    &.map {
        margin-bottom: 30px;

        @include bp1200Up {
            margin-bottom: 50px;
        }
    }

    // コンテンツ：会社概要
    &.table {
        max-width: 1000px;
        margin: 0 auto 50px;
        font-family: $fontFamilyNoto;
        font-weight: $fontWeightNotoMedium;
    }

    // コンテンツ：お問い合わせボタン
    &.contact {
        background-color: $colorBlueGrey;
    }

    & .contact__btn {
        display: block;
        padding: 140px 0;
    }

    & .contact__btn p {
        text-align: center;
    }

    & .contact__btn .size-l {
        margin-bottom: 25px;
        font-family: $fontFamilyArial;
        font-size: 0.36rem;
        font-weight: $fontWeightArialBold;
    }

    & .contact__btn .size-s {
        font-family: $fontFamilyNoto;
        font-size: 0.16rem;
        font-weight: $fontWeightNotoMedium
    }
} */
.about .box {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: rgb(255, 255, 255);
  font-family: "Noto Serif JP", serif;
  font-size: 0.2rem;
  font-weight: 600;
}
.about .box a {
  display: flex;
  flex: 1;
}
.about .box div {
  align-items: baseline;
}

.recruit.recommend > dl {
  margin-bottom: 40px;
}
@media screen and (max-width: 833px) {
  .recruit.recommend > dl {
    display: flex;
    flex-direction: column;
  }
}
.recruit.recommend > dl > dt {
  display: flex;
  flex-direction: row;
  padding: 0;
  color: #ff3f3f;
  font-size: 0.22rem;
  font-weight: 700;
}
@media screen and (max-width: 833px) {
  .recruit.recommend > dl > dt {
    margin-bottom: 15px;
    justify-content: flex-start;
  }
}
.recruit.recommend > dl > dt::after {
  content: "\f00c";
  padding-left: 15px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.recruit.recommend > dl > dd {
  padding: 0;
}
@media screen and (min-width: 834px) {
  .recruit.recommend > dl > dd {
    padding-left: 20px;
  }
}
.recruit.bl_table--negative-row {
  margin-bottom: 40px;
}
@media only screen and (min-width: 1200px) {
  .recruit.bl_table--negative-row {
    margin-bottom: 60px;
  }
}

.company.bl_map {
  margin-bottom: 80px;
}
@media only screen and (min-width: 1200px) {
  .company.bl_map {
    margin-bottom: 120px;
  }
}

.error404.text div {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
.error404.btn {
  text-align: right;
}
.error404 .bl_btn {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 0.2rem;
  margin-bottom: 60px;
}
@media only screen and (min-width: 1200px) {
  .error404 .bl_btn {
    margin-bottom: 80px;
  }
}

section.blog * {
  color: rgb(0, 0, 0) !important;
}

/* ================================================================= 
 License : e-TRUST Inc.
 File name : blog.css
 Style : reset & default
 文字コード UTF-8N 改行コード LF
 Build 20210108
================================================================= */
* {
  box-sizing: border-box;
}

.blog img {
  border: 0px;
  max-width: 100%;
}

.blog video {
  max-width: 100%;
}

.blog input,
.blog textarea,
.blog select,
.blog button {
  margin: 0;
  padding: 4px 2px;
  font-size: 0.16rem;
}

a {
  /*a_color*/
}

a:hover,
a:active {
  /*a_hover*/
}

a:visited {
  /*a_visit*/
}

a:focus {
  outline: none;
}

html .blog .clearfix {
  height: 1%;
}

.blog .clearfix {
  display: block;
}

.blog .clearfix:after {
  clear: both;
  display: block;
  height: 0px;
  line-height: 0px;
  content: ".";
  visibility: hidden;
}

.blog select {
  padding: 4px 2px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #ccc;
  font-size: 0.16rem;
  max-width: 100%;
}

.blog div.wrap {
  width: 96%;
  max-width: 1080px;
  margin: 0 auto;
}

#main_image {
  width: 100%;
  height: 300px;
  /*main_height*/
  /*main_image*/
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.blog div.wrap {
  padding: 20px 0;
  /*cbg_color*/
  /*cbg_image*/
  /*cbg_repeat*/
  display: flex;
}

.blog aside {
  padding: 0 10px;
  width: 25%;
  min-width: 200px;
  overflow: hidden;
}

.blog div#contents {
  width: 75%;
  overflow: hidden;
}

aside div#prof a {
  display: block;
  width: 100%;
  height: 30px;
  text-align: right;
  padding-right: 10px;
}

aside div#search {
  position: relative;
}

aside div#search input {
  width: 100%;
}

aside div#search button {
  position: absolute;
  top: 1px;
  right: 5px;
  width: 28px;
  height: 28px;
  border: none;
  background: url(../img/search.png) no-repeat;
  background-size: 22px;
  background-position: center center;
  text-indent: -9999px;
}

aside h3,
aside nav > div {
  font-size: 0.16rem;
  line-height: 50px;
  color: #6b6b6b;
}

aside h3:nth-of-type(2),
aside nav > div:nth-of-type(2) {
  margin-top: 20px;
}

aside nav {
  padding: 20px 0;
}

aside nav > a {
  display: block;
  text-align: right;
  padding-right: 10px;
  margin-top: 10px;
}

aside ul li {
  padding: 10px 0;
  border-bottom: 1px dashed #ccc;
}

aside ul li:first-child {
  border-top: 1px solid #ccc;
}

aside ul li a span:nth-of-type(2) {
  display: block;
}

.blog div#contents div.pager {
  line-height: 30px;
  padding: 0 10px 50px 10px;
}

.blog div#contents div.pager a.next {
  float: right;
}

.blog div#contents div#blog_detail {
  padding: 10px 10px 0 10px;
}

.blog div#contents div#prof_detail img {
  padding: 0 10px;
  float: right;
}

.blog div#contents div#prof_detail div#prof_text {
  clear: right;
  padding: 10px;
}

.blog div#contents article {
  padding: 0 10px 10px 10px;
}

.blog div#contents article div.date {
  line-height: 30px;
  color: #00a2ff;
}

.blog div#contents article h1,
.blog div#contents article h2 {
  padding-bottom: 20px;
  line-height: 30px;
  font-size: 0.24rem;
  color: #4a3e3e;
}

.blog div#contents article h1 span:nth-of-type(2),
.blog div#contents article h2 span:nth-of-type(2) {
  display: block;
  font-size: 0.12rem;
}

.blog div#contents article ul {
  margin-bottom: 10px;
}

.blog div#contents article ul li {
  float: left;
  list-style: none;
}

.blog div#contents article ul li a {
  display: block;
  line-height: 30px;
  margin-right: 10px;
}

.blog div#contents article div.flex {
  display: flex;
  flex-direction: column;
}

.blog div#contents article div.flex_images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.blog div#contents article img,
.blog div#contents article video {
  margin: 10px 10px 10px 0;
}

.blog div#contents div.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.blog div#contents div.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.blog div#contents article div.sns {
  display: flex;
  justify-content: center;
}

.blog div#contents article div.sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  width: 200px;
  height: 45px;
  border-radius: 3px;
  text-decoration: none;
}

.blog div#contents article div.sns a span {
  color: #fff;
  font-size: 0.16rem;
}

.blog div#contents article div.sns a i {
  display: block;
  width: 40px;
  height: 40px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.blog div#contents article div.sns a.tw {
  background: #1da1f2;
}

.blog div#contents article div.sns a.fb {
  background: #2f6db6;
}

.blog div#contents article div.sns a.line {
  background: #00b900;
}

.blog div#contents article div.sns a.tw i {
  background-image: url(../img/TW.png);
}

.blog div#contents article div.sns a.fb i {
  background-image: url(../img/FB.png);
  background-size: 28px;
  background-position: center 3px;
}

.blog div#contents article div.sns a.line i {
  background-image: url(../img/LINE.png);
}

.blog div#contents > dl {
  display: block;
  margin: 0 10px 20px 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.blog div#contents > dl dt {
  font-size: 0.16rem;
  line-height: 30px;
  margin-bottom: 10px;
}

.blog div#contents > dl dt span {
  display: block;
  font-size: 0.16rem;
}

.blog div#contents > dl ul li {
  float: left;
  list-style: none;
}

.blog div#contents > dl ul li a {
  display: block;
  line-height: 30px;
  margin-right: 10px;
}

.blog div#contents > dl dt span:nth-of-type(2) {
  display: block;
  font-size: 0.16rem;
}

/* ================================================================= 
 ver5 calendar
================================================================= */
div#form_calendar {
  width: 100%;
  max-width: 300px;
  margin: 10px auto 10px auto;
}

div#form_calendar div.head {
  position: relative;
  width: 100%;
  height: 30px;
  text-align: center;
}

div#form_calendar div.head span {
  position: absolute;
  display: block;
  line-height: 30px;
  font-size: 0.12rem;
  font-weight: bold;
  color: #6b6b6b;
}

div#form_calendar div.head span:nth-of-type(1) {
  top: 0;
  left: 0;
  width: 20px;
  font-size: 0.2rem;
}

div#form_calendar div.head span:nth-of-type(2) {
  top: 0;
  left: 25px;
}

div#form_calendar div.head span:nth-of-type(3) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.16rem;
}

div#form_calendar div.head span:nth-of-type(4) {
  top: 0;
  right: 25px;
}

div#form_calendar div.head span:nth-of-type(5) {
  top: 0;
  right: 0;
  width: 20px;
  font-size: 0.2rem;
}

div#form_calendar div.head span:nth-of-type(1):hover,
div#form_calendar div.head span:nth-of-type(5):hover {
  color: #6f94f5;
  cursor: pointer;
}

div#form_calendar table {
  table-layout: fixed;
  border-collapse: collapse;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  width: 100%;
}

div#form_calendar table thead tr th {
  border: none;
  text-align: center;
  font-size: 0.12rem;
  font-weight: normal;
  color: #6b6b6b;
}

div#form_calendar table tbody tr {
  height: 30px;
}

div#form_calendar table tbody tr td {
  border: none;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  text-align: center;
  position: relative;
}

div#form_calendar table tbody tr td:first-of-type {
  border-left: 1px solid #ccc;
  background: #f1f1f1;
}

div#form_calendar table tbody tr td.other {
  background: #f9f9f9;
}

div#form_calendar table tbody tr td label {
  font-size: 0.12rem;
}

div#form_calendar table tbody tr td:last-of-type label {
  color: #6f94f5;
}

div#form_calendar table tbody tr td:first-of-type label,
div#form_calendar table tbody tr td.holiday label {
  color: #f17878;
}

div#form_calendar table tbody tr td.other label {
  font-size: 0.12rem;
  color: #ccc;
}

div#form_calendar table tbody tr td.other:last-of-type label {
  color: #92adf3;
}

div#form_calendar table tbody tr td.other:first-of-type label,
div#form_calendar table tbody tr td.other.holiday label {
  color: #f5acac;
}

div#form_calendar table tbody tr td:hover {
  background: rgba(0, 200, 255, 0.82) !important;
  cursor: pointer;
}

div#form_calendar table tbody tr td:hover label {
  cursor: pointer;
}

div#form_calendar table tbody tr td.open {
  background: rgba(120, 220, 255, 0.56);
}

div#form_calendar table tbody tr td.close {
  background: rgba(255, 180, 240, 0.56);
}

div#form_calendar table tbody tr td.blog label {
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  background: #ffc5c5;
  border-radius: 11px;
}

div#form_calendar dl.open,
div#form_calendar dl.close {
  display: flex;
  font-size: 0.12rem;
}

div#form_calendar dl.open label,
div#form_calendar dl.close label {
  display: inline-block;
  margin-right: 10px;
  width: 30px;
  height: 20px;
  font-size: 0.12rem;
}

div#form_calendar dl.open label {
  background: rgba(120, 220, 255, 0.56);
}

div#form_calendar dl.close label {
  background: rgba(255, 180, 240, 0.56);
}

/* ================================================================= 
 ver5 builingual
================================================================= */
div#builingual {
  background: #f1f1f1;
  padding: 5px 0;
}

div#builingual div.progress {
  display: none;
  float: left;
  line-height: 32px;
  color: #2e7200;
  font-weight: bold;
}

div#builingual div.progress img {
  float: left;
  margin-top: 4px;
  padding: 0 10px 0 20px;
}

div#builingual div.language {
  float: right;
  color: #999;
  font-weight: bold;
}

div#builingual div.language select {
  margin: 0 20px 0 10px;
}

div.translate {
  margin: 30px 0 30px 0;
}

.blog div#contents div#blog_detail + div.translate {
  margin: 10px 10px 30px 10px;
}

.blog div#contents article > p + div.translate {
  margin: 5px 0 30px 0;
}

/* ================================================================= 
 added: 190216 ver5 form ビルドコンテンツ挿入時に必要
================================================================= */
.blog div.form_wrap dl {
  display: flex;
}

.blog div.form_wrap dl dt {
  border: 1px solid #ccc;
  border-right: none;
  border-bottom: none;
  background-color: #f5f5f5;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
}

.blog div.form_wrap dl dd {
  border: 1px solid #ccc;
  border-bottom: none;
  background-color: #fff;
  padding: 8px;
  box-sizing: border-box;
}

.blog div.form_wrap dl:last-of-type dt {
  border-bottom: 1px solid #ddd;
}

.blog div.form_wrap dl:last-of-type dd {
  border-bottom: 1px solid #ddd;
}

.blog div.form_wrap dl dt label,
.blog div.form_wrap p.annot {
  color: #ff0000;
}

.blog div.form_wrap dl dd > div {
  display: flex;
}

.blog div.form_wrap dl dd input[type=text],
.blog div.form_wrap dl dd input[type=password] {
  width: 300px;
  max-width: 100%;
}

.blog div.form_wrap dl dd div input[type=text],
.blog form div.form_wrap dl dd div select {
  margin-bottom: 8px;
}

.blog div.form_wrap dl dd div:last-of-type input[type=text],
.blog div.form_wrap dl dd div:last-of-type select {
  margin-bottom: 0;
}

.blog div.form_wrap dl dd span {
  margin-right: 8px;
  line-height: 32px;
}

.blog div.form_wrap dl dd input[type=text] + span,
.blog div.form_wrap dl dd select + span {
  margin-left: 8px;
}

.blog div.form_wrap dl dd p {
  margin-top: 4px;
}

.blog div.form_wrap dl dd.addr input,
.blog div.form_wrap dl dd.ship_addr input {
  width: 100%;
}

.blog div.form_wrap dl dd.addr select,
.blog div.form_wrap dl dd.ship_addr select {
  width: 122px !important;
}

.blog div.form_wrap dl dd.addr div:nth-of-type(1) input,
.blog div.form_wrap dl dd.ship_addr div:nth-of-type(1) input {
  width: 100px !important;
  text-align: center;
}

.blog div.form_wrap dl dd.date div,
.blog div.form_wrap dl dd.birthday div,
.blog div.form_wrap dl dd.is_entry div {
  float: left;
  margin-right: 8px;
}

.blog div.form_wrap dl dd.is_entry div {
  display: flex;
  height: 32px;
  align-items: center;
}

.blog div.form_wrap dl dd.is_entry label {
  width: 80px;
}

.blog div.form_wrap dl dd.is_entry input[type=text] {
  width: 160px !important;
}

.blog div.form_wrap dl dd.date input,
.blog div.form_wrap dl dd.birthday input {
  width: 80px !important;
  text-align: center;
}

.blog div.form_wrap dl dd.date select,
.blog div.form_wrap dl dd.birthday select {
  width: 60px !important;
}

.blog div.form_wrap dl dd.date p,
.blog div.form_wrap dl dd.birthday p,
.blog div.form_wrap dl dd.is_entry p {
  padding-top: 4px;
  clear: left;
}

.blog div.form_wrap dl dd.date div:last-of-type input[type=text],
.blog div.form_wrap dl dd.birthday div:last-of-type input[type=text],
.blog div.form_wrap dl dd.date div:last-of-type select,
.blog div.form_wrap dl dd.birthday div:last-of-type select {
  margin-bottom: 8px;
}

.blog div.form_wrap dl dd.number input {
  width: 60px !important;
  text-align: right;
}

.blog div.form_wrap dl dd.radio label,
.blog div.form_wrap dl dd.checkbox label {
  display: inline-block;
  min-width: 80px;
  margin-right: 8px;
}

.blog div.form_wrap.confirm dl dd span {
  color: #ff0000;
}

.blog div.form_wrap.message {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  margin: 50px 20px 20px 20px;
  border-radius: 2px;
}

.blog div.form_wrap.message ul li {
  font-size: 0.2rem;
  margin-bottom: 10px;
}

.blog div.form_wrap.message p span {
  width: 100%;
  display: block;
  margin-top: 15px;
  font-size: 0.12rem;
}

.blog div.form_wrap.error {
  background: #ff0000;
  color: #fff;
  margin-bottom: 10px;
}

.blog div.form_wrap.error p {
  padding: 5px;
}

/* ================================================================= 
 スマホ　CSS
================================================================= */
@media screen and (max-width: 639px) {
  .blog div.wrap {
    flex-direction: column-reverse;
  }
  .blog aside {
    width: 98%;
  }
  .blog div#contents {
    width: 98%;
  }
  .blog div#contents article div.sns a {
    background: initial !important;
    width: 40px;
    width: 40px;
  }
  .blog div#contents article div.sns a span {
    display: none;
  }
  .blog div#contents article div.sns a i {
    background-size: 40px 40px !important;
    background-position: center center !important;
  }
  /*-----------------------------------------
   added: 190116 table style sp ビルドコンテンツ挿入時に必要
  ------------------------------------------- */
  .tbl_block th {
    text-align: center;
  }
  .tbl_block th,
.tbl_block td {
    display: block;
  }
  .tbl_scroll {
    overflow-x: auto;
    white-space: nowrap;
  }
}
.imgL {
  float: left;
  margin-right: 10px;
}

.imgR {
  float: right;
  margin-left: 10px;
}

.imgC {
  margin: 0px auto 0px auto;
  display: block;
}

.blog > div.wrap {
  max-width: 1300px;
  margin: 0 auto;
}
@media only screen and (min-width: 1200px) {
  .blog > div.wrap {
    padding: 0 50px;
  }
}
@media screen and (max-width: 1199px) {
  .blog > div.wrap {
    padding: 0 40px;
  }
}
@media screen and (max-width: 639px) {
  .blog > div.wrap {
    padding: 0 25px;
  }
}

.blog > .wrap.clearfix::after {
  display: none;
}

@media screen and (min-width: 640px) {
  .blog > .wrap > aside {
    flex: 25%;
    width: initial;
    min-width: 220px;
    margin-right: 5vw;
    padding: 0;
  }
}
@media screen and (max-width: 639px) {
  .blog > .wrap > aside {
    width: 100%;
    padding: 0;
  }
}

.blog aside div#search > form {
  position: relative;
}

.blog aside div#search button {
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translate(-2%, -50%);
}

.blog #form_calendar {
  max-width: 100%;
  min-width: 0;
}

.blog nav > div {
  text-align: left;
}

.blog .pages > li {
  text-align: left;
}

@media screen and (max-width: 639px) {
  .blog div#contents {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 640px) {
  .blog div#contents {
    flex: 70%;
    width: initial;
    margin: 0;
  }
}
.blog div#contents > article > div > article {
  padding: 0;
}
@media (max-width: 640px) {
  .blog div#contents {
    min-width: 0;
  }
}
@media screen and (min-width: 641px) and (max-width: 834px) {
  .blog div#contents {
    min-width: 0;
  }
}

@media screen and (max-width: 639px) {
  .blog div#contents > article {
    padding: 0;
  }
}
@media screen and (min-width: 640px) {
  .blog div#contents > article {
    margin-bottom: 10px;
    padding: 0;
  }
}

@media screen and (min-width: 640px) {
  .blog div#contents > article:last-child {
    margin-bottom: 0px;
  }
}

.blog * {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

.blog div#contents .date {
  margin-bottom: 10px;
}
.blog div#contents > article > h1 {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(204, 204, 204);
  font-size: 0.3rem;
  font-weight: 700;
}

.blog.bl_sub-eye-catch-with-subtitle {
  margin-bottom: 120px;
}
@media screen and (max-width: 1199px) {
  .blog.bl_sub-eye-catch-with-subtitle {
    margin-bottom: 80px;
  }
}
.blog.heading h2 {
  position: relative;
  margin-bottom: 10px;
  padding: 10px;
  font-size: 0.24rem;
  text-align: center !important;
  width: 100%;
}
@media screen and (min-width: 640px) {
  .blog.heading h2 {
    margin-bottom: 20px;
  }
}
.blog.heading h2::before, .blog.heading h2::after {
  position: absolute;
  content: "";
}
.blog.heading h2::before {
  right: 0;
  bottom: 0;
  width: 45px;
  height: 45px;
  border-right: 2px solid rgba(160, 216, 239, 0.9);
  border-bottom: 2px solid rgba(160, 216, 239, 0.9);
}
.blog.heading h2::after {
  top: 0;
  left: 0;
  width: 45px;
  height: 45px;
  border-top: 2px solid rgba(160, 216, 239, 0.9);
  border-left: 2px solid rgba(160, 216, 239, 0.9);
}
.blog.heading h3 {
  position: relative;
  margin-bottom: 10px;
  padding: 10px;
  font-size: 0.24rem;
  text-align: center !important;
  width: 100%;
}
@media screen and (min-width: 640px) {
  .blog.heading h3 {
    margin-bottom: 20px;
  }
}
.blog.heading h3::before, .blog.heading h3::after {
  position: absolute;
  content: "";
}
.blog.heading h3::before {
  right: 0;
  bottom: 0;
  width: 45px;
  height: 45px;
  border-right: 2px solid rgba(160, 216, 239, 0.9);
  border-bottom: 2px solid rgba(160, 216, 239, 0.9);
}
.blog.heading h3::after {
  top: 0;
  left: 0;
  width: 45px;
  height: 45px;
  border-top: 2px solid rgba(160, 216, 239, 0.9);
  border-left: 2px solid rgba(160, 216, 239, 0.9);
}
.blog.text {
  margin-bottom: 60px;
}
@media screen and (min-width: 640px) {
  .blog.text {
    margin-bottom: 80px;
  }
}/*# sourceMappingURL=common_style.css.map */