/*
Theme Name: Your Theme Name
Author: Your Name
Description: Your theme description.
Version: 1.0
*/



/*---------------------------------

common - All

--------------------------------*/


:root {
  --main-color: #0064AF;
  --sub-color: #E0245C;
}

html {
  box-sizing: border-box;
  height: 100%;
  font-size: 100%;
  /* rem base: 16px */
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: #101010;
  background-color: #fff;
  font-size: 1rem;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: .05em;
  -webkit-text-size-adjust: 100%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}


/*---------------------------------
link
--------------------------------*/

a {
  color: var(--main-color);
  text-decoration: none;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}

a:focus,
a:hover,
a:active,
a::after,
a::before,
input {
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}


a:hover {
  opacity: .80;
}

a:active {
  opacity: 1;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}

a img {
  opacity: 1;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}

a:focus img,
a:hover img,
a:active img {
  opacity: .80;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}


/*---------------------------------
layout
--------------------------------*/
/* スマホ用 580px以下に適用されるCSS */

* html body {
  overflow: hidden;
}

body {
  margin: 0 auto;
}

.wrap {
  overflow: hidden;
}

.wrap:after {
  clear: both;
  display: block;
  content: "";
}

.innr {
  padding: 0 5.333vw;
}

.hidden-xs {
  display: none !important;
}

.visible-xs {
  display: inherit !important;
}

.c {
  text-align: center;
}

.l {
  text-align: left;
}

.r {
  text-align: right;
}

.mb40 {
  margin-bottom: 10.666vw;
}

.mb60 {
  margin-bottom: 16vw;
}

.mb80 {
  margin-bottom: 21.333vw;
}

.mb100 {
  margin-bottom: 26.666vw;
}

.mb120 {
  margin-bottom: 32vw;
}

/* Tablet用 581px以上に適用されるCSS */
@media (min-width: 581px) {

  .innr {
    margin: 0 auto;
    padding: 0 30px;
  }

  .hidden-xs {
    display: inherit !important;
  }

  .visible-xs {
    display: none !important;
  }

  .mb40 {
    margin-bottom: 40px;
  }

  .mb60 {
    margin-bottom: 60px;
  }

  .mb80 {
    margin-bottom: 80px;
  }

  .mb100 {
    margin-bottom: 100px;
  }

  .mb120 {
    margin-bottom: 120px;
  }
}

/* PC用 981px以上に適用されるCSS */
@media (min-width: 981px) {

  html,
  body {
    min-width: 1226px;
  }

  .innr {
    width: 1226px;
    margin: 0 auto;
    padding: 0 50px;
  }
}


/*---------------------------------
bg__type
--------------------------------*/
/* スマホ用 580px以下に適用されるCSS */

.bg__typeA {
  background: rgb(232, 244, 248);
  background: linear-gradient(45deg, rgba(232, 244, 248, 1) 0%, rgba(243, 244, 251, 1) 70%, rgba(241, 240, 249, 1) 100%);
}

.bg__typeB {
  background: #EFEFEF;
}

.bg__typeC {
  background: #F2F9FD;
}


/*---------------------------------
fb
--------------------------------*/
.fb {
  display: flex;
  justify-content: space-between;
}

.fb.center {
  justify-content: center !important;
}

.fb.start {
  justify-content: flex-start !important;
  align-items: center;
}

.fb.end {
  justify-content: flex-end !important;
  align-items: center;
}

.fb.reverse {
  flex-direction: row-reverse;
}



/*---------------------------------
accordion
--------------------------------*/

/* スマホ用 580px以下に適用されるCSS */
.accordion {
  width: 100%;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}

.accordion .toggle {
  display: none;
}

.accordion .option {
  position: relative;
  width: 100%;
}

.accordion .option>a ,#searchform{
  border-bottom: 1px solid rgba(3, 69, 119, 0.2);
  padding: 0.9em 5.333vw;
  line-height: 1;
  display: block;
  font-size: 4vw;
  font-weight: bold;
  color: #101010;
}

.accordion .title,
.accordion .cnt {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.accordion .title {
  border-bottom: 1px solid rgba(3, 69, 119, 0.2);
  padding: 0.9em 5.333vw;
  line-height: 1;
  display: block;
  font-size: 4vw;
  font-weight: bold;
  cursor: pointer;
}

.accordion .title::after,
.accordion .title::before {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 1em;
  width: 1px;
  height: 0.75em;
  background-color: #034577;
  transition: all 0.3s;
}

.accordion .title::after {
  transform: rotate(90deg);
}

.accordion .cnt {
  max-height: 0;
  overflow: hidden;
}

.accordion .cnt ul {
  position: relative;
  padding: 0.5em 0;
  margin: 0;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  font-size: 3.466vw;
  line-height: 1.4;
  background-color: #fff;
  border-bottom: 1px solid rgba(3, 69, 119, 0.2);
}

.accordion .cnt ul:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  background: #EFEFEF;
  width: 1px;
  height: 100%;
}

.accordion .cnt ul li {
  padding: 0.5em 1em 0.5em 1.6em;
  width: 50%;
  list-style: none;
}

.accordion .cnt ul li a {
  color: #101010;
}

.accordion .toggle:checked+.title+.cnt {
  max-height: 1000px;
  transition: all 1.5s;
}

.accordion .toggle:checked+.title::before {
  transform: rotate(90deg) !important;
}

/* Tablet用 581px以上に適用されるCSS */
@media (min-width: 581px) {
  .accordion .option {
    width: 50%;
  }

  .accordion .option>a {
    padding: 0.9em 1.5em;
    font-size: 1rem;
  }

  .accordion .title {
    padding: 0.9em 1.5em;
    font-size: 1rem;
  }

  .accordion .cnt ul {
    font-size: .9375rem;
  }
}

