@charset "utf-8";

/*--------------------------------------
　animation
---------------------------------------*/
.verticalAnime > span {
  display: inline-block;
  opacity: 0;
  transform: translateX(-20px);
}
.verticalAnime.is-reveal > span {
  animation: verticalAnime 1s forwards;
}
.verticalAnime.is-reveal > span:nth-of-type(1) {
  animation-delay: 0.6s;
}
.verticalAnime.is-reveal > span:nth-of-type(2) {
  animation-delay: 1.2s;
}
.verticalAnime.is-reveal > span:nth-of-type(3) {
  animation-delay: 1.8s;
}

@keyframes verticalAnime {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes verticalAnimeSP {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@media screen and (max-width: 768px) {
  .verticalAnime > span {
    transform: translateY(20px);
  }
  .verticalAnime.is-reveal > span {
    animation: verticalAnimeSP 1s forwards;
  }
}


/*--------------------------------------
　contents_top
---------------------------------------*/
.contents__top {
	width: 100%;
	min-width: 1100px;
	margin: auto;
	box-sizing: border-box;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.sec {
	width: 100%;
}

.sec__inner {
	max-width: 1100px;
	margin: auto;
	box-sizing: border-box;
}

.flexBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flexBox.ai-c {
  align-items: center;
}
.flexBox.rev {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
	.contents__top {
		min-width: 100%;
	}
  
	.sec {
		min-width: 100%;
	}
  
	.sec__inner {
		max-width: 100%;
	}
  
  .flexBox {
    display: block;
  }
  
  .flexBox_sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .flexBox_sp.ai-c {
    align-items: center;
  }
  .flexBox_sp.rev {
    flex-direction: row-reverse;
  }
}


/*--------------------------------------
　MV
---------------------------------------*/
.mv__home {
  width: 100%;
  min-width: 1100px;
  padding: 18rem 0 10rem;
  position: relative;
  z-index: 0;
}
.mv__home::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../../../images/lp/yokohama/mv_bg.png") center bottom no-repeat;
  background-size: cover;
  width: 100%;
  height: 1047px;
  z-index: -1;
}

.mv__inner {
  max-width: 1100px;
  margin: auto;
  position: relative;
}

.mv__img01 {
  position: absolute;
  bottom: 0;
  right: calc(100% - 80px);
  width: 340px;
}

.mv__img02 {
  position: absolute;
  top: 0;
  left: 55%;
  width: 760px;
}

.mv__block {
  width: 20%;
}

.mv__ttlBox {
  margin-left: 260px;
}

.mv__ttl {
  display: inline-block;
  font-size: 4.4rem;
  font-weight: bold;
  line-height: 2.2;
  letter-spacing: 0.1em;
	height: auto;
	-webkit-writing-mode: vertical-rl;
	-moz-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.mv__ttl span {
  font-weight: bold;
}
.mv__ttl .border {
  display: inline-block;
  position: relative;
}
.mv__ttl .border::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  background: #8aeabb;
  width: 2px;
}

@media screen and (max-width: 768px) {
  .mv__home {
    min-width: 100%;
    padding: 7rem 2rem 1rem;
  }
  .mv__home::after {
    background: url("../../../images/lp/yokohama/mv_bg-sp.png") center bottom no-repeat;
    background-size: cover;
    width: 100%;
    height: 0;
    padding-top: calc(100%*915/750);
  }

  .mv__inner {
    max-width: 100%;
  }

  .mv__img01 {
    display: none;
  }

  .mv__img02 {
    display: none;
  }

  .mv__img-sp {
    width: calc(100% + 4rem);
    margin: 0 2rem 0 -2rem;
  }

  .mv__block {
    width: 100%;
  }

  .mv__ttlBox {
    margin-left: 0;
  }

  .mv__ttl {
    margin: 3rem 0 0;
    font-size: 2.3rem;
    line-height: 2;
    -webkit-writing-mode: inherit;
    -moz-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
  }
  .mv__ttl .border::before {
    top: inherit;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 1px;
  }
}


/*--------------------------------------
　sec-lead
---------------------------------------*/
.sec-lead {
  padding: 0 0 12rem;
}

.sec-lead .boxL {
  width: 50%;
}

.fadeInUp .line {
  display: block;
  overflow: hidden;
}
.fadeInUp .line__inner {
  display: inline-block;
  transform: translateY(100%);
  will-change: transform;
}
.fadeInUp.isActive .line__inner {
  animation: fadeInUp 1.4s cubic-bezier(.22,.61,.36,1) forwards;
}

.fadeInUp .line--blank::before{
  content: "";
  display: block;
  height: 2em;
}

@keyframes fadeInUp {
  0%   {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}

.sec-lead .boxR {
  width: 50%;
}

.sec-lead .sec__lead-img {
  width: 590px;
  margin-left: 8rem;
}

@media screen and (max-width: 768px) {
  .sec-lead {
    padding: 0 2rem 6rem;
  }

  .sec-lead .boxL {
    width: 100%;
  }

  .sec-lead .boxR {
    width: 100%;
  }

  .sec-lead .imgBox {
    width: calc(100% - 4rem);
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
  }
}


/*--------------------------------------
　Title
---------------------------------------*/
h2,
h3,
h4,
h5,
.cc {
  font-weight: bold;
  line-height: 1.5;
}
h2 span,
h3 span,
h4 span,
h5 span,
.cc span {
  font-weight: bold;
  line-height: 1.5;
}

.fs-40 {
  font-size: 4rem;
}
.fs-45 {
  font-size: 4.5rem;
}
.fs-50 {
  font-size: 5rem;
}

.titleAnime .line {
  display: inline-block;
  overflow: hidden;
}
.titleAnime .inner {
  display: inline-block;
  transform: translateY(100%);
  will-change: transform;
  opacity: 0;
}
.titleAnime.is-show .inner {
  animation: headingUp 1s cubic-bezier(.22,.61,.36,1) forwards;
}
/*.titleAnime.is-show .line:nth-of-type(1) .inner {
  animation-delay: 0.6s;
}
.titleAnime.is-show .line:nth-of-type(2) .inner {
  animation-delay: 1.2s;
}
.titleAnime.is-show .line:nth-of-type(3) .inner {
  animation-delay: 1.8s;
}*/

@keyframes headingUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  .fs-40 {
    font-size: 2.2rem;
  }
  .fs-45 {
    font-size: 2.2rem;
  }
  .fs-50 {
    font-size: 2.5rem;
  }
}


/*--------------------------------------
　テキスト
---------------------------------------*/
.contents_top p {
	margin: 3rem 0 3rem;
	font-size: 1.5rem;
	line-height: 2;
}

p.txt {
	margin: 3rem 0 3rem;
	font-size: 1.5rem;
	text-align: justify;
	line-height: 2;
}

p.lead {
	margin: 3rem 0 0!important;
	font-size: 1.5rem;
	line-height: 2;
}

.caption {
	margin: 1rem 0 0 0;
	padding: 0 0 0.5rem 0;
	font-size: 1rem;
	line-height: 1.3;
}

.fw-b {
  font-weight: bold;
}
.fw-b span{
  font-weight: bold;
}

@media screen and (max-width: 768px) {
	.contents_top p {
		margin: 2rem 0 2rem;
		line-height: 1.8;
	}

	p.txt {
		margin: 2rem 0 2rem;
		line-height: 1.8;
	}

	p.lead {
		margin: 2rem 0 0!important;
		line-height: 1.8;
	}
  
  .caption {
    margin: 1rem 0 0 0;
    padding: 0 0 0.5rem 0;
    font-size: 1rem;
    line-height: 1.3;
  }
  
  .sec p {
    margin: 0 0 0;
  }
}


/*--------------------------------------
　sec-workplace
---------------------------------------*/
.sec-workplace {
  padding: 14rem 0 12rem;
}

.sec-workplace .boxL {
  width: calc(100% - 900px);
}

.sec-workplace .sec__ttl__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec-workplace .ttl__icon {
  width: 130px;
  margin: auto;
}

.sec-workplace .sec__ttl {
  display: inline-block;
  margin: 2.5rem 0 0;
  line-height: 1.6;
  letter-spacing: 0.1em;
	height: auto;
	-webkit-writing-mode: vertical-rl;
	-moz-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.sec-workplace .sec__ttl .border {
  display: inline-block;
  position: relative;
}
.sec-workplace .sec__ttl .border::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3px;
  background: #ff5c78;
  width: 1px;
}

.sec-workplace .boxR {
  width: 850px;
  position: relative;
}

.sec-workplace .txtBox {
  padding: 5rem 6rem;
  border: 5px solid #cba954;
  border-radius: 20px;
}

.sec-workplace .txtBox__inner {
  width: 75%;
}

.sec-workplace .workplace__ttl {
  display: inline-block;
  padding: 0 3rem 2rem 0;
  font-size: 2.4rem;
  border-bottom: 1px solid #cba954;
}
.sec-workplace .workplace__ttl .large {
  display: inline-block;
  padding: 0 2.5rem;
  font-size: 3.4rem;
  position: relative;
}
.sec-workplace .workplace__ttl .large::before,
.sec-workplace .workplace__ttl .large::after {
  content: "";
  position: absolute;
  top: 0;
  background: url("../../../images/lp/yokohama/deco01.png") left top no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
  margin-top: 5px;
  box-sizing: border-box;
}
.sec-workplace .workplace__ttl .large::before {
  left: 0;
}
.sec-workplace .workplace__ttl .large::after {
  right: 0;
  transform: scale(-1, -1);
}

.sec-workplace .txt {
  margin: 3rem 0 0;
}

.sec-workplace .imgBox {
  position: absolute;
  top: 120px;
  left: 62%;
  width: 475px;
}
.sec-workplace .imgBox img {
  border-radius: 150px 0 150px 0;
}

@media screen and (max-width: 768px) {
  .sec-workplace {
    padding: 6rem 2rem 8rem;
  }

  .sec-workplace .boxL {
    width: 100%;
  }

  .sec-workplace .sec__ttl__wrap {
    display: block;
    text-align: center;
  }

  .sec-workplace .ttl__icon {
    width: 30%;
  }

  .sec-workplace .sec__ttl {
    margin: 1rem 0 0;
    -webkit-writing-mode: inherit;
    -moz-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
  }
  .sec-workplace .sec__ttl .border::before {
    top: inherit;
    bottom: 0;
    left: 0;
    background: #ff5c78;
    width: 100%;
    height: 1px;
  }

  .sec-workplace .boxR {
    width: 100%;
    margin: 3rem 0 0;
  }

  .sec-workplace .txtBox {
    padding: 2rem 2rem 2rem;
    border: 3px solid #cba954;
    border-radius: 10px;
  }

  .sec-workplace .txtBox__inner {
    width: 100%;
  }

  .sec-workplace .workplace__ttl {
    padding: 0 0 1.5rem 0;
    font-size: 1.8rem;
    border-bottom: 1px solid #cba954;
  }
  .sec-workplace .workplace__ttl .large {
    padding: 0 1.5rem;
    font-size: 2.5rem;
  }
  .sec-workplace .workplace__ttl .large::before,
  .sec-workplace .workplace__ttl .large::after {
    width: 13px;
    height: 13px;
  }

  .sec-workplace .txt {
    margin: 2rem 0 0;
  }

  .sec-workplace .imgBox {
    position: relative;
    top: inherit;
    left: inherit;
    width: 80%;
    margin: 2rem auto 0;
  }
  .sec-workplace .imgBox img {
    border-radius: 75px 0 75px 0;
  }
}


/*--------------------------------------
　sec-realize
---------------------------------------*/
.sec-realize {
  background: #fff6f7;
  padding: 14rem 0 24rem;
}

.sec-realize__upper {
  margin: 5rem 0 0;
}
.sec-realize__upper .boxL {
  width: calc(100% - 480px);
}
.sec-realize__upper .cc {
  display: inline;
  background: linear-gradient(transparent 0%, #fff 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 1.5rem 3rem;
  font-size: 2.4rem;
  line-height: 2.2;
}
.sec-realize__upper .boxR {
  width: 420px;
}
.sec-realize__upper .imgBox img {
  border-radius: 15px;
}

.sec-realize__block {
  background: #fff;
  width: calc(100% + 16rem);
  margin: 6rem 8rem 14rem -8rem;
  padding: 8rem 8rem;
  border-radius: 30px;
  position: relative;
}

.realize__ttl01 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ff6d86;
  width: 330px;
  height: 330px;
  font-size: 3.6rem;
  text-align: center;
  border-radius: 50%;
  z-index: 2;
}

.sec-realize__block .flexBox {
  gap: 160px 100px;
}

.sec-realize__item {
  background: #f2f2f2;
  width: calc((100% / 2) - 50px);
  padding: 4rem 4rem 5rem;
  border-radius: 20px;
}

.realize__ttl02__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sec-realize__item .ttl__icon {
  width: 100px;
  position: relative;
  z-index: 1;
}
.sec-realize__item .ttl__icon img {
  border-radius: 50%;
}
.sec-realize__item:nth-child(1) .ttl__icon img {
  border: 2px solid #78ccff;
}
.sec-realize__item:nth-child(2) .ttl__icon img {
  border: 2px solid #97a4e9;
}
.sec-realize__item:nth-child(3) .ttl__icon img {
  border: 2px solid #63ce97;
}
.sec-realize__item:nth-child(4) .ttl__icon img {
  border: 2px solid #ef8766;
}
.realize__ttl02 {
  width: calc(100% - 100px);
  margin: 0 3rem 0 -3rem;
  font-size: 2.2rem;
}
.realize__ttl02 span {
  display: block;
  width: calc(100% + 30px);
  padding: 1.5rem 2rem 1.5rem 4rem;
  border-radius: 20px 0 20px 0;
}
.sec-realize__item:nth-child(1) .realize__ttl02 span {
  background: #78ccff;
}
.sec-realize__item:nth-child(2) .realize__ttl02 span {
  background: #97a4e9;
}
.sec-realize__item:nth-child(3) .realize__ttl02 span {
  background: #63ce97;
}
.sec-realize__item:nth-child(4) .realize__ttl02 span {
  background: #ef8766;
}

.sec-realize__block .txtBox {
  padding: 0 2rem;
}

.realize__ttl03 {
  display: flex;
  align-items: center;
  margin: 2rem 0 0;
  font-size: 2.2rem;
}

.sec-realize__block .txt {
  margin: 2rem 0 0;
}

@media screen and (max-width: 768px) {
  .sec-realize {
    padding: 6rem 0 8rem;
  }

  .sec-realize__upper {
    margin: 4rem 0 0;
    padding: 0 2rem;
  }
  .sec-realize__upper .flexBox {
    display: flex;
    flex-wrap: wrap;
  }
  .sec-realize__upper .boxL {
    width: 100%;
    margin: 3rem 0 0;
    order: 2;
  }
  .sec-realize__upper .cc {
    padding: 8px 1.5rem;
    font-size: 1.8rem;
    line-height: 2.8;
  }
  .sec-realize__upper .boxR {
    width: 100%;
    order: 1;
  }
  .sec-realize__upper .imgBox img {
    border-radius: 8px;
  }

  .sec-realize__block {
    width: calc(100% - 4rem);
    margin: 8rem auto 6rem auto;
    padding: 0 2rem 3rem;
    border-radius: 15px;
  }

  .realize__ttl01 {
    position: relative;
    top: -50px;
    left: inherit;
    transform: translate(0%,0%);
    width: 60%;
    height: inherit;
    margin: auto;
    font-size: 2rem;
  }
  .realize__ttl01::before {
    content: "";
    display: block;
    padding-top: 100%;
  }

  .sec-realize__block .flexBox {
    gap: 0 0;
    margin-top: -3.5rem;
  }

  .sec-realize__item {
    width: 100%;
    margin: 0 0 2rem;
    padding: 2rem 2rem 4rem;
    border-radius: 10px;
  }
  .sec-realize__item:last-child {
    margin: 0 0 0;
  }

  .sec-realize__item .ttl__icon {
    width: 60px;
  }
  .sec-realize__item:nth-child(1) .ttl__icon img {
    border: 1px solid #78ccff;
  }
  .sec-realize__item:nth-child(2) .ttl__icon img {
    border: 1px solid #97a4e9;
  }
  .sec-realize__item:nth-child(3) .ttl__icon img {
    border: 1px solid #63ce97;
  }
  .sec-realize__item:nth-child(4) .ttl__icon img {
    border: 1px solid #ef8766;
  }
  
  .realize__ttl02 {
    width: calc(100% - 60px);
    margin: 0 3rem 0 -3rem;
    font-size: 1.6rem;
  }
  .realize__ttl02 span {
    display: block;
    width: calc(100% + 30px);
    padding: 1rem 1.5rem 1rem 3.5rem;
    border-radius: 10px 0 10px 0;
  }

  .sec-realize__block .txtBox {
    padding: 0 0;
  }

  .realize__ttl03 {
    display: block;
    margin: 2rem 0 0;
    font-size: 1.5rem;
  }

  .sec-realize__block .txt {
    margin: 1.5rem 0 0;
  }  
}


/*--------------------------------------
　sec-interview
---------------------------------------*/
.sec-interview {
  padding: 12rem 0 12rem;
}

.sec-interview__upper .boxL {
  width: 45%;
}
.sec-interview__upper .boxR {
  width: 52%;
}
.sec-interview__upper .imgBox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 30px;
}
.sec-interview__upper .image {
  width: calc(100% / 2);
}
.sec-interview__upper .image:nth-child(2) {
  margin-top: 8rem;
}
.sec-interview__upper .image img {
  border-radius: 100px 0 100px 0;
}

.sec-interview__block {
  margin: 5rem 0 0;
}

.sec-interview__item {
  background: #fff3f3;
  margin: 0 0 6rem;
  padding: 6rem 8rem 6rem;
  border-radius: 30px;
}
.sec-interview__item:last-child {
  margin: 0 0 0;
}

.sec-interview__item .eng {
  width: 150px;
  margin-left: -2rem;
  position: relative;
}
.sec-interview__item .eng::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 15px);
  background: #ff6d86;
  width: 45px;
  height: 2px;
}

