/*

【CSS記述ルール】

① font-sizeはpxで指定してください
　（rem、%等の指定はしないようお願いいたします）

② oneweek はディレクトリ名に変更してください

③ 必ずディレクトリ名が付いたidセレクタを先頭に記述した後に、要素を記述してください
　（例：#oneday .inner、#oneday .page-title 等）

④ CSS内の画像指定パスは、CSSファイルから見た相対パスで指定してください
　（例：../images/ディレクトリ名/画像名.拡張子）

*/

/*------------------------------------------------------------
common
------------------------------------------------------------*/
.oneweek {
  font-family: 'Noto Sans JP', 'Century Gothic', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 游ゴシック体, YuGothic, "Yu Gothic Medium", 游ゴシック, 'Yu Gothic', メイリオ, Meiryo, sans-serif;
  font-size: 13px;
  font-weight: 400;
}

#oneweek * {
  box-sizing: border-box;
}

#oneweek a {
  transition: opacity .3s;
  color: unset;
}

#oneweek a[href^="tel:"] {
  display: inline-block;
  transition: none;
}

#oneweek a:hover {
  text-decoration: none;
}

#oneweek a:focus-visible {
  outline: none;
}

#oneweek img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

#oneweek .js-fadein {
  opacity: 0;
  transform: translate(0, 20px);
  transition-property: opacity, transform;
  transition-duration: 1s;
}

#oneweek .scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

#oneweek .text {
  margin-bottom: 2em;
}

#oneweek .text:last-of-type {
  margin-bottom: 0;
}

#oneweek .pc-br {
  display: none;
}

#oneweek .notes {
  display: inline-block;
  position: relative;
  margin-left: 1em;
}

#oneweek .notes::before {
  content: '\0203B';
  display: block;
  position: absolute;
  top: 0;
  left: -1em;
}

#oneweek .inner {
  width: calc(100% - 24px);
  max-width: 1200px;
  margin: 0 auto;
}

#oneweek a:not([href^="tel:"]):hover{
  opacity: unset!important;
}

#oneweek .br-point{
  display: inline-block;
}

#oneweek .sp-blind{
  display: none;
}

@media print, screen and (min-width: 768px) {/* ---------- タブレット・PC以上 ---------- */
  .oneweek {
    font-size: 16px;
  }
  
  #oneweek a[href^="tel:"] {
    color: inherit;
    pointer-events: none;
  }
  
  #oneweek a:not([href^="tel:"]):hover {
    opacity: .5;
  }
  
  #oneweek .sp-br {
    display: none;
  }
  
  #oneweek .pc-br {
    display: inline;
  }
  
  #oneweek .sp-blind{
    display: block;
  }
}
/*------------------------------------------------------------
font
------------------------------------------------------------*/
#oneweek .font-solitas{
  font-family: solitas-serif-condensed, sans-serif;
  font-weight: 600;
  font-style: normal;
}

#oneweek .font-tbud{
  font-family: tbudmincho-std, sans-serif;
  font-weight: bold;
  font-style: normal;
}


/*------------------------------------------------------------
main
------------------------------------------------------------*/
#oneweek .main{
  min-height: 395px;
  position: relative;
  margin-bottom: 50px;
  z-index: 0;
}

#oneweek .main::after{
  content: "";
  display: block;
  width: calc(100vw / 375 * 325);
  height: 100%;
  background-image: url("../images/oneweek/h1_bg_sp.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -10;
}

#oneweek .main .main-img{
  width: 100%;
  max-width: calc(100% - 25px);;
  position: relative;
  padding-right: 12px;
}

#oneweek .main-text-wrap{
  width: fit-content;
  position: absolute;
  top: calc(100vw / 375 * 191);
  right: 12px;
}

#oneweek .main .main-ttl{
  position: relative;
  z-index: 50;
  width: fit-content;
}