/* PC用 981px以上に適用されるCSS */
@media (min-width: 981px) {}



/*---------------------------------
title__area
--------------------------------*/
/* スマホ用 580px以下に適用されるCSS */

.title__area h2 {
  font-size: 8.533vw;
  margin: 0;
  padding-bottom: 8vw;
}

.title__area h2 span {
  font-size: 3.466vw;
  display: block;
  margin-left: .2em;
}

.title__area h2 span::before {
  display: inline-block;
  margin: 0 1.6vw 0 0;
  width: 1.6vw;
  height: 1.6vw;
  content: '';
  border-radius: 100%;
  background: var(--main-color);
}

/* Tablet用 581px以上に適用されるCSS */
@media (min-width: 581px) {
  .title__area h2 {
    font-size: 2rem;
    margin: 0;
    padding-bottom: 30px;
  }

  .title__area h2 span {
    font-size: .8125rem;
    display: block;
    margin-left: .2em;
  }

  .title__area h2 span::before {
    display: inline-block;
    margin: 0 6px 0 0;
    width: 6px;
    height: 6px;
    content: '';
    border-radius: 100%;
    background: var(--main-color);
  }

}

/* PC用 981px以上に適用されるCSS */
@media (min-width: 981px) {}



/*---------------------------------
btn__area
--------------------------------*/
/* スマホ用 580px以下に適用されるCSS */

.btn__area {
  margin-top: 10.666vw;
}

.btn__area a {
  padding: 0;
  margin: 0 auto;
  width: 84vw;
  height: 16vw;
  line-height: 16vw;
  color: #fff;
  font-size: 4.8vw;
  font-weight: bold;
  text-align: center;
  display: block;
  position: relative;
  z-index: 0;
}

.btn__area a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  transition: 0.5s;
  background: linear-gradient(to right, #034577, #0064AF, #0085B6);
  border-radius: 50px;
}

.btn__area a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  background: linear-gradient(to right, #0085B6, #0064AF, #034577);
  border-radius: 50px;
}

.btn__area a:hover {
  opacity: 1;
}

.btn__area a:hover::before {
  opacity: 0;
}

.btn__area .arrw::before {
  position: absolute;
  content: "";
  width: 6.933vw;
  height: 6.933vw;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: url(../images/common/svg/ico_arrw.svg) 0 0 no-repeat;
  background-size: contain;
}

/* Tablet用 581px以上に適用されるCSS */
@media (min-width: 581px) {
  .btn__area {
    margin-top: 60px;
  }

  .btn__area a {
    width: 315px;
    height: 60px;
    line-height: 60px;
    font-size: 1.125rem;
  }

  .btn__area .arrw::before {
    width: 26px;
    height: 26px;
  }
}

/* PC用 981px以上に適用されるCSS */
@media (min-width: 981px) {}



/*---------------------------------
text__area
--------------------------------*/
/* スマホ用 580px以下に適用されるCSS */

.text__area.typeA {
  margin: 0 3.2vw;
  font-size: 4.266vw;
}

/* Tablet用 581px以上に適用されるCSS */
@media (min-width: 581px) {
  .text__area.typeA {
    margin: 0 auto;
    font-size: 1rem;
  }
}

/* PC用 981px以上に適用されるCSS */
@media (min-width: 981px) {
  .text__area.typeA {
    width: 920px;
  }
}


/*---------------------------------
cta
--------------------------------*/

/* スマホ用 580px以下に適用されるCSS */
.cta {
  background: rgb(2, 78, 141);
  background: linear-gradient(90deg, rgba(2, 78, 141, 1) 0%, rgba(0, 105, 187, 1) 60%, rgba(0, 150, 195, 1) 100%);
  border-radius: 5.333vw;
  color: #fff;
  padding: 1em 0 2em;
}

.cta h2 {
  font-size: 4.8vw;
  text-align: center;
}

.cta h2 span {
  font-size: 6.4vw;
}

.cta dl,
.cta dd {
  margin: 0;
}

.cta dt a {
  background-color: #fff;
  border-radius: 100px;
  padding: .8em 0 .8em 1.2em;
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
}

.cta dt a .free {
  color: #fff;
  font-size: 3.466vw;
  background-color: #E0245C;
  border-radius: 50px;
  padding: .1em .8em;
}

.cta dt a .number {
  color: var(--main-color);
  font-size: 6.4vw;
  margin-left: .3em;
  line-height: 1.2;
}

.cta dd {
  font-size: 3.466vw;
  text-align: center;
  padding: .5em 0 1.2em;
}

.cta ul {
  margin: 0;
  padding: 0;
}

.cta ul li {
  list-style: none;
  font-size: 4vw;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  text-align: center;
  width: 32%;
}

.cta ul li a {
  color: #fff;
  display: block;
  position: relative;
  z-index: 2;
  padding: 16vw 0 1em;
}

.cta ul li span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 91, 158, 0.3);
  mix-blend-mode: multiply;
  border-radius: 2.133vw;
}

