@charset "UTF-8";
/* --------------------------------------------------------
-----------------------------------------------------------
 COMMON
-----------------------------------------------------------
----------------------------------------------------------- */
body {
  font-size: 14px;
}

/*
---------------------------------------------------------
 サイト幅 
--------------------------------------------------------- */
.In-wrap {
  max-width: 330px;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 40px);
}

/* --------------------------------------------------------
-----------------------------------------------------------
fv-block
-----------------------------------------------------------
----------------------------------------------------------- */
.fv-block {
  padding: 70px 20px 50px;
}

.fv-block .message_title{
  text-align: right;
}

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

.fv-block .message_title p{
  font-size: 16px;
  font-weight: bold;
}

.fv-block .message-content .img-wrap{
  margin-top: 15px;
}

.fv-block .message-content .text-wrap{
  margin-top: 15px;
  text-align: center;
}

.fv-block .message-content .txt-boby.HTMLeditor{
  font-size: 16px;
}

/* --------------------------------------------------------
-----------------------------------------------------------
Main
-----------------------------------------------------------
----------------------------------------------------------- */
.Main{
  padding-top: 50px;
}

.Main .text-wrap p{
  color: #666666;
}

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

/* --------------------------------------------------------
-----------------------------------------------------------
content-inner
-----------------------------------------------------------
----------------------------------------------------------- */
.Main .text-wrap{
  margin-bottom: 30px;
  margin-left: 10px;
}

.Main .text-wrap p{
  margin-top: 10px;
}

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

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

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

.Main .img-wrap .small-img img{
 width: calc((100% - 5px) / 2);
 height: auto;
 display: block;
}

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

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

/* --------------------------------------------------------
.text-wrap.above h2を上に
----------------------------------------------------------- */
.Main .text-wrap.above{
  display: flex;
  flex-direction: column-reverse;
}

/* --------------------------------------------------------
.img-wrap.right big-imgを上に
----------------------------------------------------------- */
.Main .img-wrap.right{
  flex-direction: column-reverse;
}

/* --------------------------------------------------------
-----------------------------------------------------------
office-block
-----------------------------------------------------------
----------------------------------------------------------- */
.office-block.content-block{
  padding-top: 0;
}
/* --------------------------------------------------------
-----------------------------------------------------------
recreation-block
-----------------------------------------------------------
----------------------------------------------------------- */
.recreation-block.content-block{
  background-color: #f7f7f7;
}

.recreation-block h2{
  text-align: right;
}
/* --------------------------------------------------------
-----------------------------------------------------------
company-trip-block
-----------------------------------------------------------
----------------------------------------------------------- */

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

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

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

.voice-block .voice-grid .voice-card {
  position: relative;
  background-color: #fff;
  padding: 35px;
  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);
}