/*=============================================
 * body
 *=============================================*/
body {
   background: #fff;
   color: #465E68;
   font-family: "Noto Sans JP", sans-serif;
   font-weight: 400;
   font-size: 16px;
   line-height: 30px;
   letter-spacing: 0.05em;
   min-width: inherit;
   min-height: inherit;
   max-height: 100%;
   word-break: break-word;
}

@media screen and (max-width: 767px) {
   body {
      font-size: 14px;
      line-height: 24px;
   }
}

/*=============================================
 * <main>
 *=============================================*/
main {
   clear: both;
   width: 100%;
   box-sizing: border-box;
   position: relative;
   margin: 0;
   padding: 0;
}

/* =============================================
 * Custom
*=============================================*/
.h-27 {
   font-weight: 500;
   font-size: 27px;
   letter-spacing: 0.05em;
   line-height: 50px;
}

@media screen and (max-width: 767px) {
   .h-27 {
      font-size: 20px;
      line-height: 30px;
   }
}

/* button */
.button {
   position: relative;
}

.button a {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   width: 390px;
   height: 71px;
   background-color: #465E68;
   border: 0;
   color: #fff;
   font-weight: 400;
   font-size: 14px;
   letter-spacing: 0.05em;
   line-height: 20px;
   box-sizing: border-box;
   padding: 0;
   position: relative;
   z-index: 1;
   border-radius: 5px;
}

.button a:hover {
   background-color: #000;
   opacity: 1;
}

@media screen and (max-width: 767px) {
   .button {
      text-align: center;
   }

   .button a {
      width: 100%;
      max-width: 390px;
   }
}

/* -- -- */
.txt-udl {
   text-decoration: underline;
}

a.txt-udl:hover {
   text-decoration: none;
}

.txt-c {
   text-align: center;
}

.txt-j {
   text-align: justify;
}

.txt-r {
   text-align: right;
}

.cl-blue {
   color: #3D9FCA;
}

.cl-green {
   color: #77D1A0;
}

.cl-red {
   color: #BD3A43;
}

.cl-yellow {
   color: #FFB357;
}

.cl-black {
   color: #4B4B4B;
}

.cl-white {
   color: #fff;
}