.cta ul a::before {
  content: "";
  position: absolute;
  top: 5.066vw;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.cta ul .line a::before {
  top: 4.2vw;
  background: url(https://2025.masuken.com/wp-content/themes/masukencom/images/common/svg/ctaIco_line.svg) 0 0 no-repeat;
  width: 9.066vw;
  height: 9.066vw;
  background-size: contain;
}

.cta ul .form a::before {
  background: url(https://2025.masuken.com/wp-content/themes/masukencom/images/common/svg/ctaIco_form.svg) 0 0 no-repeat;
  width: 7.466vw;
  height: 7.466vw;
  background-size: contain;
}

.cta ul .mail a::before {
  background: url(https://2025.masuken.com/wp-content/themes/masukencom/images/common/svg/ctaIco_mail.svg) 0 0 no-repeat;
  width: 7.466vw;
  height: 7.466vw;
  background-size: contain;
}



/* Tablet用 581px以上に適用されるCSS */
@media (min-width: 581px) {

  .cta {
    border-radius: 20px;
    padding: 1.4em 0;
  }

  .cta .innr {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
  }

  .cta .innr>div:last-child {
    width: 100%;
  }

  .cta .innr>div:nth-child(2) {
    margin-bottom: 1em;
  }

  .cta h2 {
    font-size: 1.5rem;
    line-height: 1.4;
    text-align: left;
  }

  .cta h2 span {
    font-size: 2.25rem;
    margin-left: -0.5em;
  }

  .cta dt div p {
    display: flex;
    justify-content: start;
    align-items: center;
    margin: 0;
  }

  .cta dt .free {
    font-size: .9375rem;
    background-color: #E0245C;
    border-radius: 50px;
    padding: .1em .8em;
  }

  .cta dt .number {
    font-size: 2.25rem;
    margin-left: .2em;
    line-height: 1.2;
  }

  .cta dd {
    font-size: .8125rem;
    margin-left: 7.6em;
    text-align: left;
    padding: 0;
  }

  .cta ul li {
    font-size: .9375rem;
    text-align: left;
  }

  .cta ul li a {
    padding: 1em 1.2em;
  }

  .cta ul li span {
    border-radius: 8px;
  }

  .cta ul .line a {
    padding-left: 63px;
  }

  .cta ul .form a,
  .cta ul .mail a {
    padding-left: 56px;
  }

  .cta ul a::before {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }

  .cta ul .line a::before {
    top: 50%;
    background: url(https://2025.masuken.com/wp-content/themes/masukencom/images/common/svg/ctaIco_line.svg) 0 0 no-repeat;
    width: 34px;
    height: 34px;
    background-size: contain;
  }

  .cta ul .form a::before {
    background: url(https://2025.masuken.com/wp-content/themes/masukencom/images/common/svg/ctaIco_form.svg) 0 0 no-repeat;
    width: 28px;
    height: 28px;
    background-size: contain;
  }

  .cta ul .mail a::before {
    background: url(https://2025.masuken.com/wp-content/themes/masukencom/images/common/svg/ctaIco_mail.svg) 0 0 no-repeat;
    width: 28px;
    height: 28px;
    background-size: contain;
  }
}

/* PC用 981px以上に適用されるCSS */
@media (min-width: 981px) {

  .cta .innr {
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .cta .innr>div:last-child {
    width: auto;
  }

  .cta .innr>div:nth-child(2) {
    margin-bottom: 0;
  }

  .cta ul li {
    width: auto;
    margin: 0 .25em;
  }
}



/*---------------------------------
sticky__cta
--------------------------------*/

/* スマホ用 580px以下に適用されるCSS */
#sticky__cta {
  position: fixed;
  z-index: 97;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgb(2, 78, 141);
  background: linear-gradient(90deg, rgba(2, 78, 141, 1) 0%, rgba(0, 105, 187, 1) 60%, rgba(0, 150, 195, 1) 100%);
  border-top-left-radius: 5.333vw;
  border-top-right-radius: 5.333vw;
  padding: 2.133vw 2.133vw 0;
}

#sticky__cta ul {
  margin: 0;
  padding: 0;
}

#sticky__cta ul li {
  list-style: none;
  font-size: 3.2vw;
  line-height: 1.3;
  position: relative;
}

#sticky__cta ul .line {
  width: 30%;
}

#sticky__cta ul .form {
  width: 36%;
}

#sticky__cta ul .tel {
  width: 30%;
}

#sticky__cta ul li a {
  color: #fff;
  display: block;
  position: relative;
  z-index: 99;
  padding: .6em 0 .6em 13vw;
}

#sticky__cta ul li span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
  background-color: rgba(0, 91, 158, 0.3);
  mix-blend-mode: multiply;
  border-top-left-radius: 3.2vw;
  border-top-right-radius: 3.2vw;
}

#sticky__cta ul a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 4vw;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

#sticky__cta ul .line a::before {
  background: url(https://2025.masuken.com/wp-content/themes/masukencom/images/common/svg/ctaIco_line.svg) 0 0 no-repeat;
  width: 6.933vw;
  height: 6.933vw;
  background-size: contain;
}

#sticky__cta ul .form a::before {
  background: url(https://2025.masuken.com/wp-content/themes/masukencom/images/common/svg/ctaIco_form.svg) 0 0 no-repeat;
  width: 6.4vw;
  height: 6.4vw;
  background-size: contain;
}

#sticky__cta ul .tel a::before {
  background: url(https://2025.masuken.com/wp-content/themes/masukencom/images/common/svg/ctaIco_phone.svg) 0 0 no-repeat;
  width: 6.4vw;
  height: 6.4vw;
  background-size: contain;
}



/*---------------------------------
quality
--------------------------------*/
/* スマホ用 580px以下に適用されるCSS */

#quality {
  padding: 26.666vw 0;
}

#quality .cnt>div {
  width: 100%;
  border-radius: 2.1333vw;
  background-color: #fff;
  padding: 10.666vw 9.066vw 2.666vw;
  margin-bottom: 4vw;
}

#quality .cnt>div:last-child {
  margin-bottom: 0;
}

#quality .cnt__top.fb {
  justify-content: center;
}

#quality .cnt__top .img__area {
  width: 26.666vw;
  height: 26.666vw;
  margin-right: 10.666vw;
}

#quality .cnt__top .title__area {
  text-align: center;
}

#quality .cnt__top .title__area span {
  display: block;
}

#quality .cnt__top .title__area span.nm {
  font-size: 6.4vw;
}