#oneweek .main .main-message{
  position: relative;
  z-index: 50;
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .01em;
  width: calc(100vw / 375 * 293);
  display: flex;
  justify-content: flex-end;
  padding: 20px 0 18px;
  margin: 0 0 0 auto;
}

#oneweek .main .main-message .text-box-wrap{
  max-width: 293px;
  width: 100%;
}

#oneweek .main-ttl .text-box{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#oneweek .main .ttl-eng{
  color: #6B5E11;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .1em;
  min-width: 130px;
  width: fit-content;
  padding-left: 5px;
  transform: translateY(-9px);
}

#oneweek .main .ttl-jpn{
  color: #FFF;
  font-size: 12px;
  letter-spacing: .04em;
  min-width: 138px;
  width: fit-content;
  padding-left: 3px;
  transform: translateY(3px);
}

#oneweek .main .main-message-prof-wrap{
  background-color: #333333;
  color: #FFF;
  letter-spacing: .1em;
  padding: 10px 12px;
  position: relative;
  margin-top: -35px;
  width: 100%;
  max-width: 203px;
}

#oneweek .main .inner-box-eng{
  background-color: #FFF;
  max-height: 24px;
  width: fit-content;
}

#oneweek .main .inner-box-jpn{
  margin-right: -12px;
  background-color: #6B5E11;
}

#oneweek .main .prof-name-jpn{
  font-size: 16px;
  padding-right: 15px;
}

#oneweek .main .prof-name-eng{
  font-size: 12px;
}

#oneweek .main .prof-job{
  font-size: 12px;
}

#oneweek .main .prof-job-year{
  padding-right: 10px;
}

#oneweek .main .prof-name, #oneweek .main .prof-job{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

#oneweek .main .prof-name{
  margin-bottom: 7px;
}



@media print, screen and (min-width: 768px) {/* ---------- タブレット・PC以上 ---------- */
  #oneweek .main::after{
    background-image: url("../images/oneweek/h1_bg_pc@2x.jpg");
    width: 100%;
    height: 100%;
  }
  
  #oneweek .main .main-img{
    max-width: unset;
    width: 88%;
  }
  
  #oneweek .main{
    margin-bottom: 80px;
    padding-bottom: 46px;
  }
  
  #oneweek .main .ttl-eng{
    font-size: 40px;
    transform: translateY(-5px);
    line-height: 1;
  }
  
  #oneweek .main .ttl-jpn{
    font-size: 22px;
    padding: 0 6px;
    transform: translateY(9px);
    line-height: 1;
  }
  
  #oneweek .main .inner-box-eng{
    max-height: unset;
    height: 48px;
    width: 130%;
  }
  
  #oneweek .main-text-wrap{
    top: unset;
    bottom: 93px;
  }
  
  #oneweek .main .message-box{
    font-size: min(calc(0.75rem + ((1vw - 3.75px) * 1.165)), 30px);
    letter-spacing: .1em;
    padding: 0;
    position: absolute;
    font-family: tbudmincho-std, sans-serif;
    font-weight: bold;
    font-style: normal;
    color: #3C3C3C;
    display: inline-block;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -40%);
  }
  
  #oneweek .main-img img{
    object-fit: cover;
    object-position: right;
    width: 100%;
    height: 600px;
  }
  
  #oneweek .main .inner-box-jpn{
    height: 30px;
    width: 110%;
  }
  
  #oneweek .main .main-message-text-wrap .text-box{
    background-color: #FFF;
    margin-bottom: 12px;
    padding: 6px 20px;
    width: fit-content;
  }
  
  #oneweek .main .main-message-text-wrap .text-box .decoration{
  color: #978E57;
  }
  
  #oneweek .main .main-message-prof-wrap{
    width: calc(100vw / 1920 * 796);
    min-width: 437px;
    max-width: unset;
    display: flex;
    justify-content: flex-end;
    padding: 16px 60px;
  }
  
  #oneweek .main .prof-name-jpn{
    font-size: 30px;
  }
  
  #oneweek .main .prof-name-eng{
    font-size: 20px;
  }
  
  #oneweek .main .prof-name, #oneweek .main .prof-job{
    font-size: 14px;
  }
  
  #oneweek .main .main-message .text-box-wrap{
    max-width: unset;
  }
}