.interview__head {
  margin: 4rem 0 4rem;
}
.interview__head .boxL {
  width: 240px;
}
.interview__head .image img {
  border-radius: 100px 0 100px 0;
}
.interview__head .name {
  margin: 2rem 0 0;
  color: #777;
  font-size: 1.6rem;
  line-height: 1.5;
}
.interview__head .boxR {
  width: calc(100% - 290px);
}

.interview__ttl01 {
  margin: 0 0 4rem;
  font-size: 3rem;
}

.interview__box {
  background: #fff;
  margin: 0 0 4rem;
  padding: 3rem 3rem 3rem;
  border-radius: 20px;
}
.interview__box:last-child {
  margin: 0 0 0;
}
.interview__box .q__ttl {
  padding: 0 0 2rem 7rem;
  font-size: 2.2rem;
  border-bottom: 1px solid #f4f3f3;
  position: relative;
}
.interview__box .q__ttl::before {
  content: "";
  position: absolute;
  top: calc(50% - 1rem);
  left: 0;
  transform: translate(0,-50%);
  background: url("../../../images/lp/yokohama/icon-q-bk.png") left top no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
}
.interview__box .a__txtBox {
  margin: 3rem 0 0;
  padding: 0 0 0 7rem;
  position: relative;
}
.interview__box .a__txtBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../../../images/lp/yokohama/icon-a-pk.png") left top no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
}
.interview__box .txt {
  margin: 0 0 0;
}