#quality .cnt__top .title__area span.catch {
  font-size: 3.733vw;
  font-weight: bold;
  letter-spacing: .2em;
  color: #fff;
  background-color: #E0245C;
  border-radius: 50px;
  padding: .1em 0;
}

#quality .cnt__top .title__area h3 {
  margin: .15em 0;
  font-size: 6.4vw;
}

#quality .cnt__btm p {
  font-size: 4.266vw;
}

/* Tablet用 581px以上に適用されるCSS */
@media (min-width: 581px) {

  #quality {
    padding: 100px 0;
  }

  #quality .cnt>div {
    width: 100%;
    border-radius: 8px;
    padding: 2em;
    margin: .5em 0;
    display: flex;
    justify-content: space-around;
  }

  #quality .cnt>div:last-child {
    margin: 0;
  }

  #quality .cnt__top.fb {
    justify-content: start;
  }

  #quality .cnt__top {
    width: 36%;
  }

  #quality .cnt__btm {
    width: 60%;
  }

  #quality .cnt__top .img__area {
    width: 100px;
    height: 100px;
    margin-right: 10%;
  }

  #quality .cnt__top .title__area span.nm {
    font-size: 1.5rem;
  }

  #quality .cnt__top .title__area span.catch {
    font-size: .875rem;
  }

  #quality .cnt__top .title__area h3 {
    font-size: 1.5rem;
    text-wrap: nowrap;
  }

  #quality .cnt__btm p {
    font-size: 1rem;
  }

}

/* PC用 981px以上に適用されるCSS */
@media (min-width: 981px) {

  #quality .cnt {
    display: flex;
    justify-content: space-between;
  }

  #quality .cnt>div {
    width: 360px;
    padding: 40px 34px 10px;
    margin: 0;
    display: block;
  }

  #quality .cnt__top {
    width: auto;
  }

  #quality .cnt__top.fb {
    justify-content: center;
  }

  #quality .cnt__btm {
    width: auto;
  }

  #quality .cnt__top .img__area {
    margin-right: 40px;
  }
}



/*---------------------------------
serviceGuide
--------------------------------*/
/* スマホ用 580px以下に適用されるCSS */

#serviceGuide {
  padding: 26.666vw 0;
}

#serviceGuide .cnt {
  margin: 0 -1.333vw;
}

#serviceGuide .cnt>div {
  width: 28.799vw;
}

#serviceGuide .cnt .img__area {
  width: 100%;
  position: relative;
}

#serviceGuide .cnt .img__area img {
  width: 18.666vw;
  height: 18.666vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

#serviceGuide .cnt .img__area .circle {
  display: block;
  width: 100%;
  padding-top: 100%;
  border-radius: 50%;
  background-color: #fff;
}

#serviceGuide .cnt .title__area {
  text-align: center;
  margin-top: -2.133vw;
  position: relative;
  z-index: 3;
}

#serviceGuide .cnt .title__area span {
  display: inline-block;
}

#serviceGuide .cnt .title__area span.catch {
  font-size: 3.733vw;
  font-weight: bold;
  letter-spacing: .1em;
  color: #fff;
  background-color: #E0245C;
  border-radius: 50px;
  padding: .1em .8em;
}

#serviceGuide .cnt .title__area h3 {
  margin: .15em 0;
  font-size: 5.333vw;
}

/* Tablet用 581px以上に適用されるCSS */
@media (min-width: 581px) {

  #serviceGuide {
    padding: 100px 0;
  }

  #serviceGuide .cnt {
    margin: 0;
  }

  #serviceGuide .cnt>div {
    width: 30%;
  }

  #serviceGuide .cnt .img__area {
    width: 100%;
  }

  #serviceGuide .cnt .img__area img {
    width: 56%;
    height: 56%;
  }

  #serviceGuide .cnt .title__area span.catch {
    font-size: .875rem;
  }

  #serviceGuide .cnt .title__area h3 {
    font-size: 1.5rem;
  }

}

/* PC用 981px以上に適用されるCSS */
@media (min-width: 981px) {

  #serviceGuide .cnt>div {
    width: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #serviceGuide .cnt .img__area {
    width: 160px;
    height: 160px;
    margin-right: 26px;
  }

  #serviceGuide .cnt .img__area img {
    width: 100px;
    height: 100px;
  }

  #serviceGuide .cnt .title__area {
    margin-top: inherit;
    position: inherit;
  }

  #serviceGuide .cnt .title__area span {
    display: block;
  }

}




/*---------------------------------

common - Large Middle

--------------------------------*/


/*---------------------------------
breadcrumbs
--------------------------------*/
/* スマホ用 580px以下に適用されるCSS */
.breadcrumbs {
  padding: 0 0 .8em;
  margin: 0 -5.333vw;
  justify-content: start;
  overflow-x: scroll;
}

.breadcrumbs li:first-child {
  margin-left: 5.333vw;
}

.breadcrumbs li {
  list-style: none;
  padding-right: 6.4vw;
  word-break: keep-all;
  white-space: nowrap;
  font-size: 3.466vw;
}

.breadcrumbs li a {
  color: #101010;
  position: relative;
}

.breadcrumbs li a::after {
  position: absolute;
  content: "";
  display: block;
  width: 1.6vw;
  height: 1.6vw;
  border-top: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  transform: rotate(45deg);
  right: -3.4vw;
  top: 36%;
}

.breadcrumbs li.now {
  font-weight: bold;
}


/* Tablet用 581px以上に適用されるCSS */
@media (min-width: 581px) {

  .breadcrumbs {
    padding: 0;
    margin: 0;
    overflow-x: inherit;
  }

  .breadcrumbs li:first-child {
    margin-left: 0;
  }

  .breadcrumbs li {
    padding-right: 24px;
    font-size: .8125rem;
  }

  .breadcrumbs li a::after {
    width: 6px;
    height: 6px;
    right: -12px;
    top: 36%;
  }

  .breadcrumbs li.now {
    font-weight: bold;
  }

}