.udl01 {
   background-image: linear-gradient(#AE0615, #AE0615);
   background-size: 100% 17px;
   background-repeat: no-repeat;
   background-position: left bottom;
}

.udl02 {
   background-image: linear-gradient(#002A7D, #002A7D);
   background-size: 100% 17px;
   background-repeat: no-repeat;
   background-position: left bottom;
}

.fw-r {
   font-weight: 400;
}

.fw-m {
   font-weight: 500;
}

.fw-b {
   font-weight: 700;
}

.fw-black {
   font-weight: 900;
}

.bdra-10 {
   border-radius: 10px;
}

.bdra-20 {
   border-radius: 20px;
}

.bdra-30 {
   border-radius: 30px;
}

.img_shadow {
   box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
}

.img-obj {
   width: 100%;
   max-width: inherit;
   height: 100%;
   object-fit: cover;
}

@media screen and (max-width: 767px) {
   .bdra-20 {
      border-radius: 10px;
   }

   .bdra-30 {
      border-radius: 15px;
   }
}

/* -- --*/
.w600 {
   max-width: 600px;
   margin: 0 auto;
}

.w800 {
   max-width: 800px;
   margin: 0 auto;
}

.w900 {
   max-width: 900px;
   margin: 0 auto;
}

/* -- --*/
.section-space {
   padding: 100px 0;
}

.pt80 {
   padding-top: 80px;
}

.pt120 {
   padding-top: 120px;
}

.pb80 {
   padding-bottom: 80px;
}

.pb100 {
   padding-bottom: 100px;
}

.pb120 {
   padding-bottom: 120px;
}

.pb200 {
   padding-bottom: 200px;
}

@media screen and (max-width: 1080px) {
   .section-space {
      padding-right: 0;
      padding-left: 0;
   }
}

@media screen and (max-width: 767px) {
   .section-space {
      padding: 50px 0;
   }

   .pt80 {
      padding-top: 40px;
   }

   .pt120 {
      padding-top: 60px;
   }

   .pb80 {
      padding-bottom: 40px;
   }

   .pb100 {
      padding-bottom: 50px;
   }

   .pb120 {
      padding-bottom: 60px;
   }

   .pb200 {
      padding-bottom: 100px;
   }
}

/* -- --*/
.bg-cl01 {
   background-color: #77D1A0;
}

.bg-cl02 {
   background-color: #F3F7F8;
}

/* -- -- */
.img-zoom,
.img-zoom figure {
   display: block;
   overflow: hidden;
}

.img-zoom .img,
.img-zoom .img-obj {
   transition: 0.6s ease-in-out;
}

.img-zoom:hover .img,
.img-zoom:hover .img-obj {
   transform: scale(1.07);
}

/* -- --*/
.photo-full img {
   width: 100%;
   max-width: inherit;
}

@media screen and (max-width: 767px) {
   .photo-full {
      width: 100%;
      height: 50vw;
   }

   .photo-full img {
      height: 100%;
      object-fit: cover;
   }
}

/* -- --*/
hr {
   border: 0;
   border-bottom: 1px solid #fff;
}

/*=============================================
 * <header>
 *=============================================*/
header {
   width: 100%;
   padding: 50px 0 58px;
   position: fixed;
   top: 0;
   left: 0;
   z-index: 100;
   box-sizing: border-box;
   background: url("../img/common/header-bg.png") no-repeat center bottom/cover;
}

header .logo {
   width: 173px;
   margin: 0 auto;
}

body:not(.home) header {
   position: sticky;
}

body:not(.home) section {
   padding-top: 50px;
}

@media screen and (max-width: 767px) {
   header {
      padding: 20px 0;
   }

   header .logo {
      width: 120px;
   }
}

/*=============================================
 * <footer>
 *=============================================*/
footer {
   background: url("../img/common/footer-bg.png") no-repeat center top/cover;
   padding: 78px 0 74px;
}

footer .logo {
   width: 172px;
   margin: 0 auto;
}

@media screen and (max-width: 767px) {
   footer {
      padding: 30px 0;
   }

   footer .logo {
      width: 120px;
   }
}

/*=============================================
 * <section>
 *=============================================*/
section {
   min-height: calc(100vh - 444px);
}

#kv {
   position: relative;
}

/*=============================================
 * breadcrumbs
 *=============================================*/
.breadcrumbs {
   position: relative;
}

/* =============================================
 * 404
 *=============================================*/
#content-404 {
   padding: 160px 0 100px;
}

#content-404 .txt {
   padding-top: 40px;
}

#content-404 .button {
   padding-top: 40px;
}

@media screen and (max-width: 767px) {
   #content-404 {
      padding: 50px 0;
   }

   #content-404 .txt {
      padding-top: 30px;
   }

   #content-404 .button {
      padding-top: 30px;
   }
}

/*=============================================
 * wpcf7
 *=============================================*/
.wpcf7 {
   position: relative;
}

.wpcf7 .select {
   position: relative;
}

.wpcf7 .select {
   display: flex;
   align-items: flex-start;
   width: 100%;
   position: relative;
}

.wpcf7 .select .wpcf7-form-control-wrap {
   display: block;
   flex: 1;
   position: relative;
}

.wpcf7 .select .wpcf7-form-control-wrap::after {
   content: '';
   width: 15px;
   height: 8px;
   background: url("../img/common/icon-angle-down.png") no-repeat center top/cover;
   position: absolute;
   top: 19px;
   right: 20px;
}

.wpcf7 .select select {
   display: block;
   width: 100%;
   height: 100%;
   -webkit-appearance: none;
   -moz-appearance: none;
   outline: 0;
   box-shadow: none;
   background-color: #EAEAEA;
   border: 0;
   border-radius: 5px;
   line-height: 30px;
   padding: 8px 20px;
   cursor: pointer;
}