@media print, screen and (min-width: 426px) and (max-width: 767px) {/* ---------- 画面幅426px ～ 767px ---------- */
  #oneweek .main .main-message .text-box-wrap{
    max-width: unset;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media print, screen and (min-width: 1560px) {/* ---------- ～画面幅1560px ---------- */
  #oneweek .main .main-img{
    height: calc(100vw / 1920 * 600);
  }
  
  #oneweek .main-img img{
    height: auto;
  } 
  #oneweek .main::after{
    width: calc(100vw / 1920 * 1560);
  }
  

}

@media print, screen and (min-width: 768px) and (max-width: 1280px) {/* ---------- 画面幅768px ～ 1280px ---------- */
  #oneweek .main-img img{
    height: 500px;
  }
  
  
}
/*------------------------------------------------------------
suggest
------------------------------------------------------------*/
#oneweek .suggest-ttl{
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 0 40px;
}

#oneweek .suggest-ttl-eng{
  font-size: 25px;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.2;
  padding-bottom: 6px;
}

#oneweek .suggest-wrap .bg{
  background-image: url("../images/oneweek/suggest_bg_sp.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-bottom: 58px;
}

#oneweek .suggest-wrap{
  color: #FFF;
}

#oneweek .suggest-wrap .link-box{
  width: 140px;
  height: 130px;
  display: flex;
  align-items: flex-end;
  position: relative;
}

#oneweek .suggest-wrap .link-box-outer:nth-last-of-type(-n+1){
  margin-bottom: 0;
}

#oneweek .suggest-wrap .link-ttl-eng{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .1em;
}

#oneweek .suggest-wrap .link-ttl-jpn{
  font-size: 10px;
  font-weight: bold;
  letter-spacing: .04em;
}

#oneweek .suggest-wrap .text-wrap{
  position: relative;
  width: 100%;
  z-index: 50;
}

#oneweek .suggest-wrap .suggest-links .text-wrap::after{
  content: "";
  display: block;
  width: 6px;
  height: 11px;
  transform: translateY(-50%);
  position: absolute;
  right: 5px;
  top: 50%;
  background-image: url("../images/oneweek/icon_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

#oneweek .suggest-wrap .link-box-wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 300px;
  margin: 0 auto;
}

#oneweek .suggest-wrap .link-box::after{
  position: absolute;
  content: "";
  display: block;
  width: 140px;
  height: 130px;
  top: 0;
  left: 0;
  background-color: #333333;
  opacity: .44;
  transition: all .3s ease-out;
}

#oneweek .suggest-wrap .link-box-outer:hover .link-box::after{
  opacity: 0;
}

#oneweek .suggest-wrap .link-box-outer:hover .link-box{
  transition: all .3s ease;
  transform: scale(1.2);
  will-change: transform;
}

#oneweek .link-box-outer{
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

#oneweek .suggest-wrap .link-box-outer .text-wrap{
  position: absolute;
  bottom: 0;
  padding: 0 6px 7px;
}

#oneweek .suggest-links{
  margin-bottom: 30px;
}