/* PC用 981px以上に適用されるCSS */
@media (min-width: 981px) {}



/*---------------------------------
page__title
--------------------------------*/
/* スマホ用 580px以下に適用されるCSS */
#page__title {
  margin-bottom: 1em;
}

#page__title .page__bg {
  height: 48vw;
  width: 100%;
  background-repeat: no-repeat, no-repeat;
  background-position: 80% top, right;
  background-size: cover, contain;
}

#page__title .innr {
  padding: 0;
}

#page__title .title__area {
  background-color: var(--main-color);
  color: #fff;
  text-align: center;
  padding: 10.666vw 0 8vw;
}

#page__title .title__area h1 {
  font-size: 8vw;
  line-height: 1.4;
  margin: 0;
}

#page__title .title__area h1 span {
  display: block;
  font-size: 4vw;
  color: #86C7D8;
  padding-bottom: .8em;
}

#page__title .title__area .masuken,
#page__title .title__area .etc {
  font-size: 4.533vw;
  font-weight: bold;
  margin: 0 0 1em;
}

#page__title .title__area .etc {
  padding-top: .4em;
}

#page__title .title__area .masuken strong,
#page__title .title__area .etc strong {
  font-size: 5.866vw;
}

#page__title .title__area .explanation {
  font-size: 3.466vw;
  text-align: left;
  margin: 0 6.666vw 1.6em;
}


#page__title .quality {
  width: 72vw;
  margin: 0 auto;
}

#page__title .quality>div {
  width: 19vw;
}

#page__title .quality .img__area {
  width: 100%;
  position: relative;
}

#page__title .quality .img__area img {
  width: 11.2vw;
  height: 11.2vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

#page__title .quality .img__area .circle {
  display: block;
  width: 100%;
  padding-top: 100%;
  border-radius: 50%;
  background-color: #fff;
}

#page__title .quality .text__area {
  text-align: center;
  margin-top: -2.133vw;
  position: relative;
  z-index: 3;
}

#page__title .quality .text__area span.catch {
  display: block;
  font-size: 2.666vw;
  font-weight: bold;
  letter-spacing: .2em;
  color: #fff;
  background-color: #E0245C;
  border-radius: 50px;
  padding: .1em .8em;
}

#page__title .quality .text__area p {
  font-weight: bold;
  margin: .15em 0;
  font-size: 4.266vw;
}

/* Tablet用 581px以上に適用されるCSS */
@media (min-width: 581px) {

  #page__title {
    position: relative;
    height: 440px;
  }

  #page__title .page__bg {
    height: 440px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }

  #page__title .title__area {
    width: 520px;
    height: 440px;
    padding: 3.6em 0 0 0;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  #page__title .title__area h1 {
    font-size: 2.625rem;
  }

  #page__title .title__area h1 span {
    padding-top: 1.8em;
    font-size: .9375rem;
  }

  #page__title .title__area .masuken,
  #page__title .title__area .etc {
    font-size: 1.25rem;
  }

  #page__title .title__area .masuken strong,
  #page__title .title__area .etc strong {
    font-size: 1.625rem;
  }

  #page__title .title__area .explanation {
    font-size: .8125rem;
    margin: 0 5em 1.6em;
  }


  #page__title .quality {
    width: 330px;
  }

  #page__title .quality>div {
    width: 88px;
  }

  #page__title .quality .img__area img {
    width: 50px;
    height: 50px;
  }

  #page__title .quality .text__area {
    margin-top: -0.8em;
  }

  #page__title .quality .text__area span.catch {
    font-size: .75rem;
  }

  #page__title .quality .text__area p {
    margin: .15em 0;
    font-size: 1.0625rem;
  }
}

/* PC用 981px以上に適用されるCSS */
@media (min-width: 981px) {

  #page__title .page__bg {
    background-position: center top, right;
  }

  #page__title .title__area {
    margin: 0;
  }
}



/*---------------------------------
itemlist, case
--------------------------------*/
/* スマホ用 580px以下に適用されるCSS */
#itemlist ul,
#case ul {
  padding: 0;
  margin: 0 -2%;
  flex-wrap: wrap;
  justify-content: flex-start;
}

#itemlist ul li,
#case ul li {
  list-style: none;
  width: 46%;
  margin: 0 2% 1.2em 2%;
}

#itemlist ul li .img__area img,
#case ul li .img__area img {
  border-radius: 2.133vw;
}

#itemlist ul li .text__area,
#case ul li .text__area {
  text-align: center;
  padding-top: .8em;
  font-size: 3.846vw;
}

#itemlist ul li a .text__area,
#case ul li a .text__area {
  font-weight: bold;
}

/* Tablet用 581px以上に適用されるCSS */
@media (min-width: 581px) {

  #itemlist ul,
  #case ul {
    margin: 0 -1%;
  }

  #itemlist ul li,
  #case ul li {
    width: 23%;
    margin: 0 1% 1.2em 1%;
    text-align: center;
  }

  #itemlist ul li .img__area img,
  #case ul li .img__area img {
    border-radius: 8px;
  }

  #itemlist ul li .text__area,
  #case ul li .text__area {
    font-size: 1rem;
  }
}

/* PC用 981px以上に適用されるCSS */
@media (min-width: 981px) {}



/*---------------------------------
overview
--------------------------------*/
/* スマホ用 580px以下に適用されるCSS */
#overview .img__area {
  margin: 0 -5.333vw;
}

#overview .img__area img {
  width: 100%;
}

#overview .text__area h2 {
  font-size: 6.4vw;
  text-align: center;
  padding-top: .6em;
}