@media screen and (max-width: 768px) {
  .sec-interview {
    padding: 6rem 2rem 8rem;
  }

  .sec-interview__upper .boxL {
    width: 100%;
  }
  .sec-interview__upper .boxR {
    width: 100%;
    margin: 3rem 0 0;
  }
  .sec-interview__upper .imgBox {
    gap: 0 15px;
  }
  .sec-interview__upper .image:nth-child(2) {
    margin-top: 4rem;
  }
  .sec-interview__upper .image img {
    border-radius: 50px 0 50px 0;
  }

  .sec-interview__block {
    margin: 4rem 0 0;
  }

  .sec-interview__item {
    margin: 0 0 4rem;
    padding: 3rem 2rem 3rem;
    border-radius: 15px;
  }

  .sec-interview__item .eng {
    width: 45%;
    margin-left: 0;
    padding: 0 0 0 1rem;
  }
  .sec-interview__item .eng::before {
    right: 100%;
    width: 20px;
    height: 1px;
  }

  .interview__head {
    margin: 2rem 0 2rem;
  }
  .interview__head .boxL {
    width: 100%;
  }
  .interview__head .imgBox {
    width: 40%;
  }
  .interview__head .image img {
    border-radius: 50px 0 50px 0;
  }
  .interview__head .name {
    margin: 1rem 0 3rem;
    font-size: 1.3rem;
  }
  .interview__head .boxR {
    width: 100%;
  }

  .interview__ttl01 {
    width: calc(60% - 1.5rem);
    margin: 0 0 0;
    font-size: 1.7rem;
  }

  .interview__box {
    margin: 0 0 2rem;
    padding: 2rem 2rem 2rem;
    border-radius: 10px;
  }
  .interview__box .q__ttl {
    padding: 0 0 1.5rem 4rem;
    font-size: 1.7rem;
  }
  .interview__box .q__ttl::before {
    top: 5px;
    transform: translate(0,0);
    width: 30px;
    height: 30px;
  }
  .interview__box .a__txtBox {
    margin: 2rem 0 0;
    padding: 0 0 0 4rem;
  }
  .interview__box .a__txtBox::before {
    width: 30px;
    height: 30px;
  }
  .interview__box .txt {
    margin: 0 0 0;
  }
}


