@charset "UTF-8";
/*
---------------------------------------------------------
 サイト幅 
--------------------------------------------------------- */
.In-wrap {
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 60px);
}

/*
---------------------------------------------------------
 h2　フォントサイズ
--------------------------------------------------------- */
h2{
  font-size: 32px;
}

/* --------------------------------------------------------
-----------------------------------------------------------
Header-nav
-----------------------------------------------------------
----------------------------------------------------------- */
.Header-nav .btn-entry {
  background-color: #ff3800;
}

/* --------------------------------------------------------
-----------------------------------------------------------
fv-block
-----------------------------------------------------------
----------------------------------------------------------- */
.fv-block {
  height: calc(100vh - 78px);
}

.fv-block .message_title{
  height: 280px;
  position: relative;
  padding: 90px 100px;
  text-align: right;
  background-color: #f7f7f7;
}

.fv-block .message_title h1{
  font-size: 50px;
}

.fv-block .message_title p{
  font-size: 20px;
  font-weight: bold;
  margin-top: 15px;
}

.fv-block .message-content{
  display: flex;
  margin-top: -4%;
}

.fv-block .message-content .img-wrap{
  flex: 1;
  position: relative;
  width: 55%;
}

.fv-block .message-content .img-wrap img{
  width: 100%;
  border-radius: 0 50px 50px 0;
  max-width: 1070px;
  min-width: 520px;
}

.fv-block .message-content .text-wrap{
  width: 45%;
  display: flex;
  justify-content: center;
  padding: 10px;
  align-items: center;
}

.fv-block .message-content .txt-boby.HTMLeditor{
  font-size: 26px;
  font-weight: 500;
  width: 440px;
}

/* --------------------------------------------------------
-----------------------------------------------------------
content-block
-----------------------------------------------------------
----------------------------------------------------------- */
.content-block{
  padding-top: 100px;
  padding-bottom: 60px
}

/* --------------------------------------------------------
-----------------------------------------------------------
content-inner
-----------------------------------------------------------
----------------------------------------------------------- */
.Main .text-wrap{
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}

.Main .text-wrap p{
  flex: 1;
  font-size: 18px;
  max-width: 700px;
  line-height: 2.3;
  color: #666666;
}

.Main .img-wrap{
  display: flex;
  gap: 10px;
}

.Main .img-wrap .big-img img{
  border-radius: 50px 0 0 50px;
  width: 840px;
}

.Main .img-wrap .small-img{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.Main .img-wrap .small-img img{
 width: 510px;
}

.Main .img-wrap .small-img img:first-child{
  border-radius: 0 50px 0 0;
}

.Main .img-wrap .small-img img:last-child{
  border-radius: 0 0 50px 0;
}

/* --------------------------------------------------------
.img-wrap.right big-imgが右
----------------------------------------------------------- */
.Main .img-wrap.right .big-img img{
  border-radius: 0 50px 50px 0 ;
}

.Main .img-wrap.right .small-img img:first-child{
  border-radius: 50px 0 0 0;
}

.Main .img-wrap.right .small-img img:last-child{
  border-radius: 0 0 0 50px;
}
/* --------------------------------------------------------
-----------------------------------------------------------
office-block
-----------------------------------------------------------
----------------------------------------------------------- */
.office-block.content-block{
  padding-top: 0;
}

/* --------------------------------------------------------
-----------------------------------------------------------
recreation-block
-----------------------------------------------------------
----------------------------------------------------------- */
.recreation-block.content-block{
  background-color: #f7f7f7;
}
/* --------------------------------------------------------
-----------------------------------------------------------
company-trip-block
-----------------------------------------------------------
----------------------------------------------------------- */

/* --------------------------------------------------------
-----------------------------------------------------------
voice-block
-----------------------------------------------------------
----------------------------------------------------------- */
.voice-block.content-block{
  padding-bottom: 120px;
  background-color: #f7f7f7;
}

.voice-block h2{
  text-align: center;
  margin-bottom: 70px;
}

.voice-block .voice-grid{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}

.voice-block .voice-grid .voice-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  width: calc((100% - 100px)/3);
  height: 250px;
  background-color: #fff;
  box-shadow: 0 0 0 1px #ccc;
  z-index: 1;
}

.voice-block .voice-grid .voice-card p{
  background-color: #FFF;
  font-size: 16px;
  line-height: 2.5;
  text-align: center;
}

.voice-block .voice-grid .voice-card:nth-child(odd){
  border: 1px solid #f54c27;
}

.voice-block .voice-grid .voice-card:nth-child(even){
  border: 1px solid #2d368c;
}

.voice-block .voice-grid .voice-card::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 15px;
  width: calc(100% - 5px);
  height: 10px;
  z-index: -1;
}

.voice-block .voice-grid .voice-card::before {
  content: "";
  position: absolute;
  top: 15px;
  right: -10px;
  width: 10px;
  height: calc(100% - 10px);
  z-index: -1;
}
.voice-block .voice-grid .voice-card:nth-child(odd)::before,
.voice-block .voice-grid .voice-card:nth-child(odd)::after {
  background: linear-gradient(to right, #ff8021, #e63c24);
}

.voice-block .voice-grid .voice-card:nth-child(even)::before,
.voice-block .voice-grid .voice-card:nth-child(even)::after {
  background: linear-gradient(to right, #0889c5, #2d368c);
}