#overview .text__area h2 strong {
  background: linear-gradient(transparent 70%, #CBE7EE 70%);
}

#overview .text__area p {
  font-size: 4.266vw;
}


/* Tablet用 581px以上に適用されるCSS */
@media (min-width: 581px) {
  #overview .img__area {
    margin: 0 auto;
    text-align: center;
  }

  #overview .img__area img {
    width: auto;
  }

  #overview .text__area h2 {
    font-size: 2rem;
  }

  #overview .text__area p {
    font-size: 1rem;
  }
}

/* PC用 981px以上に適用されるCSS */
@media (min-width: 981px) {

  #overview .cnt {
    display: flex;
    justify-content: space-between;
  }

  #overview .img__area {
    margin: 0 0 0 -50px;
    width: 50%;
    text-align: inherit;
  }

  #overview .text__area {
    width: 50%;
  }

  #overview.noImg .text__area {
    margin: 0 auto;
    width: 920px;
  }

  #overview .text__area h2 {
    font-size: 2rem;
    text-align: left;
    padding-top: 0;
    margin-top: 0;
  }

  #overview.noImg .text__area h2 {
    text-align: center;
  }

  #overview .text__area p {
    font-size: 1rem;
    margin-left: 0;
    margin-right: 0;
  }
}



/*---------------------------------
mainItems
--------------------------------*/
/* スマホ用 580px以下に適用されるCSS */

#mainItems dl,
#mainItems dt,
#mainItems dd {
  margin: 0;
  padding: 0;
}

#mainItems dl {
  margin: 0 -2.666vw;
  padding: 1.6em 1.8em;
  background-color: #F2F9FD;
  border-radius: 2.133vw;
}

#mainItems dt {
  font-weight: bold;
  margin-bottom: .6em;
  font-size: 5.333vw;
}

#mainItems dt.etc {
  padding-top: 1.2em;
}

#mainItems dd {
  font-size: 4vw;
}

/* Tablet用 581px以上に適用されるCSS */
@media (min-width: 581px) {

  #mainItems dt {
    font-size: 1.25rem;
  }

  #mainItems dd {
    font-size: 1rem;
  }

  #mainItems dl {
    margin: 0;
    padding: 2em 3em;
    border-radius: 8px;
  }
}

/* PC用 981px以上に適用されるCSS */
@media (min-width: 981px) {}



/*---------------------------------
area
--------------------------------*/
/* スマホ用 580px以下に適用されるCSS */

#area dl,
#area dt,
#area dd {
  margin: 0;
  padding: 0;
}

#area dl {
  margin: 0 -2.666vw;
  padding: 1.6em 1.8em;
  background-color: #EFEFEF;
  border-radius: 2.133vw;
}

#area dt,
#area dd {
  display: inline;
  font-weight: bold;
  font-size: 4vw;
}

#area dt::after {
  content: "：";
}


/* Tablet用 581px以上に適用されるCSS */
@media (min-width: 581px) {

  #area dt,
  #area dd {
    font-size: 1rem;
  }

  #area dl {
    margin: 0;
    padding: 2em 3em;
    border-radius: 8px;
  }

}

/* PC用 981px以上に適用されるCSS */
@media (min-width: 981px) {}



/*---------------------------------
point
--------------------------------*/
/* スマホ用 580px以下に適用されるCSS */
#point {
  padding: 26.666vw 0 21.333vw;
}

#point .cnt {
  padding-top: .5em;
  margin-left: -2.666vw;
  margin-right: -2.666vw;
}

#point .cnt>div {
  width: 32.5%;
  border-radius: 2.133vw;
  background-color: #fff;
  text-align: center;
  position: relative;
}

#point .cnt>div .nm {
  position: absolute;
  top: -1.5em;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: inline-block;
  color: #fff;
  background-color: var(--sub-color);
  border-radius: 50px;
  padding: .4em 1.2em;
  text-wrap: nowrap;
  font-size: 3.466vw;
}

#point .cnt>div .nm::after {
  content: "";
  position: absolute;
  top: 2.6em;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background-color: var(--sub-color);
  width: 2px;
  height: 3.2vw;
}

#point .cnt>div h3 {
  font-size: 4.266vw;
  margin-top: 2.5em;
}

#point .cnt>div .img__area {
  padding: 0 .6em .6em;
}

#point .cnt>div .img__area img {
  border-radius: 1.5vw;
}

#point .text__area p {
  font-size: 4.266vw;
}

/* Tablet用 581px以上に適用されるCSS */
@media (min-width: 581px) {

  #point {
    padding: 100px 0 80px;
  }

  #point .cnt {
    padding-top: 1.5em;
    margin-left: 0;
    margin-right: 0;
  }

  #point .cnt>div {
    width: 32%;
    border-radius: 8px;
  }

  #point .cnt>div .nm {
    padding: .4em 1.8em;
    font-size: .9375rem;
  }

  #point .cnt>div .nm::after {
    height: 20px;
  }

  #point .cnt>div h3 {
    font-size: 1.25rem;
    margin-top: 3em;
  }

  #point .cnt>div .img__area {
    padding: 0 1.5em 1.5em;
  }

  #point .cnt>div .img__area img {
    border-radius: 8px;
  }

  #point .text__area p {
    font-size: 1rem;
  }
}

/* PC用 981px以上に適用されるCSS */
@media (min-width: 981px) {

  #point .cnt>div {
    width: 30%;
  }

  #point .cnt>div .img__area {
    padding: 0 2em 2em;
  }
}



/*---------------------------------
faq
--------------------------------*/
/* スマホ用 580px以下に適用されるCSS */
#faq .cnt {
  margin: 0 -2.666vw;
}

#faq .accordion {
  width: 100%;
  display: block;
  margin: 0 auto;
}

