@charset "UTF-8";
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    プロパティ                                    */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本色定義
--------------------------------------------------- */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    mixin 定義                                    */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/* レスポンシブ 対応用 ブレイクポイントによる条件分岐 
   適用例 ）
   @include media-query(under-bp-m) {
      $breakpoint-m よりも小さいウィンドウ幅の処理をここに書く
   }     
 ------------------------------------------------------------------------ */
/* スクロールバーをカスタマイズ

   適用例 ）
    .hogehoge{
        @include customScrollBar();
    }  
 ------------------------------------------------------------------------ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    Style Reset                                   */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote {
  margin: 0;
  padding: 0;
  font-size: 100%;
}

body {
  font-family: "Zen Maru Gothic", "Meiryo", "Arial", "Century Gothic", sans-serif;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

body.TbView,
body.SpView {
  cursor: pointer;
}

address {
  font-style: normal;
}

em {
  font-style: normal;
}

img {
  border: none;
  vertical-align: bottom;
}

a:focus, *:focus {
  outline: none;
}

/* 自動文字サイズ調整をOFF iPod,iPhone,iPad用 */
html {
  -webkit-text-size-adjust: none;
}

/* ボックスサイズの算出方法を指定 */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* スクロール固定背景のがたつき防止 ie用 */
/*
html{
 overflow: hidden;
 height: 100%;
}
body{
 overflow: auto;
 height: 100%;
}
*/
/* 画像のレンダリングをバイキュービックで */
img {
  -ms-interpolation-mode: bicubic;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    Option Style                                  */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
.NoDisplay {
  display: none;
}

.Partition {
  display: none;
}

/* -----  Adjust Height Rendering  ----- */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  font-size: 0; /* firefox footer margin */
}

.clearfix {
  display: inline-block;
}

/* Hides from IE-mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*                                                        */
/* ● common_LP.css                                        */
/*    記事 共通部品                                         */
/*                                                        */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body {
  text-align: center;
  overflow-wrap: break-word;
  word-wrap: break-word;
  margin: 0 auto;
  min-width: 320px;
  position: relative;
  color: #381300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
@media print, screen and (min-width: 900px) {
  body {
    min-width: 1150px;
    overflow-x: auto;
  }
}

#World {
  text-align: left;
}

/* rem の基準フォントサイズ */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*                                                        */
/* ● common_elements.css                                 */
/*    共通部品                                            */
/*    ・テキスト、リスト、テーブル、段組み、ボタン        */
/*                                                        */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media print, screen and (min-width: 900px) {
  .hide-wide {
    display: none !important;
  }
}
@media screen and (max-width: 899px) {
  .hide-narrow {
    display: none !important;
  }
}
img {
  max-width: 100%;
}

.Shadow {
  position: relative;
  display: inline-block;
}
.Shadow:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  right: 10px;
  bottom: 20px;
  border-radius: 1em;
  max-width: 300px;
  -webkit-box-shadow: 10px 0 20px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 10px 0 20px 0 rgba(0, 0, 0, 0.25);
  -webkit-transform: skew(3deg, 5deg);
          transform: skew(3deg, 5deg);
}
.Shadow img {
  position: relative;
  z-index: 1;
}

.Banner a {
  position: relative;
  top: 0;
}
.Banner a:hover {
  top: 3px;
}

/*   Text and Heading                               */
/* 見出し common
--------------------------------------------------- */
.Heading {
  line-height: 1.75;
  position: relative;
  font-weight: bold;
}
.Heading:not(:first-child) {
  margin-top: 1.5em;
}
.Heading:not(:last-child) {
  margin-bottom: 0.75em;
}

/* DefaultText （この案件では未使用）
--------------------------------------------------- */
@media print, screen and (min-width: 900px) {
  main p:not([class]) {
    line-height: 2.5;
  }
}
@media screen and (max-width: 899px) {
  main p:not([class]) {
    line-height: 2;
  }
}
main p:not([class]):not(:last-child) {
  margin-bottom: 0.75em;
}

/* リスト（汎用）
--------------------------------------------------- */
ul {
  list-style: none;
}

/* TextAlign
--------------------------------------------------- */
.TextAlignCenter {
  text-align: center;
}

.TextAlignLeft {
  text-align: left;
}

.TextAlignRight {
  text-align: right;
}

.TextAlignJustify {
  text-align: justify;
}