@media print, screen and (min-width: 768px) {/* ---------- タブレット・PC以上 ---------- */
  #oneweek .suggest-wrap .link-box-wrap{
    max-width: 1200px;
    padding: 0 10px;
  }
  
  #oneweek .suggest-wrap .link-box{
    width: 100%;
    max-width: 220px;
    height: 210px;
    align-items: stretch;
  }
  
  #oneweek .suggest-wrap .link-box::after{
    width: 100%;
    max-width: 220px;
    height: 210px;
  }
  
  #oneweek .link-box-outer{
    margin-bottom: 0;
    width: calc((100% - 80px) / 5);
    z-index: 0;
  }
  
  #oneweek .suggest-wrap .link-ttl-eng{
    font-size: 30px;
    letter-spacing: .05em;
  }
  
  #oneweek .suggest-wrap .link-ttl-jpn{
    font-size: 16px;
  }
  
  #oneweek .suggest-wrap .link-box-outer .text-wrap{
    padding: 0 10px 30px 10px;
  }
  
  #oneweek .suggest-wrap .suggest-links .text-wrap::after{
    top: calc(50% - 10px);
    right: 10px;
    transition: all .3s ease-out;
    width: 8px;
    height: 14px;
  }
  
  #oneweek .suggest-wrap .bg{
    background-image: url("../images/oneweek/suggest_bg_pc@2x.jpg");
    padding-bottom: 120px;
  }
  
  #oneweek .suggest-ttl-eng{
    font-size: 40px;
    padding-bottom: 10px;
  }
  
  #oneweek .suggest-ttl-jpn{
    font-size: 22px;
  }
  
  #oneweek .suggest-links{
    margin-bottom: 57px;
  }
  
  #oneweek .suggest-ttl{
    padding: 120px 0 80px;
  }
  
  #oneweek .suggest-links .link-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/*------------------------------------------------------------
btn
------------------------------------------------------------*/
#oneweek .btn-search .btn-text-eng{
  font-size: 20px;
  font-weight: 600;
  padding-right: 20px;
  letter-spacing: .1em;
}

#oneweek .btn-search{
  max-width: 351px;
}

#oneweek .btn01{
  width: calc(100% - 24px);
  border-radius: 5px;
  margin: 0 auto;
  transition: all .3s ease-out;
  background: linear-gradient(to right, #C8BB8D 0%, #6B5E11 51%, #C8BB8D 100%);
  background-size: 200% auto;
  filter: drop-shadow(0px 5px 3px rgba(0, 0, 0, .16));
}

#oneweek .btn01:hover{
  background-position: right center;
}

#oneweek .btn01 .text-wrap{
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  padding: 16px 0;
  position: relative;
}

#oneweek .btn01 .text-wrap::after{
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s ease-out;
  background-image: url("../images/oneweek/icon_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

#oneweek .btn01 .btn-text-jpn{
  padding-right: 31px;
  letter-spacing: .04em;
}

#oneweek .btn01:hover .text-wrap::after{
  left: 105%;
}

#oneweek .btn-content{
  color: #FFF;
  margin-top: 30px;
  width: 100%;
  max-width: 270px;
  filter: drop-shadow(0px 10px 6px rgba(0,0,0,0.16));
}

#oneweek .btn-content .btn-text-eng{
  font-size: 18px;
  letter-spacing: .1em;
  padding-right: 20px;
  line-height: 1.2;
}

#oneweek .btn-content .btn-text-jpn{
  font-size: 12px;
  letter-spacing: .04em;
  padding-right: 20px;
}

#oneweek .btn-content .text-wrap{
  padding: 9px 0;
}


@media print, screen and (min-width: 768px) {/* ---------- タブレット・PC以上 ---------- */
  #oneweek .btn-search{
    max-width: 960px;
  }
  
  #oneweek .btn-search .btn-text-eng{
    font-size: 34px;
    line-height: 1.2;
  }
  
  #oneweek .btn-search .btn-text-jpn{
    font-size: 20px;
  }
  
  #oneweek .btn01 .text-wrap::after{
    width: 10px;
    height: 18px;
  }
  
  #oneweek .btn01{
    border-radius: 10px;
    filter: drop-shadow(0px 10px 6px rgba(0, 0, 0, .16));
  }
  
  #oneweek .btn01 .text-wrap{
    padding: 34px 0 37px;
  }
  
  #oneweek .btn-content{
    margin: 0 0 0 20px;
    max-width: 380px;
    margin-top: 40px;
  }
  
  #oneweek .btn-content .btn-text-eng{
    font-size: 20px;
  }
  
  #oneweek .btn-content .btn-text-jpn{
    font-size: 14px;
  }
  
  #oneweek .btn-content .text-wrap{
    padding: 13px;
  }
  
}