#faq .accordion .option {
  width: 100%;
  background-color: #F2F9FD;
  border-radius: 2.1333vw;
  margin-bottom: 1em;
}

#faq .accordion .title {
  border-bottom: none;
  color: var(--main-color);
  padding: 1.6em 3.5em 1.5em 1.5em;
  line-height: 1.4;
  font-size: 4.266vw;
}

#faq .accordion .title::after,
#faq .accordion .title::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 42%;
  width: 1px;
  height: 1em;
  background-color: #034577;
  transition: all 0.3s;
}

#faq .accordion .cnt {
  padding: 0 2em 0 2.2em;
  font-size: 4vw;
}

#faq .accordion .cnt p {
  margin: 0 0 1.5em;
}

/* Tablet用 581px以上に適用されるCSS */
@media (min-width: 581px) {
  #faq .cnt {
    margin: 0;
  }

  #faq .accordion .option {
    border-radius: 8px;
  }

  #faq .accordion .title {
    padding: 2em 4.5em 1.9em 1.5em;
    font-size: 1rem;
  }

  #faq .accordion .title::after,
  #faq .accordion .title::before {
    right: 5%;
    width: 2px;
  }

  #faq .accordion .cnt {
    padding: 0 1.5em;
    font-size: 1rem;
  }

}

/* PC用 981px以上に適用されるCSS */
@media (min-width: 981px) {

  #faq .accordion {
    width: 920px;
  }

  #faq .accordion .title::after,
  #faq .accordion .title::before {
    right: 4%;
  }
}



/*---------------------------------
related
--------------------------------*/
/* スマホ用 580px以下に適用されるCSS */
#related {
  padding: 26.666vw 0;
}

#related ul {
  padding: 0;
  margin: 0;
  justify-content: start;
  flex-wrap: wrap;
}

#related ul li {
  list-style: none;
  font-size: 4vw;
}

#related ul li a {
  font-weight: bold;
}

#related ul li:last-child:after {
  content: none;
}

#related ul li::after {
  content: "／";
  padding: 0 .2em;
}

/* Tablet用 581px以上に適用されるCSS */
@media (min-width: 581px) {

  #related {
    padding: 100px 0;
  }

  #related ul li {
    font-size: 1rem;
  }
}

/* PC用 981px以上に適用されるCSS */
@media (min-width: 981px) {}



/*---------------------------------
flow
--------------------------------*/
/* スマホ用 580px以下に適用されるCSS */
#flow .cnt>div {
  padding: 2em 1.8em 1.8em;
  margin-bottom: 3em;
  border-radius: 2.133vw;
  border: 0.8vw solid #B2D0E7;
  position: relative;
}

#flow .cnt>div::after {
  content: "";
  position: absolute;
  display: block;
  width: 5.333vw;
  height: 5.333vw;
  border-top: 1.066vw solid var(--main-color);
  border-right: 1.066vw solid var(--main-color);
  transform: rotate(135deg);
  bottom: -1.9em;
  right: 48%;
}

#flow .cnt>div:last-child:after {
  content: none;
}

#flow .cnt .bg {
  position: absolute;
  background-color: #F2F9FD;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  border-top-left-radius: 1.333vw;
  border-top-right-radius: 1.333vw;
  z-index: -1;
}

#flow .cnt dl,
#flow .cnt dt,
#flow .cnt dd {
  margin: 0;
  padding: 0;
}

#flow .cnt dt {
  justify-content: start;
  align-items: center;
  margin-bottom: 1em;
}

#flow .cnt dt .nm {
  display: inline-block;
  padding-right: 1em;
  margin-right: 1em;
  font-size: 4vw;
  line-height: 1.1;
  text-align: center;
  color: var(--main-color);
  border-right: 1px dashed var(--main-color);
}

#flow .cnt dt .nm big {
  font-size: 9.6vw;
}

#flow .cnt dt .title {
  font-size: 5.866vw;
  font-weight: bold;
}

#flow .cnt .img__area img {
  border-radius: 2.133vw;
}

#flow .cnt .text__area {
  margin-top: 1.2em;
  font-size: 4vw;
}

/* Tablet用 581px以上に適用されるCSS */
@media (min-width: 581px) {

  #flow .cnt>div {
    border-radius: 8px;
    border: 3px solid #B2D0E7;
  }

  #flow .cnt>div::after {
    width: 20px;
    height: 20px;
    border-top: 4px solid var(--main-color);
    border-right: 4px solid var(--main-color);
  }

  #flow .cnt .bg {
    height: 7em;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }

  #flow .cnt dt .nm {
    font-size: .9375rem;
  }

  #flow .cnt dt .nm big {
    font-size: 2.25rem;
  }

  #flow .cnt dt .title {
    font-size: 1.375rem;
  }

  #flow .cnt .img__area {
    position: absolute;
    top: 1.8em;
    right: 1.8em;
    width: 24%;
  }

  #flow .cnt .img__area img {
    border-radius: 8px;
  }

  #flow .cnt .text__area {
    margin-top: 3em;
    font-size: 1rem;
    width: 72%;
  }
}

/* PC用 981px以上に適用されるCSS */
@media (min-width: 981px) {

  #flow .cnt {
    display: flex;
    justify-content: space-between;
  }

  #flow .cnt>div {
    width: 30%;
  }

  #flow .cnt>div::after {
    transform: rotate(45deg);
    bottom: inherit;
    top: 48%;
    right: -2.2em;
  }

  #flow .cnt .bg {
    height: 40%;
  }

  #flow .cnt .img__area {
    position: inherit;
    width: 100%;
  }

  #flow .cnt .text__area {
    margin-top: 1.2em;
    width: 100%;
  }
}



/*---------------------------------
brands
--------------------------------*/
/* スマホ用 580px以下に適用されるCSS */

#brands .cnt.main .img__area {
  margin-bottom: 2.6em;
}