/*--------------------------------------
　sec-merit
---------------------------------------*/
.sec-merit {
  background: #f4f5f4;
  margin: 12rem 0 0;
  padding: 14rem 0 14rem;
}

.sec-merit .lead {
  text-align: center;
}

.sec-merit__block {
  margin: 8rem 0 0;
}

.sec-merit__block .flexBox {
  gap: 8px 8px;
}

.sec-merit__item {
  background: #fff;
  width: calc((100% / 5) - 8px);
  padding: 3rem 4rem;
  border-radius: 15px;
  text-align: center;
}
.sec-merit__item:nth-child(1),
.sec-merit__item:nth-child(2),
.sec-merit__item:nth-child(3) {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% / 3) - 8px);
}

.sec-merit__item .icon {
  width: 50px;
  margin: auto;
}
.sec-merit__item:nth-child(1) .icon,
.sec-merit__item:nth-child(2) .icon,
.sec-merit__item:nth-child(3) .icon {
  width: 60px;
  margin: 0 3rem 0 0;
}

.sec-merit__item .merit__txt {
  margin: 1rem 0 0;
  font-size: 1.5rem;
  line-height: 1.5;
}
.sec-merit__item:nth-child(1) .merit__txt,
.sec-merit__item:nth-child(2) .merit__txt,
.sec-merit__item:nth-child(3) .merit__txt {
  margin: 0 0 0;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .sec-merit {
    margin: 8rem 0 0;
    padding: 6rem 2rem 8rem;
  }

  .sec-merit .lead {
    text-align: justify;
  }

  .sec-merit__block {
    margin: 4rem 0 0;
  }

  .sec-merit__block .flexBox {
    display: flex;
    justify-content: space-between;
    gap: 6px 3px;
  }

  .sec-merit__item {
    width: calc((100% / 2) - 3px);
    padding: 2rem 2rem;
    border-radius: 8px;
  }
  .sec-merit__item:nth-child(1),
  .sec-merit__item:nth-child(2),
  .sec-merit__item:nth-child(3) {
    display: block;
    width: calc((100% / 2) - 3px);
  }

  .sec-merit__item .icon {
    width: 35%;
    margin: auto;
  }
  .sec-merit__item:nth-child(1) .icon,
  .sec-merit__item:nth-child(2) .icon,
  .sec-merit__item:nth-child(3) .icon {
    width: 35%;
    margin: auto;
  }

  .sec-merit__item .merit__txt {
    margin: 5px 0 0;
    font-size: 1.5rem;
  }
  .sec-merit__item:nth-child(1) .merit__txt,
  .sec-merit__item:nth-child(2) .merit__txt,
  .sec-merit__item:nth-child(3) .merit__txt {
    margin: 5px 0 0;
    font-size: 1.5rem;
  }
}