/*------------------------------------------------------------
schedule
------------------------------------------------------------*/
#oneweek .content-schedule{
  margin-bottom: 70px;
}

#oneweek .content-schedule .content-ttl-wrap{
  width: 100%;
  max-width: 351px;
  margin: 0 auto;
  position: relative;
  padding: 17px 0 30px;
  color: #FFF;
  text-align: center;
}

#oneweek .content-schedule .content-ttl-wrap::after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../images/oneweek/oneweek_ttl_bg_sp.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -10;
}

#oneweek .content-schedule .content-ttl-wrap .ttl-eng{
  letter-spacing: .1em;
  font-size: 25px;
}

#oneweek .content-schedule .content-ttl-wrap .ttl-jpn{
  letter-spacing: .04em;
}

#oneweek .content-schedule .weekly-box{
  border: solid 1px #312E4E;
  margin: 0 auto;
  padding:  15px 20px 20px 28px;
  position: relative;
  margin-bottom: 50px;
  max-width: 351px;
}

#oneweek .content-schedule .weekly-box:last-of-type{
  margin-bottom: 0;
}

#oneweek .content-schedule .weekly-box::after{
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background-color: #312E4E;
  position: absolute;
  top: 100%;
  left: 50%;
}

#oneweek .content-schedule .weekly-box:last-of-type::after{
  display: none;
}

#oneweek .content-schedule .day-wrap{
  color: #5C2C3F;
  letter-spacing: .01em;
  display: flex;flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

#oneweek .content-schedule .day-wrap::after{
  content: "";
  display: block;
  width: calc(100% - 93px);
  max-width: 207px;
  height: 135px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 5px;
}

#oneweek .content-schedule .day-mon .day-wrap::after{
  background-image: url("../images/oneweek/oneweek_img_mon_sp.jpg");
}

#oneweek .content-schedule .day-tus .day-wrap::after{
  background-image: url("../images/oneweek/oneweek_img_tus_sp.jpg");
}

#oneweek .content-schedule .day-wed .day-wrap::after{
  background-image: url("../images/oneweek/oneweek_img_wed_sp.jpg");
}

#oneweek .content-schedule .day-thu .day-wrap::after{
  background-image: url("../images/oneweek/oneweek_img_thu_sp.jpg");
}

#oneweek .content-schedule .day-fri .day-wrap::after{
  background-image: url("../images/oneweek/oneweek_img_fri_sp.jpg");
}

#oneweek .content-schedule .day-sat .day-wrap::after{
  background-image: url("../images/oneweek/oneweek_img_sat_sp.jpg");
}

#oneweek .content-schedule .day-sun .day-wrap::after{
  background-image: url("../images/oneweek/oneweek_img_sun_sp.jpg");
}

#oneweek .content-schedule .day-wrap .day-eng{
  font-size: 20px;
  position: relative;
  line-height: 1.2;
}

#oneweek .content-schedule .day-wrap .day-eng::before{
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-image: url("../images/oneweek/icon_diamond.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-50%, 35%);
}

#oneweek .content-schedule .day-wrap .day-jpn{
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}

#oneweek .content-schedule .day-wrap .day-wrap-inner{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

#oneweek .content-schedule .weekly-box-text{
  letter-spacing: .01em;
}

#oneweek .content-schedule .weekly-box-text .box-text-ttl{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}

#oneweek .content-schedule .weekly-box-text .box-text-inner{
  font-size: 14px;
  line-height: 1.64;
}