.wpcf7 .select select::-ms-expand {
   display: none;
}

.wpcf7 input:not([type="checkbox"], [type="radio"]),
.wpcf7 textarea {
   display: block;
   width: 100%;
   background-color: #EAEAEA;
   border: 0;
   border-radius: 5px;
   outline: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   box-sizing: border-box;
   padding: 8px 20px;
   line-height: 30px;
}

.wpcf7 textarea {
   height: 175px;
   resize: vertical;
}

.wpcf7 input[type="date"] {
   padding-right: 40px;
}

.wpcf7 input[type="date"]::-webkit-calendar-picker-indicator {
   width: 100%;
   height: 100%;
   cursor: pointer;
   background-position: top 22px right 15px;
   background-size: 18px auto;
   position: absolute;
   top: 0;
   left: 0;
}

.wpcf7 ::-webkit-input-placeholder {
   color: #C1C1C1;
}

.wpcf7 ::-moz-placeholder {
   color: #C1C1C1;
}

.wpcf7 :-ms-input-placeholder {
   color: #C1C1C1;
}

.wpcf7 :-moz-placeholder {
   color: #C1C1C1;
}

.wpcf7-checkbox,
.wpcf7-radio {
   display: flex;
   flex-direction: column;
   gap: 10px;
   line-height: 20px;
}

.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-radio .wpcf7-list-item {
   display: block;
   margin-left: 0;
   cursor: pointer;
}

.wpcf7-checkbox input,
.wpcf7-radio input {
   display: none;
}

.wpcf7-checkbox .wpcf7-list-item-label,
.wpcf7-radio .wpcf7-list-item-label {
   display: inline-grid;
   grid-template-columns: 14px 1fr;
   align-items: flex-start;
   gap: 5px;
   cursor: pointer;
}

.wpcf7-checkbox .wpcf7-list-item-label:before,
.wpcf7-checkbox .wpcf7-list-item-label:after,
.wpcf7-radio .wpcf7-list-item-label:before,
.wpcf7-radio .wpcf7-list-item-label:after {
   content: '';
   grid-area: 1/1;
   margin: auto;
   border-radius: 3px;
}

.wpcf7-checkbox .wpcf7-list-item-label:before,
.wpcf7-radio .wpcf7-list-item-label:before {
   width: 14px;
   height: 14px;
   border: 1px solid #707070;
   box-sizing: border-box;
   position: relative;
   top: 2px;
}

.wpcf7-checkbox .wpcf7-list-item-label:after,
.wpcf7-radio .wpcf7-list-item-label:after {
   width: 10px;
   height: 10px;
   background-color: #465E68;
   position: relative;
   top: 2px;
   display: none;
}

.wpcf7-checkbox input:checked+.wpcf7-list-item-label:after,
.wpcf7-radio input:checked+.wpcf7-list-item-label:after {
   display: block;
}

.wpcf7 .wpcf7-not-valid-tip {
   font-size: 12px;
   color: #E50012;
}

.wpcf7 .result-txt {
   display: block;
   word-break: break-all;
   white-space: pre-wrap;
}

/*=============================================
 * elementor
 *=============================================*/
.elementor-element {
   padding: 0;
}

.elementor-widget-heading .elementor-heading-title {
   font-family: inherit;
   font-weight: inherit;
   color: inherit;
}

.elementor-heading-title {
   line-height: inherit;
}

.elementor-widget-text-editor {
   font-family: inherit;
   font-weight: inherit;
   color: inherit;
}

@media screen and (max-width: 767px) {
   .elementor-element.wrap {
      padding: 0 20px;
   }
}

/*=============================================
 * 
 *=============================================*/
.js-title-text {
   display: inline-block;
   overflow: hidden;
}

.js-title-text span {
   display: inline-block;
   opacity: 0;
   transform: translate(0, 100%) skewX(1deg);
   transition: opacity .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scrollIn .js-title-text span {
   opacity: 1;
   transform: translate(0, 0%) skewX(0deg);
}