/*--------------------------------------
　sec-facility
---------------------------------------*/
.sec-facility {
  padding: 12rem 0 12rem;
}

.sec-facility .cc {
  margin: 5rem 0 0;
  font-size: 2.8rem;
}

.sec-facility .lead {
  padding: 0 8rem;
}

.facility__slide {
  margin: 5rem 0 0;
}

.facility__slide .slider__main {
  max-width: 1100px;
  margin: auto;
}

.facility__slide .slider__main__item {
  background: #cba954;
  padding: 5rem 8rem 5rem;
  border-radius: 20px;
}
.facility__slide .slider__main__item .boxL {
  width: 425px;
}
.facility__slide .slider__main__item .imgBox img {
  border-radius: 5px;
}
.facility__slide .slider__main__item .boxR {
  width: calc(100% - 470px);
}
.facility__slide .slider__main__item .sub__txt {
  font-size: 1.8rem;
  line-height: 1.5;
}
.facility__ttl01 {
  margin: 1rem 0 0;
  padding: 0 0 1.5rem;
  font-size: 3rem;
  border-bottom: 1px solid #fff;
}
.facility__slide .slider__main__item .info__list {
  margin: 1.5rem 0 0;
}
.facility__slide .slider__main__item .info__list li {
  margin: 0 0 1.5rem;
  padding: 0 0 0 1.5rem;
  font-size: 1.6rem;
  line-height: 1.6;
  position: relative;
}
.facility__slide .slider__main__item .info__list li:last-child {
  margin: 0 0 0;
}
.facility__slide .slider__main__item .info__list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  background: #fff;
  width: 8px;
  height: 8px;
  box-sizing: border-box;
  border-radius: 50%;
}
.facility__slide .slider__main__item .txtBox {
  background: #fff;
  margin: 3rem 0 0;
  padding: 3rem 3rem 3rem;
}
.facility__ttl02 {
  font-size: 2.2rem;
  line-height: 1.5;
}
.facility__slide .slider__main__item .txt {
  margin: 2rem 0 0;
}