@media print, screen and (min-width: 768px) {/* ---------- タブレット・PC以上 ---------- */
  #oneweek .content-schedule .day-wrap::after{
    display: none!important;
  }
  
  #oneweek .content-schedule .content-ttl-wrap{
    max-width: unset;
    padding: 40px 0 70px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 75px;
  }
  
  #oneweek .content-schedule .content-ttl-wrap::after{
    background-image: url("../images/oneweek/oneweek_ttl_bg_pc@2x.png");
  }
  
  #oneweek .content-schedule .content-ttl-wrap .ttl-eng{
    font-size: 30px;
    margin-right: 20px;
  }
  
  #oneweek .content-schedule .content-ttl-wrap .ttl-jpn{
    font-size: 18px;
  }
  
  #oneweek .content-schedule .weekly-box{
    max-width: unset;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 30px 40px 40px 60px;
    margin-bottom: 100px;
  }
  
  #oneweek .content-schedule .weekly-box:nth-of-type(2n){
    flex-direction: row-reverse;
    justify-content: flex-end;
    padding: 30px 60px 40px 35px;
  }
  
  #oneweek .content-schedule .weekly-box:nth-of-type(2n) .weekly-box-textarea{
    margin-left: 105px;
  }
  
  #oneweek .content-schedule .weekly-box-textarea{
    max-width: 610px;
    width: 100%;
    margin-right: 30px;
  }
  
  #oneweek .content-schedule .weekly-box:nth-of-type(2n) .weekly-box-textarea{
    margin-right: 0;
  }
  
  #oneweek .content-schedule .day-wrap .day-eng::before{
    width: 50px;
    height: 50px;
    transform: translate(-50%, 52%);
  }
  
  #oneweek .content-schedule .day-wrap .day-eng{
    font-size: 32px;
    margin-right: 20px;
  }
  
  #oneweek .content-schedule .day-wrap .day-jpn{
    font-size: 18px;
  }
  
  #oneweek .content-schedule .day-wrap .day-wrap-inner{
    flex-direction: initial;
    align-items: end;
  }
  
  #oneweek .content-schedule .day-wrap{
    margin-bottom: 33px;
  }
  
  #oneweek .content-schedule .weekly-box-text .box-text-ttl{
    font-size: 24px;
    margin-bottom: 40px;
  }
  
  #oneweek .content-schedule .weekly-box-text .box-text-inner{
    font-size: 16px;
    line-height: 1.87;
  }
  
  #oneweek .content-schedule .weekly-box-img{
    max-width: 460px;
    width: 100%;
  }
  
  #oneweek .content-schedule .weekly-box::after{
    height: 100px;
  }
  
  #oneweek .content-schedule{
    margin-bottom: 140px;
  }
  
}



/*------------------------------------------------------------
interview
------------------------------------------------------------*/
#oneweek .content-interview{
  background-color: #F5F5F5;
  margin-bottom: -20px;
  padding-bottom: 30px;
}

#oneweek .interview-text-wrap .ttl-wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 20px;
}

#oneweek .interview-text-wrap .ttl-eng{
  color: #333333;
  font-size: 25px;
  letter-spacing: .1em;
  line-height: 1.2;
  display: flex;
  align-items: center;
}

#oneweek .interview-text-wrap .ttl-eng::before{
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background-color: #5C2C3F;
  margin-right: 10px;
}

#oneweek .interview-text-wrap .ttl-jpn{
  color: #5C2C3F;
}

#oneweek .interview-text-wrap .text-inner-box{
  letter-spacing: .01em;
  font-size: 14px;
  padding: 0 18px;
  margin-bottom: 30px;
}

#oneweek .interview-text-wrap .text-inner-box:last-of-type{
  margin-bottom: 0;
}

#oneweek .interview-text-wrap .text-inner-ttl{
  color: #5C2C3F;
  font-weight: 500;
  margin-bottom: 20px;
}

#oneweek .interview-text-wrap{
  width: calc(100% - 30px);
  margin: 0 auto;
  background-color: #FFF;
  padding: 15px 0 30px;
  margin-top: -70px;
  position: relative;
}