#brands .cnt.main .img__area .img__wrapper {
  background-color: #F2F9FD;
  border-radius: 2.133vw;
}

#brands .cnt.main .text__area h2 {
  font-size: 8.533vw;
  margin-top: 0;
  text-align: center;
}

#brands .cnt.main .text__area h2 span,
#brands .cnt.brand .cnt__top .title__area h3 span {
  display: block;
  font-size: 3.466vw;
  color: #86C7D8;
}

#brands .cnt .text__area p {
  font-size: 4.266vw;
}


#brands .cnt.brand>div {
  margin-bottom: 16vw;
}

#brands .cnt.brand>div:last-child {
  margin-bottom: 0;
}

#brands .cnt.brand .cnt__top {
  justify-content: start;
  align-items: center;
  padding-bottom: .8em;
}

#brands .cnt.brand .cnt__top .img__area {
  width: 36%;
  margin-right: 2em;
}

#brands .cnt.brand .cnt__top .img__area img {
  border-radius: 2.133vw;
  border: 1px solid #86C7D8;
}

#brands .cnt.brand .cnt__top .title__area h3 {
  font-size: 6.4vw;
  margin: 0;
}


/* Tablet用 581px以上に適用されるCSS */
@media (min-width: 581px) {

  #brands .cnt.main .img__area .img__wrapper {
    border-radius: 8px;
    text-align: center;
  }

  #brands .cnt.main .text__area h2 {
    font-size: 2rem;
  }

  #brands .cnt.main .text__area h2 span,
  #brands .cnt.brand .cnt__top .title__area h3 span {
    font-size: .8125rem;
  }

  #brands .cnt .text__area p {
    font-size: 1rem;
  }


  #brands .cnt.brand {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  #brands .cnt.brand>div {
    width: 48%;
    margin-bottom: 0;
  }

  #brands .cnt.brand .cnt__top .img__area {
    width: 28%;
  }

  #brands .cnt.brand .cnt__top .img__area img {
    border-radius: 8px;
  }

  #brands .cnt.brand .cnt__top .title__area h3 {
    font-size: 1.5rem;
  }
}

/* PC用 981px以上に適用されるCSS */
@media (min-width: 981px) {

  #brands .cnt.main {
    display: flex;
    justify-content: space-between;
  }

  #brands .cnt.main .img__area {
    width: 40%;
    margin-bottom: 0;
  }

  #brands .cnt.main .text__area {
    width: 54%;
  }

  #brands .cnt.main .text__area h2 {
    text-align: left;
  }
}


/*バナー対応20250516*/
.middlelesssp{
    display: none;
}

#searchform {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    padding: 0;
    margin: 0.9em;
    background-color: #FFF;
}

#searchform input{
    height: 6vw;
}

#searchform button {
    width: 6vw;
    margin-left: 5px;
    padding: 1px;
    border: none;        
}

#searchform:hover {
    box-shadow: 0 1px 6px rgb(32 33 36 / 28%);
}

#searchform::before {
    width: 45px;
    height: 15px;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%20%3Cpath%20d%3D%22M23.7%2020.8%2019%2016.1c-.2-.2-.5-.3-.8-.3h-.8c1.3-1.7%202-3.7%202-6C19.5%204.4%2015.1%200%209.7%200S0%204.4%200%209.7s4.4%209.7%209.7%209.7c2.3%200%204.3-.8%206-2v.8c0%20.3.1.6.3.8l4.7%204.7c.4.4%201.2.4%201.6%200l1.3-1.3c.5-.5.5-1.2.1-1.6zm-14-5.1c-3.3%200-6-2.7-6-6s2.7-6%206-6%206%202.7%206%206-2.6%206-6%206z%22%20fill%3D%22%239aa0a6%22%3E%3C%2Fpath%3E%20%3C%2Fsvg%3E');
    background-position: center;
    background-repeat: no-repeat;
    content: '';
}

#searchform input {
    width: 250px;
    height: 40px;
    padding: 5px 25px 5px 0;
    border: none;
    box-sizing: border-box;
    outline: none;
}


@media (min-width: 581px) {
  .middlelesspc{
    display: none;
  }
    .pc .fb .menu ul li #searchform{
        display: none;        
    }
    
    #searchform input{
    height: 2vw;
    }
    
    #searchform button {
    width: 2vw;
    }
}

@media (min-width: 1400px) {
    .pc .fb .menu ul li #searchform{
        display: flex;
        align-items: center;
        overflow: hidden;
        border: 1px solid #dfe1e5;
        border-radius: 24px;
        font-size: 0;
    }
}

/*検索*/
.search-form-6 {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
}

.search-form-6:hover {
    box-shadow: 0 1px 6px rgb(32 33 36 / 28%);
}

.search-form-6::before {
    width: 45px;
    height: 15px;
    background-image:   url(https://2025.masuken.com/wp-content/themes/masukencom/images/common/svg/search.svg) ;
    background-position: center;
    background-repeat: no-repeat;
    content: '';
}

.search-form-6 input {
    width: 250px;
    height: 40px;
    padding: 5px 25px 5px 0;
    border: none;
    box-sizing: border-box;
    outline: none;
}


.cta #top_h1{
    text-align: center;
}

.cta #top_h1:before {
    font-size: 0.9rem;
    position: absolute;
    top: 9.5em;
    left: 50%;
    color: #9dccd6;
    transform: translate(-50%, -50%);
}

.cta .about:before {
    content: "about";
}
.cta .flow:before {
    content: "flow";
}
.cta .qa:before {
    content: "search results";
}


.cta_top{ padding: 1em 0; }

@media (min-width: 581px) {
    .cta #top_h1:before {
        top: 12em;
    }
}

.pnkz{
    margin: .5em auto;
}