.facility__slide .slider__thum {
  max-width: 1310px;
  margin: 7rem auto 0;
}
.facility__slide .slider__thum__item {
  background: #f1ece9;
  width: 305px;
  margin: 0 1.5rem;
  padding: 3rem 3rem 3rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.facility__slide .slider__thum__item:hover {
  opacity: 0.6;
}
.facility__slide .slider__thum .imgBox img {
  border-radius: 5px;
}
.facility__slide .slider__thum .thum__txt {
  margin: 1.5rem 0 0;
  font-size: 1.8rem;
  line-height: 1.5;
}
.facility__slide .slider__thum .thum__txt .small {
  font-size: 1.4rem;
}


/*----- slick -----*/
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* arrow */
.slide-arrow {
	display: block;
	position: absolute;
	top: calc(50% - 3rem);
  transform: translate(0,-50%);
  background: url("../../../images/lp/yokohama/slick-arrow.png") left top no-repeat;
  background-size: contain;
	width: 46px;
	height: 46px;
	z-index: 999;
	cursor: pointer;
  transition: all 0.3s ease;
}
.prev-arrow {
	left: -23px;
}
.next-arrow {
	right: -23px;
  transform: translate(0,-50%) scale(-1,1);
}
.slide-arrow :hover {
  opacity: 0.6;
}

/* dots */
.slide-dots {
  text-align: center;
	margin: 5rem 0 0;
	padding: 0 0;
	font-size: 0;
}
.slide-dots li {
  display: inline-block;
  margin: 0 8px;
}
.slide-dots li button {
	background: #dcdcdc;
	width: 12px;
	height: 12px;
	box-sizing: border-box;
	border-radius: 50%;
  position: relative;
  text-indent: -9999px;
  cursor: pointer;
}
.slide-dots li.slick-active button {
  background: #cba954;
}

.slick-slide:focus {
  outline: none;
}
.slick-slide {
  display: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-slider div {
  transition: none;
}

@media screen and (max-width: 768px) {
  .sec-facility {
    padding: 6rem 2rem 8rem;
  }

  .sec-facility .cc {
    margin: 2rem 0 0;
    font-size: 1.7rem;
  }

  .sec-facility .lead {
    padding: 0 0;
  }

  .facility__slide {
    display: flex;
    flex-wrap: wrap;
    margin: 4rem 0 0;
  }

  .facility__slide .slider__main {
    max-width: 100%;
    margin: 3rem 0 0;
    order: 2;
  }

  .facility__slide .slider__main__item {
    padding: 3rem 2rem 3rem;
    border-radius: 10px;
  }
  .facility__slide .slider__main__item .flexBox {
    display: flex;
    flex-wrap: wrap;
  }
  .facility__slide .slider__main__item .boxL {
    width: 100%;
    margin: 2rem 0 0; order: 2;
  }
  .facility__slide .slider__main__item .imgBox img {
    border-radius: 0;
  }
  .facility__slide .slider__main__item .boxR {
    width: 100%;
    order: 1;
  }
  .facility__slide .slider__main__item .sub__txt {
    font-size: 1.5rem;
  }
  .facility__ttl01 {
    margin: 8px 0 0;
    padding: 0 0 1rem;
    font-size: 2rem;
  }
  .facility__slide .slider__main__item .info__list li {
    margin: 0 0 1rem;
    font-size: 1.4rem;
  }
  .facility__slide .slider__main__item .info__list li::before {
    top: 9px;
  }
  .facility__slide .slider__main__item .txtBox {
    margin: 2rem 0 0;
    padding: 2rem 2rem 2rem;
  }
  .facility__ttl02 {
    font-size: 1.6rem;
  }
  .facility__slide .slider__main__item .txt {
    margin: 1.5rem 0 0;
  }

  .facility__slide .slider__thum {
    width: 100%;
    margin: 0 auto 0;
    order: 1;
  }
  .facility__slide .slider__thum__item {
    width: auto;
    margin: 0 5px;
    padding: 1.5rem 1.5rem 1.5rem;
    border-radius: 3px;
  }
  .facility__slide .slider__thum__item:hover {
    opacity: 1;
  }
  .facility__slide .slider__thum .imgBox img {
    border-radius: 0;
  }
  .facility__slide .slider__thum .thum__txt {
    margin: 1rem 0 0;
    font-size: 1.5rem;
  }
  .facility__slide .slider__thum .thum__txt .small {
    font-size: 1.3rem;
  }


  /*----- slick -----*/
  /* arrow */
  .slide-arrow {
    top: calc(50% - 1.5rem);
    width: 24px;
    height: 24px;
  }
  .prev-arrow {
    left: -10px;
  }
  .next-arrow {
    right: -10px;
  }
  .slide-arrow :hover {
    opacity: 1;
  }

  /* dots */
  .slide-dots {
    margin: 3rem 0 0;
  }
  .slide-dots li {
    margin: 0 5px;
  }
  .slide-dots li button {
    width: 10px;
    height: 10px;
  } 
}


/*--------------------------------------
　sec-qa
---------------------------------------*/
.sec-qa {
  padding: 15rem 0 15rem;
}

.sec-qa__block {
  margin: 7rem 0 0;
}

.sec-qa__item {
  background: #f3f3f3;
  margin: 0 0 4rem;
  padding: 4rem 4rem 4rem;
  border-radius: 20px;
}
.sec-qa__item:last-child {
  margin: 0 0 0;
}

.sec-qa__item .acc__btn {
  padding: 0 6rem 0 0;
  position: relative;
  cursor: pointer;
}
.sec-qa__item .acc__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0,-50%);
  background: url("../../../images/lp/yokohama/acc-open.png") left top no-repeat;
  background-size: contain;
  width: 35px;
  height: 35px;
  box-sizing: border-box;
}
.sec-qa__item .acc__btn.open::after {
  background: url("../../../images/lp/yokohama/acc-close.png") left top no-repeat;
  background-size: contain;
}