#oneweek .interview-box-outer{
  transform: translateY(-20px);
}

@media print, screen and (min-width: 768px) {/* ---------- タブレット・PC以上 ---------- */
  #oneweek .interview-box-outer{
    transform: translateY(-40px);
  }
  
  #oneweek .interview-img-wrap{
    max-width: 960px;
    margin: 0 auto;
}
  
  #oneweek .interview-text-wrap{
    max-width: 920px;
    padding: 40px 50px 40px 0;
  }
  
  #oneweek .interview-text-wrap .ttl-eng{
    font-size: 30px;
  }
  
  #oneweek .interview-text-wrap .ttl-jpn{
    font-size: 18px;
    padding-left: 20px;
  }
  
  #oneweek .interview-text-wrap .text-inner-ttl{
    font-size: 20px;
    margin-bottom: 30px;
  }
  
  #oneweek .interview-text-wrap .text-inner-detail{
    font-size: 16px;
    line-height: 1.87;
  }
  
  #oneweek .interview-text-wrap .text-inner-box-wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 40px;
  }
  
  #oneweek .interview-text-wrap .text-inner-box{
    max-width: 390px;
    width: 100%;
    padding: 0;
  }
  
  #oneweek .interview-text-wrap .ttl-eng::before{
    width: 20px;
    height: 2px;
    margin-right: 20px;
  }
  
  #oneweek .interview-text-wrap .ttl-wrap{
    margin-bottom: 40px;
  }
  
}

/*------------------------------------------------------------
message
------------------------------------------------------------*/
#oneweek .content-message{
  margin-bottom: 60px;
}

#oneweek .content-message .member-message-wrap .bg{
  background-color: #5C2C3F;
  padding: 30px 0;
}

#oneweek .content-message .member-message-wrap{
  color: #FFF;
  letter-spacing: .01em;
  font-size: 14px;
  line-height: 1.64;
}

#oneweek .content-message .message-img{
  width: calc(100% - 125px);
  margin: 0 auto;
  padding-bottom: 33px;
  text-align: center;
}

#oneweek .content-message .message-ttl{
  position: relative;
  margin-bottom: 20px;
}

#oneweek .content-message .message-ttl::before{
  content: "Message";
  display: block;
  position: absolute;
  opacity: .3;
  font-size: 20px;
  font-family: delaney,sans-serif;
  font-weight: 300;
  font-style: normal;
  left: -15px;
  bottom: 5px;
}

#oneweek .content-message .message-text-box{
  padding: 0 23px 0 28px;
}

#oneweek .content-message .message-box-outer{
  height: 100%;
  padding: 50px 0;
}

@media print, screen and (min-width: 768px) {/* ---------- タブレット・PC以上 ---------- */
  #oneweek .content-message .member-message-wrap .bg{
    display: flex;
    flex-wrap: inherit;
    flex-direction: row-reverse;
    padding: 60px calc((100% - 1200px) / 2) 0;
    justify-content: space-between;
  }
  
  #oneweek .content-message .message-text-box{
    max-width: 560px;
    width: 100%;
    margin: 0 calc(100vw / 1920 * 80) 0 60px;
    padding: 0 0 40px;
  }
  
  #oneweek .content-message .message-img{
    max-width: 500px;
    margin: 0 0 -60px;
    padding: 0;
  }
  
  #oneweek .content-message .message-ttl{
    font-size: 20px;
    font-weight: 500;
  }
  
  #oneweek .content-message .message-text{
    font-size: 16px;
    line-height: 1.8;
  }
  
  #oneweek .content-message:nth-of-type(even) .member-message-wrap .bg{
    flex-direction: row-reverse;
  }
  
  #oneweek .content-message .message-ttl::before{
    left: -30px;
    bottom: 8px;
    font-size: 30px;
  }
  
  #oneweek .content-message{
    margin-bottom: 180px;
  }
  
}