/* 縦書き */
.TextVertical {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

/*   link                                           */
/* anchor
--------------------------------------------------- */
a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
a:before, a:after {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

/*   FlexParent (flex段組み)                        */
.FlexParent {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-justify-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* PCは横並び、SPは縦並び　を自動で */
}
.FlexParent.AllowWrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.FlexParent:not(.AllowWrap) > li {
  margin-bottom: 0;
}
.FlexParent[class*=FlexColumn] {
  margin-left: -2%;
  margin-right: -2%;
}
.FlexParent[class*=FlexColumn] > * {
  padding: 1% 2%;
}
.FlexParent.FlexColumn2 > * {
  width: 50%;
}
.FlexParent.FlexColumn3 > * {
  width: 33.3%;
}
.FlexParent.FlexColumn4 > * {
  width: 25%;
}
.FlexParent.FlexColumn5 > * {
  width: 20%;
}
@media screen and (max-width: 899px) {
  .FlexParent.SpFlexColumn2 > * {
    width: 100%;
  }
  .FlexParent.SpFlexColumn2 > * {
    width: 50%;
  }
  .FlexParent.SpFlexColumn3 > * {
    width: 33.3%;
  }
  .FlexParent.SpFlexColumn4 > * {
    width: 25%;
  }
  .FlexParent.SpFlexColumn5 > * {
    width: 20%;
  }
}
.FlexParent.PhotoList > * {
  padding: 1px;
}
@media print, screen and (min-width: 900px) {
  .FlexParent.AutoDirection {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media screen and (max-width: 899px) {
  .FlexParent.AutoDirection {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .FlexParent.AutoDirection > * {
    width: 100%;
    padding-top: 2%;
    padding-bottom: 2%;
  }
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    基本レイアウト                                */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
.PageWidthSetter {
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 100%;
  z-index: 10;
}
@media print, screen and (min-width: 900px) {
  .PageWidthSetter {
    max-width: 1100px;
  }
  .PageWidthSetter:not(.NarrowWidth) {
    min-width: 1100px;
  }
  .PageWidthSetter.NarrowWidth {
    max-width: 900px;
  }
}
@media screen and (max-width: 899px) {
  .PageWidthSetter {
    width: 100%;
    padding-left: calc(1rem * 2.25);
    padding-right: calc(1rem * 2.25);
  }
}

@media screen and (max-width: 899px) {
  .SpNarrowWidth {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
img {
  max-width: inherit;
}

.Design {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow-x: hidden;
}
@media screen and (max-width: 899px) {
  .Design img {
    width: 100%;
  }
}

p[id^=CvButton] {
  position: absolute;
  z-index: 1000;
  text-align: center;
}
@media print, screen and (min-width: 900px) {
  p[id^=CvButton] {
    width: 440px;
  }
}
@media screen and (max-width: 899px) {
  p[id^=CvButton] {
    width: 310px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 80%;
  }
}
p[id^=CvButton] .Sub {
  position: absolute;
  z-index: 100;
}
p[id^=CvButton] .Deco {
  position: absolute;
  z-index: 10;
  display: inline-block;
}
p[id^=CvButton] .Deco img {
  width: 100%;
}
p[id^=CvButton] .Main {
  position: relative;
  overflow: hidden;
  text-align: center;
  display: block;
}
p[id^=CvButton] .Main img {
  height: 2.25em;
}
p[id^=CvButton] .Main .Label {
  display: block;
}
@media print, screen and (min-width: 900px) {
  p[id^=CvButton] .Main .Label {
    padding: 1.7em 0;
  }
}
@media screen and (max-width: 899px) {
  p[id^=CvButton] .Main .Label {
    padding: 1.6em 0;
  }
}
p[id^=CvButton] .Main .Kira {
  display: block;
  position: absolute;
  z-index: 50;
  width: 100%;
  height: 120%;
  top: -10%;
  left: -300%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
  -webkit-animation: shine 1.5s linear infinite;
  animation: shine 1.5s linear infinite;
}

#CvButtonHead {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 100;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: auto;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
body.MPage #CvButtonHead {
  right: 20px;
}
body.Scroll:not(.PosFoot) #CvButtonHead {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  right: -5px;
  bottom: 5px;
}

@-webkit-keyframes shine {
  100% {
    left: 100%;
  }
}

@keyframes shine {
  100% {
    left: 100%;
  }
}
header > div,
main > div,
footer > div {
  position: relative;
}

footer {
  margin-top: 150px;
}
@media screen and (max-width: 899px) {
  footer .CopyrightText {
    display: none;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*                                                        */
/*                                                        */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    プロパティ                                    */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
p[id^=CvButton] .Sub {
  display: inline-block;
  top: -2em;
  left: -1.5em;
}
p[id^=CvButton] .Sub img {
  height: 5.25em;
}
p[id^=CvButton] .Deco {
  top: -15px;
  right: 0;
  width: 4.5em;
}
p[id^=CvButton] .Main {
  background-color: #FF6A5B;
  border-radius: 1em;
  border: 1px solid rgba(255, 255, 255, 0.75);
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    基本レイアウト                                */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    Header                                        */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width: 899px) {
  header {
    margin-bottom: 50px;
  }
}
@media print, screen and (min-width: 900px) {
  header #MainImage .Title {
    margin-top: 100px;
  }
}
@media screen and (max-width: 899px) {
  header #MainImage .Title {
    margin-top: 45px;
  }
  header #MainImage .Title img {
    width: 350px;
    width: 75vw;
  }
}
@media print, screen and (min-width: 900px) {
  header #MainImage .Title2 {
    margin-top: 30px;
  }
}
@media screen and (max-width: 899px) {
  header #MainImage .Title2 {
    margin-top: 5px;
  }
  header #MainImage .Title2 img {
    width: 250px;
    width: 55vw;
  }
}
@media print, screen and (min-width: 900px) {
  header #MainImage .Title img,
  header #MainImage .Title2 img {
    margin-top: -45px;
    margin-left: -45px;
  }
}
@media screen and (max-width: 899px) {
  header #MainImage .Title img,
  header #MainImage .Title2 img {
    margin-top: -25px;
    margin-left: -25px;
  }
}
header #MainImage .Points {
  margin-top: 5px;
}
@media screen and (max-width: 899px) {
  header #MainImage .Points {
    margin-left: -30px;
    margin-top: -25px;
  }
  header #MainImage .Points img {
    width: 300px;
    width: 70vw;
  }
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    Contents                                      */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
main #Empathy {
  margin-top: 10px;
}
main #Empathy .BlueBlock {
  color: #fff;
  text-shadow: #60adc2 1px 1px 10px, #60adc2 -1px 1px 10px, #60adc2 1px -1px 10px, #60adc2 -1px -1px 10px;
}
@media print, screen and (min-width: 900px) {
  main #Empathy .BlueBlock {
    padding-top: 110px;
  }
}
@media screen and (max-width: 899px) {
  main #Empathy .BlueBlock {
    padding-left: 10vw;
    padding-right: 10vw;
    padding-top: 35px;
  }
}
@media print, screen and (min-width: 900px) {
  main #Empathy .BlueBlock .Heading {
    font-size: 35px;
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 899px) {
  main #Empathy .BlueBlock .Heading {
    font-size: 6.5vw;
  }
}
@media screen and (max-width: 899px) {
  main #Empathy .BlueBlock p:not([class]) {
    font-size: 3.5vw;
  }
}
main #Empathy .BlueBlock .Pick {
  text-shadow: 4px 3px 0 #60adc2;
}
@media print, screen and (min-width: 900px) {
  main #Empathy .BlueBlock .Pick {
    margin: 3.25em 0 1em;
    font-size: 20px;
  }
}
@media screen and (max-width: 899px) {
  main #Empathy .BlueBlock .Pick {
    margin: 1em 0;
    font-size: 4.5vw;
  }
}
main #Benefit {
  margin-top: 30px;
}
@media print, screen and (min-width: 900px) {
  main #Benefit {
    padding-bottom: 200px;
  }
}
@media screen and (max-width: 899px) {
  main #Benefit {
    padding-bottom: 100px;
  }
}
main #Benefit #CvButton1 {
  text-align: center;
}
@media print, screen and (min-width: 900px) {
  main #Benefit #CvButton1 {
    bottom: 120px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 899px) {
  main #Benefit #CvButton1 {
    bottom: 50px;
  }
}
@media print, screen and (min-width: 900px) {
  main #Example #CvButton2 {
    left: calc(50% - 25px);
    bottom: 0px;
  }
}
@media screen and (max-width: 899px) {
  main #Example #CvButton2 {
    bottom: 30px;
  }
}
main #Jimoto {
  margin-top: 50px;
}
@media screen and (max-width: 899px) {
  main #Jimoto img {
    width: 95%;
    margin: 0 1em 0 0;
  }
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    Footer                                        */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
@media print, screen and (min-width: 900px) {
  footer .PageWidthSetter #CvButtonFoot {
    left: 50%;
    bottom: 100px;
  }
}
@media screen and (max-width: 899px) {
  footer .PageWidthSetter #CvButtonFoot {
    bottom: 30px;
  }
}
footer .PageWidthSetter .CopyrightText {
  font-size: 1rem;
  width: 100%;
  position: absolute;
  text-align: right;
}
@media print, screen and (min-width: 900px) {
  footer .PageWidthSetter .CopyrightText {
    left: 0;
    bottom: 3rem;
  }
}
@media screen and (max-width: 899px) {
  footer .PageWidthSetter .CopyrightText {
    right: 1rem;
    bottom: 1rem;
  }
}