.qa__ttl01 {
  padding: 0 0 0 7rem;
  font-size: 2.2rem;
}
.qa__ttl01::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  background: url("../../../images/lp/yokohama/icon-q-pk.png") left top no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
}

.sec-qa__item .acc__content {
  display: none;
}
.sec-qa__item .acc__content.show {
  display: block;
}

.sec-qa__item .a__txtBox {
  margin: 3rem 0 0;
  padding: 3rem 0 0 7rem;
  border-top: 1px solid #fff;
  position: relative;
}
.sec-qa__item .a__txtBox::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  background: url("../../../images/lp/yokohama/icon-a-bk.png") left top no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
}

.sec-qa__item .txt {
  margin: 0 0 0;
}

@media screen and (max-width: 768px) {
  .sec-qa {
    padding: 6rem 2rem 6rem;
  }

  .sec-qa__block {
    margin: 3rem 0 0;
  }

  .sec-qa__item {
    margin: 0 0 2rem;
    padding: 2rem 2rem 2rem;
    border-radius: 10px;
  }

  .sec-qa__item .acc__btn {
    padding: 0 3rem 0 0;
  }
  .sec-qa__item .acc__btn::after {
    width: 25px;
    height: 25px;
  }

  .qa__ttl01 {
    padding: 0 0 0 4rem;
    font-size: 1.7rem;
  }
  .qa__ttl01::before {
    top: 5px;
    width: 30px;
    height: 30px;
  }

  .sec-qa__item .a__txtBox {
    margin: 2rem 0 0;
    padding: 2rem 0 0 4rem;
  }
  .sec-qa__item .a__txtBox::before {
    top: 20px;
    width: 30px;
    height: 30px;
  }
}


/*--------------------------------------
　sec-requirement
---------------------------------------*/
.sec-requirement {
  background: #f4f3f3;
  padding: 15rem 0 15rem;
  border-radius: 200px 0 200px 0;
}

.sec-requirement__block {
  margin: 6rem 0 0;
}

.sec-requirement__item {
  margin: 0 0 6rem;
}
.sec-requirement__item:last-child {
  margin: 0 0 0;
}

.requirement__ttl01 {
  background: #fff;
  padding: 1.3rem 3rem;
  font-size: 2.3rem;
  border-left: 3px solid #f1a2bb;
}

.requirement__table {
  width: 100%;
  margin: 2rem 0 0;
}
.requirement__table tr {
  width: 100%;
  border-bottom: 1px solid #d7d7d7;
}
.requirement__table tr:last-child {
  border-bottom: none;
}
.requirement__table th {
  vertical-align: top;
  width: 20%;
  padding: 2.5rem 0 2.5rem;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2;
}
.requirement__table td {
  vertical-align: top;
  padding: 2.5rem 0 2.5rem 2rem;
  line-height: 2;
}
.requirement__table p {
  font-size: 1.4rem;
  line-height: 2;
}

.sec-requirement__item .cta__btn {
  width: 320px;
  margin: 3rem auto 0;
}
.sec-requirement__item .cta__btn a {
  height: auto;
  padding: 2rem 7rem;
  font-size: 1.6rem;
}
.sec-requirement__item .cta__btn a::after {
  right: 20px;
}

@media screen and (max-width: 768px) {
  .sec-requirement {
    padding: 6rem 2rem 6rem;
    border-radius: 75px 0 75px 0;
  }

  .sec-requirement__block {
    margin: 3rem 0 0;
  }

  .sec-requirement__item {
    margin: 0 0 2rem;
  }

  .requirement__ttl01 {
    padding: 1.3rem 2rem;
    font-size: 1.7rem;
    border-left: 2px solid #f1a2bb;
  }

  .requirement__table {
    margin: 1rem 0 0;
  }
  .requirement__table th {
    vertical-align: top;
    width: 30%;
    padding: 1.5rem 0 1.5rem;
    line-height: 1.8;
  }
  .requirement__table td {
    padding: 1.5rem 0 1.5rem 1.5rem;
    line-height: 1.8;
  }
  .requirement__table p {
    line-height: 1.8;
  }  
  
  .sec-requirement__item .cta__btn {
    width: 90%;
    margin: 1rem auto 3rem;
  }
  .sec-requirement__item .cta__btn a {
    padding: 2rem 5rem;
    font-size: 1.5rem;
  }
  .sec-requirement__item .cta__btn a::after {
    right: 15px;
  }  
  
  /*.sec-requirement__item .acc__btn-sp {
    background: #fff;
    width: 100%;
    padding: 1.3rem 2rem 1.3rem 2rem;
    border-left: 2px solid #f1a2bb;
  }
  .sec-requirement__item .acc__btn-sp::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0,-50%);
    background: url("../../../images/lp/yokohama/acc-open.png") left top no-repeat;
    background-size: contain;
    width: 25px;
    height: 25px;
    box-sizing: border-box;
  }
  .sec-requirement__item .acc__btn-sp.open::after {
    background: url("../../../images/lp/yokohama/acc-close.png") left top no-repeat;
    background-size: contain;
  }
  
  .sec-requirement__item .acc__content-sp {
    display: none;
  }
  .sec-requirement__item .acc__content-sp.show {
    display: block;
  }*/
}


/*--------------------------------------
　sec-company
---------------------------------------*/
.sec-company {
  padding: 15rem 0 15rem;
}

.sec-company__block {
  margin: 6rem 0 0;
  padding: 6rem 0 0;
  border-top: 1px solid #d2d2d2;
}

.sec-company__block .flexBox {
  gap: 0 80px;
}

.company__table {
  width: calc((100% / 2) - 40px);
}
.company__table tr {
  width: 100%;
}
.company__table tr:last-child {
  border-bottom: none;
}
.company__table th {
  vertical-align: top;
  padding: 0 0 1rem;
  width: 30%;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2;
}
.company__table td {
  vertical-align: top;
  padding: 0 0 1rem;
  line-height: 2;
}
.company__table p {
  font-size: 1.4rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .sec-company {
    padding: 6rem 2rem 6rem;
  }

  .sec-company__block {
    margin: 3rem 0 0;
    padding: 3rem 0 0;
  }

  .sec-company__block .flexBox {
    gap: 0 0;
  }

  .company__table {
    width: 100%;
  }
  .company__table tr {
    width: 100%;
  }
  .company__table tr:last-child {
    border-bottom: none;
  }
  .company__table th {
    padding: 0 0 8px;
    width: 30%;
    line-height: 1.8;
  }
  .company__table td {
    padding: 0 0 8px 1.5rem;
    line-height: 1.8;
  }
  .company__table p {
    line-height: 1.8;
  }
}



/*--------------------------------------
　sec-entry
---------------------------------------*/
.sec-entry {
  background: #f1ece8;
  padding: 14rem 0 27rem;
  border-radius: 200px 0 0 0;
}

.sec-entry .lead {
  padding: 0 8rem;
}

@media screen and (max-width: 768px) {
  .sec-entry {
    padding: 6rem 2rem 15rem;
    border-radius: 75px 0 0 0;
  }

  .sec-entry .lead {
    padding: 0 0;
  }
}

