@charset "UTF-8";
/*
Theme Name: RITAVERSE DX LP
Theme URI: https://dx.ritaverse.jp/
Author: 株式会社リタバース
Author URI: https://ritaverse.jp/
Description: 豊橋市補助金を活用したDX支援LP用の専用テーマ。最小構成で高速表示を実現。
Version: 1.0.0
License: Proprietary
Text Domain: ritavers-dx
*/

/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

/* font settings -------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap'); /*NotoSans*/
@font-face { font-family: "Yu Gothic M"; src: local("Yu Gothic Medium"); }
@font-face { font-family: "Yu Gothic M"; src: local("Yu Gothic Bold"); font-weight: bold; }

/*CSS カスタムプロパティ (変数) */
:root{
  /*カラー設定*/
  --c-red: #FF1A00;
  --c-orange: #FF7A21;
  --c-blue: #095A91;
  --c-deepblue: #085081;
  --c-green: #209B93;
  --c-pastel-green: #E1F5F5;
  --c-lite-green: #EEFBFA;
  --c-white: #FFFFFF;
  
  /*テキストカラー設定*/
  --txt-color: #333536;
  --txt-color-deepblue: #1F3556;
  --txt-color-green: #209B93;
  --txt-color-lite-green: #F1F9F9;
  --txt-color-white: #FFFFFF;
  --txt-color-orange: #FF7A21;
  --txt-color-red: #FF1A00;
  
  /*ボーダーカラー設定*/
  --border-color:#2A0D0D;
  
  /*角丸設定*/
  --thema-r: 50px;
  --thema-mid-r: 30px;
}
@media only screen and (min-width: 981px) {
  :root{
     --thema-r: 100px;
     --thema-mid-r: 30px;
  }
}

html {
  color: var(--txt-color);
  font-size: 62.5%; /* 1rem = 10px */
  line-height: 2;
}

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  font-size: 1.6rem;
  background-color: var(--c-lite-green);
  overflow-x: hidden;
}
/*
@media only screen and (min-width: 981px) {
  body {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
*/
/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* 全ての要素にBorder-boxを適用する */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ---------------------------------
  Common styles
  mobileファーストレスポンシブの設定で記述します
  --------------------------------- */

/* PC SP control --------------------------------- */
.pc_br {
  display: none;
}
.sp_br {
  display: inline;
}
.pc_img {
  display: none;
}
.sp_img {
  display: inline-block;
}
.sp_b_elem {
  display: block;
}

@media only screen and (min-width: 981px) {
  .pc_br {
    display: inline;
  }
  .sp_br {
    display: none;
  }
  .pc_img {
    display: inline-block;
  }
  .sp_img {
    display: none;
  }
  .sp_b_elem {
    display: none !important;
  }
}


/* ---------------------------------
  wrapper style
  ---------------------------------*/
.wrapper {
  width: calc(100% - 40px);
  margin:0 auto;
  max-width: 1400px;
}

@media only screen and (min-width: 981px) {
  .wrapper {
    width: calc(100% - 100px);
  }
}


/* ---------------------------------
  layout style
  ---------------------------------*/
.layout {
  display:-ms-flexbox;
  display:flex;
  
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content:center;
  
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items:center;
}
ul.layout {
  padding: 0; /*リスト要素に使われた時に初期設定paddingをなくす*/
}

.layout > *,
.layout.one_half > *,
.layout.one_third > *,
.layout.two_column > *{
  width: 100%;
}

.layout.one_quarter > *{
  width: 50%;
}

/**/
.layout.v_box {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.layout.v_box > .img_box {
  width: 75px;
  height: 75px;
  background-color: var(--c-white);
  border-radius: 50%;
  overflow: hidden;
  padding: 10px 5px;
}
.layout.v_box > .contents_box {
  width: calc(100% - 75px);
  padding-left: 30px;
}

/**/
.layout.avatar_box {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.layout.avatar_box > .img_box {
  width: 180px;
  height: 180px;
  background-color: var(--c-white);
  border-radius: 50%;
  overflow: hidden;
  padding: 10px 5px;
}
.layout.avatar_box > .contents_box {}

/**/
.layout.flow_img_box {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.layout.flow_img_box > .img_box {
  width: 100%;
  background-color: var(--c-white);
  border-radius: 30px;
  overflow: hidden;
}
.layout.flow_img_box > .contents_box {
  width: 100%;
}
/**/
.layout.icon_list_box {}
.layout.icon_list_box > .img_box {
  width: 80px;
  height: 80px;
  background-color: var(--c-lite-green);
  border-radius: 50%;
  overflow: hidden;
  padding: 10px 5px;
}
.layout.icon_list_box > .contents_box {
  width: calc(100% - 80px);
  padding-left: 20px;
}

.esc_flex {
  display: inline;
}

@media only screen and (min-width: 981px) {
  .layout.one_half > * {
    width: 50%;
    
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content:space-between;
  }
  .layout.one_third > * {
    width: 33%;
    
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content:space-between;
  }
  .layout.two_column {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content:space-between;
      
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items:flex-start;
  }
  .layout.two_column > .img_box {
    width: 445px;
  }
  .layout.two_column > .contents_box {
    width: calc(100% - 445px - 140px);
  }
  
  .layout.one_quarter > * {
    width: 25%;
    
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;

    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  
  .layout.alternate {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content:space-between;
    padding: 0 0 180px 0;
  }
  .layout.alternate:last-of-type {
    padding-bottom: 0;
  }
  .layout.alternate > *:last-child {
    width: calc(100% - 50% - 100px);
    padding-left: 0;
    padding-right: calc(50% - 580px - 100px);
    margin-left: 50px;
    margin-right: 50px;
  }
  .layout.alternate > *:first-child {
    width: calc(50% - 50px);
  }
  .layout.alternate:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .layout.alternate:nth-of-type(even) > *:last-child {
    padding-left: calc(50% - 580px - 100px);
    padding-right: 0;
    margin-left: 50px;
    margin-right: 50px;
  }
  .layout.alternate .img_box {
    border-radius: 0 var(--thema-r) var(--thema-r) 0;
    max-height: 540px;
    overflow: hidden;
  }
  .layout.alternate:nth-of-type(even) .img_box {
    border-radius: var(--thema-r) 0 0 var(--thema-r);
    overflow: hidden;
  }
  .layout.alternate .contents_box {}
  .layout.alternate .contents_box .section_title > * {
    font-size: 30px;
    font-size: 3.0rem;
    line-height: 1.5;
    font-weight: 900;
    text-align: left;
  }
  
  /**/
  .layout.avatar_box {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .layout.avatar_box > .img_box {
    width: 180px;
    height: 180px;
    background-color: var(--c-white);
    border-radius: 50%;
    overflow: hidden;
    padding: 10px 5px;
  }
  .layout.avatar_box > .contents_box {
    width: calc(100% - 180px);
    padding-left: 60px;
    padding-right: 100px;
  }

  /**/
  .layout.flow_img_box > .img_box {
    width: 400px;
    height: 400px;
  }
  .layout.flow_img_box > .contents_box {
    width: calc(100% - 400px);
    padding-left: 150px;
  }
}

/* ---------------------------------
  appearance style
  
  利用頻度の高い特定の見た目を与える時に、
  appearanceクラスにまとめます。
  ---------------------------------*/
.appearance,
.appearance > * {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*カードスタイル表示設定------------
  
layoutとの併用して利用可能
*/

.appearance.card {
  
}
.appearance.card > * {
  box-sizing: border-box;
  padding: 50px;
  margin: 15px 0;
  
  background-color: var(--c-white);
  border-radius: var(--thema-r);
  text-align: center;
  overflow: hidden;
}
.appearance.card .img_box {}
.appearance.card .contents_box {
  padding: 30px 40px 40px 40px;
}
.appearance.card .contents_box .title {
  margin: 0 0 20px 0;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: left;
}
.appearance.card .contents_box p {
  margin: 0;
}

.appearance.card.r_img {
  margin-left: -20px;
  margin-right: -20px;
}
.appearance.card.r_img > * {
  overflow: visible;
  margin-top: calc(20px + 72px);
  border-radius: 0;
  border-left: none;
  border-right: none;
}
.appearance.card.r_img > * > .img_box {
  width: 142px;
  height: 142px;
  background-color: var(--c-white);
  border: solid 2px var(--border-color);
  border-radius: 50%;
  overflow: hidden;
  margin: -72px auto 0 auto;
  padding: 20px 10px;
}
.appearance.card.r_img > * > .img_box:before {
  display: none;
}
.appearance.card.r_img > * > .img_box img {
  width: 104px;
}
.appearance.card.r_img > * > .img_box h3 {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  margin: 0 0 10px 0;
}

@media only screen and (min-width: 981px) {
  .appearance.card {
    margin-left: -20px;
    margin-right: -20px;
  }
  .appearance.card > * {
    margin: 20px;
  }
  .appearance.card .contents_box {
    padding: 40px 40px 60px 40px;
  }
  .appearance.card .contents_box .title {
    margin: 0 0 20px 0;
    font-size: 30px;
    font-size: 3.0rem;
    line-height: 1;
    text-align: center;
  }
  
  
  .layout.appearance.card {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    
    margin-left: -20px;
    margin-right: -20px;
  }
  .layout.one_half.appearance.card > * {
    max-width: calc( 50% - 40px );
  }
  .layout.one_third.appearance.card > * {
    max-width: calc( 33% - 40px );
  }
  .appearance.card.r_img {}
  .appearance.card.r_img > * {
    overflow: visible;
    margin-top: calc(20px + 42px);
    border-radius: var(--thema-r);
    border-left: solid 2px var(--border-color);
    border-right: solid 2px var(--border-color);
  }
  .appearance.card.r_img > * > .img_box {
    width: calc(370vw / 16);
    height: calc(370vw / 16);
    background-color: var(--c-white);
    border: solid 2px var(--border-color);
    border-radius: 50%;
    overflow: hidden;
    margin: calc(42vw / 16 * -1) auto 0 auto;
    padding: calc(50vw / 16);
  }
  .appearance.card.r_img > * > .img_box img {
    width: calc(210vw / 16);
  }
  .appearance.card.r_img > * > .img_box h3 {
    font-size:  calc(30vw / 16);
    line-height: 1;
    margin: 0 0 calc(50vw / 16) 0;
  }
}
@media only screen and (min-width: 1600px) {
  .appearance.card.r_img > * > .img_box {
    width: 370px;
    height: 370px;
    margin: -42px auto 0 auto;
    padding: 50px;
  }
  .appearance.card.r_img > * > .img_box img {
    width: 210px;
  }
  .appearance.card.r_img > * > .img_box h3 {
    font-size: 30px;
    font-size: 3.0rem;
    margin: 0 0 50px 0;
  }
}


/**/
.appearance.faq-list > * {
  border-bottom: solid 1px #cccccc;
  margin-bottom: 50px;
}
.appearance.faq-list > *:last-child {
  margin-bottom: 0;
}
.appearance.faq-list > * .v_box {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.5;
  position:relative;
}
.appearance.faq-list > * .v_box.question{
  padding-left: 80px;
  margin-bottom: 30px;
}
.appearance.faq-list > * .v_box.question::before{
  content: "Q";
  color: var(--txt-color-green);
  font-family: acumin-pro, sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  margin-right: 20px;
  position: absolute;
  left: 0;
  margin-top: -2px;
  display: block;
  width: 40px;
  height: 40px;
  background-color: var(--c-white);
  border-radius: 50%;
  padding: 8px;
}
.appearance.faq-list > * .h_box {
  padding-top: 0px;
  padding-bottom: 50px;
  margin: 0;
  position: relative;
}
.appearance.faq-list > * .h_box.answer{
  padding-left: 80px;
}
.appearance.faq-list > * .h_box.answer::before{
  content: "A";
  color: var(--txt-color-white);
  font-family: acumin-pro, sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  margin-right: 20px;
  position: absolute;
  left: 0;
  margin-top: -1px;
  display: block;
  width: 40px;
  height: 40px;
  background-color: var(--c-green);
  border-radius: 50%;
  padding: 8px;
}

/**/
.appearance.img_list {
  list-style: none;
}
.appearance.img_list > * {
  margin: 0 0 80px 0;
}
.appearance.img_list .img_list_box .img_box {
  border-radius: 30px;
  overflow: hidden;
}
.appearance.img_list .img_list_box .contents_box .title > * {
  font-size: 24px;
  font-size: 2.4rem;
  color: var(--txt-color-green);
  line-height: 1.5;
  text-align: left;
}

.layout.appearance.img_list {}

@media only screen and (min-width: 981px) {
  .appearance.img_list > * {
    margin: 10px 50px;
  }
  
  .appearance.img_list .img_list_box .contents_box .title > * {
    text-align: center;
  }
  
  .layout.appearance.img_list {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    
    margin-left: -50px;
    margin-right: -50px;
  }
  .layout.one_third.appearance.img_list > li {
    max-width: calc( 33% - 100px );
  }
}

/**/
.appearance.inner_box {
  background-color: var(--c-white);
  margin-left: -20px;
  margin-right: -20px;
}
.appearance.inner_box .appeal_box {
  background-color: var(--c-green);
  padding: 80px 20px;
}
.appearance.inner_box .appeal_box p {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}
.appearance.inner_box .appeal_box p > em {
  color: var(--txt-color-white);
}

.appearance.inner_box > .avatar_list {
  width: calc(100% - 40px);
  padding: 40px 0 0 0;
  margin: 0 auto;
}

@media only screen and (min-width: 981px) {
  .appearance.inner_box {
    background-color: var(--c-white);
    border-radius: var(--thema-r);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
  }
  .appearance.inner_box > .avatar_list {
    width: auto;
    padding: 80px;
    margin: auto;
  }
  .appearance.inner_box .appeal_box {
    padding: 60px;
    position: relative;
  }
  .appearance.inner_box .appeal_box::after {
    content: "";
    position: absolute;
    right: calc(110vw / 16);
    bottom: 0;
    display: block;
    width: calc(184vw / 16);
    max-width: 184px;
    height: calc(305vw / 16);
    max-height: 305px;
    background-image: url("img/img_entrust04.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  
  .appearance.inner_box .appeal_box p {
    font-size: 30px;
    font-size: 3.0rem;
  }
}
@media only screen and (min-width: 1600px) {
  .appearance.inner_box .appeal_box::after {
    right: 110px;
  }
}
/**/
.appearance.flow_img_list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.appearance.flow_img_list > * {
  padding: 0 0 80px 0;
  counter-increment: list_num;
}
.appearance.flow_img_list > *:last-child {
  padding-bottom: 0;
}

.appearance.flow_img_list .layout.flow_img_box {
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.appearance.flow_img_list .img_box {
  position: relative;
  margin: 0 0 20px 0;
}
.appearance.flow_img_list .img_box::before {
  content: counter(list_num,  decimal-leading-zero);
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 90px;
  height: 80px;
  border-radius: 0 0 30px 0;
  background-color: var(--c-lite-green);
  padding: 25px;
  
  font-family: acumin-pro, sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 800;
  font-style: normal;
  color: var(--txt-color-deepblue);
  text-align: center;
  line-height: 1;
}
.appearance.flow_img_list .contents_box {
  text-align: left;
}

.appearance.flow_img_list .contents_box .title > * {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 900;
  margin: 0 0 20px 0;
}
@media only screen and (min-width: 981px) {
  .appearance.flow_img_list > * {
    padding: 0 0 160px 0;
  }
  .appearance.flow_img_list .img_box {
    margin: 0;
  }
  .appearance.flow_img_list .img_box::before {
    width: 100px;
    height: 90px;
    font-size: 36px;
    font-size: 3.6rem;
  }
  .appearance.flow_img_list .contents_box .title > * {
    font-size: 30px;
    font-size: 3.0rem;
    margin: 0 0 35px 0;
  }
}

/**/
.appearance.avatar_list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.appearance.avatar_list > * {
  padding: 0 0 80px 0;
}
.appearance.avatar_list .img_box {
  position: relative;
  margin: 0 0 20px 0;
}
.appearance.avatar_list .contents_box {
  text-align: left;
}

.appearance.avatar_list .contents_box .title > * {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.5;
  margin: 0 0 20px 0;
}
.appearance.avatar_list .contents_box .contents p {
  margin: 0 0 30px 0;
}
.appearance.avatar_list .contents_box .contents .conect_check_list {
  background-color: var(--c-pastel-green);
  border-radius: 30px;
  padding: 25px 40px;
  max-width: none;
}

@media only screen and (min-width: 981px) {
  .appearance.avatar_list > * {
    padding: 0 0 120px 0;
  }
  .appearance.avatar_list > *:last-child {
   padding: 0;
  }
  .appearance.avatar_list .img_box {
    margin: 0;
  }
  .appearance.avatar_list .contents_box .title > * {
    font-size: 30px;
    font-size: 3.0rem;
    margin: 0 0 35px 0;
  }
}
/**/
.appearance.icon_list .icon_list_box .img_box {
  padding: 20px;
}
.appearance.icon_list .icon_list_box .contents_box {
  padding: 0 0 0 20px;
}
.appearance.icon_list .icon_list_box .title {
  margin-bottom: 10px;
}
.appearance.icon_list .icon_list_box .title > * {
  margin: 0;
  text-align: left;
  font-size: 24px;
  font-size: 2.4rem;
  color: var(--txt-color-green);
}
.appearance.icon_list .icon_list_box .contents > * {
  text-align: left;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}

/**/
.appearance.conect_line_list {}
.appearance.conect_line_list > * {
  padding: 0 0 50px 75px;
  position: relative;
  counter-increment: list_num;
}
.appearance.conect_line_list > *::before {
  content: counter(list_num);
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 55px;
  height: 55px;
  border-radius: var(--thema-r);
  background-size: 4px 100px;
  background-color: var(--c-green);
  padding: 12px;
  
  font-family: acumin-pro, sans-serif;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 500;
  font-style: normal;
  color: var(--c-white);
  text-align: center;
  line-height: 1;
}
.appearance.conect_line_list > *::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 3px;
  height: calc( 100% - 55px );
  min-height: 100px;
  background-color: var(--c-green);
  margin: 0 26px;
}
.appearance.conect_line_list > *:last-child {
  padding: 0 0 0 75px;
}
.appearance.conect_line_list > *:last-child::after {
  display: none;
}

.appearance.conect_line_list .title > * {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--c-green);
  margin: 0 0 15px 0;
}
.appearance.conect_line_list .contents > p {
  margin: 0;
}

@media only screen and (min-width: 981px) {
  .appearance.conect_line_list > * {
    padding: 0 0 95px 140px;
  }
  .appearance.conect_line_list > *:last-child {
    padding: 0 0 0 140px;
  }
  
  .appearance.conect_line_list > *::before {
    width: 75px;
    height: 75px;
    padding: 19px;
  }
  .appearance.conect_line_list > *::after {
    margin: 0 36px;
  }
  
  .appearance.conect_line_list .layout.v_box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

/**/
.appearance.conect_check_list {
  max-width: 735px;
  margin: 0 auto;
}
.appearance.conect_check_list > * {
  padding: 15px 0 15px 45px;
  position: relative;
  text-align: left;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.appearance.conect_check_list > *::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(50% - 12px);
  width: 25px;
  height: 25px;
  background-image: url("img/icon_check.svg");
  background-repeat: no-repeat;
  background-size: 25px 25px;
  background-position: center;
}

/**/
.appearance.asterisk_list > * {
  list-style-type: none;
  text-indent: -1.2em;
  padding-left: 1.2em;
}
.appearance.asterisk_list > *:before {
  display: inline;
  content: "※";
  margin-right: 0.2em;
}

/**/
.appearance.one_half.alternate .contents_box > .section_title {
  width: calc(100% - 40px);
  margin: 30px auto;
}
.appearance.one_half.alternate .contents_box > .section_title > * {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: left;
}
.appearance.one_half.alternate .contents_box > .section_contents {
  width: calc(100% - 40px);
  margin: 0 auto 70px auto; 
}
.appearance.one_half.alternate:last-of-type .contents_box > .section_contents{
  margin-bottom: 0;
}

@media only screen and (min-width: 981px) {
  .appearance.one_half.alternate .contents_box > .section_title {
    width: 100%;
    margin: 0 auto 30px auto; 
  }
  .appearance.one_half.alternate .contents_box > .section_title > * {
    font-size: 30px;
    font-size: 3.0rem;
    line-height: 1.5;
  }
  .appearance.one_half.alternate .contents_box > .section_contents {
    width: 100%;
    margin: 0 auto 50px auto; 
  }
  .appearance.one_half.alternate:last-of-type .contents_box > .section_contents{
    margin-bottom: 50px;
  }
}

/* ---------------------------------
  button style
  ---------------------------------*/
.button {
  display: inline-block;
  width: 100%;
  background-color: var(--c-orange);
  border: solid 2px var(--c-orange);
  border-radius: var(--thema-r);
  line-height: 1;
  padding: 20px 70px;
  position: relative;
  
  color: var(--txt-color-white);
  text-decoration: none;
  text-align: center;
  
  transition: 0.5s;
}
.button.icon.send {
  padding: 20px 60px 20px 30px;
}
.button.icon.send::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("img/icon_send.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 30px;
  top: calc(50% - 10px);
}

.button:hover {
  background-color: var(--c-white);
  color: var(--txt-color-orange);
  text-decoration: none;
}
.button.icon.send:hover::after {
  background-image: url("img/icon_send_og.svg");
}

@media only screen and (min-width: 981px) {
  .button {
    padding: 30px 70px 30px 30px;
  }
}
@media only screen and (min-width: 1100px) {
  .button {
    padding: 30px 70px;
  }
}
/* ---------------------------------
  img style
  
  画像を入れる場合、divに以下のクラスを適用するなどして、利用してください。
  ---------------------------------*/
.img_box,
.figure_box {
  width: 100%;
  height: auto;
  
  /*background-color: #cccccc;*/
}

.img_box img {
  width: 100%;
  height: auto;
}

/*
  比率の設定
  他にもパターンを加える場合は、同じ要領で追記してください。
*/
/*1:1*/
.square:before{
  content: "";
  display: block;
  padding-top: 100%;
}
/*3:2*/
.hvga:before{
  content: "";
  display: block;
  padding-top: calc( 100% * 2 / 3 );
}
/*4:3*/
.sd:before{
  content: "";
  display: block;
  padding-top: calc( 100% * 3 / 4 );
}
/*16:9*/
.hd:before{
  content: "";
  display: block;
  padding-top: calc( 100% * 9 / 16 );
}

@media only screen and (min-width: 1024px) {
  /*
    比率の設定 pcのみ
    他にもパターンを加える場合は、同じ要領で追記してください。
  */
  /*1:1*/
  .pc_square:before{
    content: "";
    display: block;
    padding-top: 100%;
  }
  /*3:2*/
  .pc_hvga:before{
    content: "";
    display: block;
    padding-top: calc( 100% * 2 / 3 );
  } 
  /*4:3*/
  .pc_sd:before{
    content: "";
    display: block;
    padding-top: calc( 100% * 3 / 4 );
  }
  /*16:9*/
  .pc_hd:before{
    content: "";
    display: block;
    padding-top: calc( 100% * 9 / 16 );
  }
}

/* ---------------------------------
  header style
  ---------------------------------*/

/* ハンバーガーアイコン */
#hamburger {
  display: none;
}
.menu_trigger,
.menu_trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu_trigger {
  position: relative;
  width: 29px;
  height: 22px;
  cursor: pointer;
}

.menu_trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--c-green);
}
.menu_trigger span:nth-of-type(1) {
  top: 0;
}
.menu_trigger span:nth-of-type(2) {
  top: 10px;
}
.menu_trigger span:nth-of-type(3) {
  bottom: 0;
}
/* ハンバーガーアイコンのアニメーション調整は以下を調整する */
#hamburger:checked + .menu_trigger span {
  background-color: var(--c-white);
}
#hamburger:checked + .menu_trigger span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
#hamburger:checked +  .menu_trigger span:nth-of-type(2) {
  opacity: 0;
}
#hamburger:checked +  .menu_trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}

/* header レイアウト */
#header {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  /*padding: 20px;*/
  box-sizing: border-box;
}
#header .img_box.logo {
  display: block;
  padding: 15px 30px 23px 20px;
  width: 212px;
  transition: all 0.5s;
}
#header .nav_box {
  width: calc(100% - 212px);
  padding: 20px 20px 35px 30px;
  transition: all 0.5s;
}
#header .nav_box .menu_trigger {
  float: right;
  position: relative;
  z-index: 60;
}

.layout.menu_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu_list {
  display: none;
}
.menu_list a {
  line-height: 1;
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  font-size: 24px;
  font-size: 2.4rem;
  color: #ffffff;
  padding: 20px 0 18px 0;
}
.menu_list a.button {
  margin-top: 20px;
  padding: 20px 30px;
  color: var(--txt-color-white);
  font-size: 14px;
  font-size: 1.4rem;
}
.menu_list a.button:hover {
  color: var(--txt-color-orange);
}

#hamburger + .menu_trigger + .menu_list {
  transition: all 0.5s;
  transform: translate(100vw);
  position: absolute;
  top:0;
  right: 0px; /*少しずらすなら値を設定*/
  z-index: 50;
  display: block;
  box-sizing: border-box;
  padding: calc(50vh - 460px * 0.5) calc(50vw - 280px * 0.5);
  opacity: 0;
  background-color: rgba(255,150,57,0);
  border-bottom-left-radius: 50%;
  height: 0;
  width: 100vw;
  overflow: hidden;
}

#hamburger:checked + .menu_trigger + .menu_list {
  transform: translate(0);
  height: 100vh;
  opacity: 1;
  background-color: var(--c-green);
  border-bottom-left-radius: 0;
}

#hamburger:checked + .menu_trigger + .menu_list .menu_list.child {
  display: block;
}

@media only screen and (min-width: 981px) {
  #header {
    min-width: 810px;
  }
  #header .img_box.logo {
    padding: 20px 75px 40px 40px;
  }
  #header .nav_box {
    width: calc(100% - 277px);
  }
  #header .nav_box  .menu_trigger {
    display: none;
  }
  .layout.menu_list,
  #hamburger + .menu_trigger + .menu_list {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    opacity: 100;
    
    position: relative;
    background-color: transparent;
    height: auto;
    width: auto;
  }
  
  #hamburger + .menu_trigger + .menu_list {
    right: 0px;
    transform: translate(0);
  }
  
  .menu_list a {
    color: #414141;
    font-size: 14px;
    font-size: 1.4rem;
    transition: .3s ease-in-out;
  }
  .menu_list a:hover {
    color: var(--txt-color-orange);
  }
  .menu_list a.button {
    color: var(--txt-color-white);
    margin-top: 0;
    transition: .5s ease-in-out;
  }
  
  .layout.menu_list > li {
    width: auto;
    display: inline-block;
    margin-right: 40px;
    position: relative;
  }
  .layout.menu_list > li:last-child {
    margin-right: 25px;
  }
}

/* ---------------------------------
  footer style
  ---------------------------------*/
#footer {
  background-color: var(--c-green);
  color: var(--txt-color-white);
  text-align: center;
  padding: 20px 0 0 0;
}
#footer .copyright {
  font-size: 10px;
  font-size: 1.0rem;
  padding: 0 0 20px 0;
  margin: 0;
}

/* ---------------------------------
  section style
  ---------------------------------*/
#main > section {
  padding: 70px 0 100px 0;
}

#main > section:nth-child(2n-1) {
    background-color: #e4f6ff;
}
/* はみ出している要素自体に対処 */
#main {
  overflow-x: clip; /* clip は sticky を壊さない */
}
@media only screen and (min-width: 981px) {
  #main > section {
    padding: 140px 0 200px 0;
  }
}

/* ---------------------------------
  section title style
  ---------------------------------*/
.section_title {
  text-align: center;
  margin-bottom: 70px;
  color: var(--txt-color-deepblue);
}
.section_title.nbgt {
  margin-bottom: 55px;
}
.section_title > h2 {
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 1.5;
  font-weight: 900;
  margin: 0;
}
.section_title > h2.bg_txt {
  position: relative;
  z-index: 2;
  padding: 0.7em 0;
}
.section_title > h2.bg_txt.l2 {
  padding: 0;
}
.section_title > h2.bg_txt::after {
  content: "SAMPLETXT";
  font-family: acumin-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 80px;
  font-size: 8.0rem;
  color: var(--txt-color-white);
  position: absolute;
  top: -84px;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 166px;
}
#main > section:nth-child(2n-1) .section_title > h2.bg_txt::after {
  color: var(--txt-color-lite-green);
}

#difference .section_title > h2.bg_txt::after {
  content: "WHAT";
  top: -35px;
}
#reason .section_title > h2.bg_txt::after {
  content: "REASON";
  top: -34px;
}
#entrust .section_title > h2.bg_txt::after {
  content: "ENTRUST";
  top: -34px;
}
#example .section_title > h2.bg_txt::after {
  content: "EXAMPLE";
  top: -35px;
}
#flow .section_title > h2.bg_txt::after {
  content: "FLOW";
  top: -35px;
}
#faq .section_title > h2.bg_txt::after {
  content: "FAQ";
  top: -35px;
}
#contact .section_title > h2.bg_txt::after {
  content: "CONTACT";
  top: -35px;
}

.section_title > p:first-of-type {
  margin: 70px auto 0 auto;
}
.section_title > p {
  width: calc(100% - 40px);
  max-width: 800px;
  text-align: left;
  margin: 20px auto;
}

@media only screen and (min-width: 981px) {
  .section_title {
    text-align: center;
    margin-bottom: 150px;
  }
  .section_title.nbgt {
    margin-bottom: 60px;
  }
  
  .section_title > h2 {
    font-size: 44px;
    font-size: 4.4rem;
  }
  .section_title > h2.bg_txt {
    font-size: 36px;
    font-size: 3.6rem;
    padding: 1.0em 0;
  }
  .section_title > h2.bg_txt.l2 {
    padding: 0.35em 0;
  }
  .section_title > h2.bg_txt::after {
    font-size: 166px;
    font-size: 16.6rem;
    top: -84px;
    left: 0;
    height: 166px;
  }
  #difference .section_title > h2.bg_txt::after {
    /*content: "WHAT";*/
    top: -68px;
  }
  #reason .section_title > h2.bg_txt::after {
    /*content: "REASON";*/
    top: -68px;
  }
  #entrust .section_title > h2.bg_txt::after {
    /*content: "ENTRUST";*/
    top: -68px;
  }
  #example .section_title > h2.bg_txt::after {
    /*content: "EXAMPLE";*/
    top: -68px;
  }
  #flow .section_title > h2.bg_txt::after {
    /*content: "FLOW";*/
    top: -68px;
  }
  #faq .section_title > h2.bg_txt::after {
    /*content: "FAQ";*/
    top: -68px;
  }
  #contact .section_title > h2.bg_txt::after {
    /*content: "CONTACT";*/
    top: -68px;
  }
  
  .section_title > p:first-of-type {
    margin: 80px auto 0 auto;
  }
  
}

/*-------------------*/
.contents_title {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: left;
  margin: 0 0 40px 0;
}
@media only screen and (min-width: 981px) {
  .contents_title {
    font-size: 30px;
    font-size: 3.0rem;
    line-height: 1.75;
    text-align: center;
  }
}

/* ---------------------------------
  text style
  ---------------------------------*/

em {
  font-style: normal;
  color: var(--txt-color-green);
}

/* ---------------------------------
  link style
  ---------------------------------*/

a {
  color: var(--txt-color-orange);
  text-decoration: underline;
  
}
a:hover {
  text-decoration: none;
}
a > img {
  transition:0.5s;
}
a:hover > img {
  opacity: 0.8;
}
/*
.animate_link {
  text-decoration: none;
  background: 
      linear-gradient(currentColor 0 0) 
      bottom /var(--d, 0) 1px 
      no-repeat;
  transition:0.5s;
}
.animate_link:hover {
  text-decoration: none;
  --d: 100%;
}
*/
/* ---------------------------------
  page style
  ---------------------------------*/
#key {
  width: 100%;
  height: calc(calc(10vh + 70vw) + 330px + 70px);
  min-height: 780px;
  max-height: 1300px;
  position: relative;
  
  background-image: url("img/bg_key_sp.png");
  background-repeat: no-repeat;
  background-size: calc(29500vw / 375) auto;
  background-position: top 10vh center;
  
}
@media only screen and (min-width: 981px) {  
  #key {
    height: 73vw;
    max-height: none;
    
    background-image: url("img/bg_key.png");
    background-size: calc(755vw / 16) auto;
    background-position: top calc(150vw / 16) right calc(100vw / 16);
  }
}


#key .section_title {
  position: absolute;
  
  /*
    キャッチコピーの位置調整。
    以下デザインに合わせに任意に書き換えてください。
  */
  width: 300px;
  /*height: 295px;*/
  top: calc( 10vh + 70vw ); /* section_titleの高さの半分だけマイナスする */
  left: calc(50% - 300px * 0.5 );
  text-align: left;
  margin-bottom: 20px;
}
#key .section_title > h1 {
  margin: 0 0 10px 0;
  line-height: 1.5;
  
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 900;
}
#key .section_title p.description {
   margin: 0 0 20px 0;
  font-weight: 700;
  width: 100%;
}
#key .section_title .button.icon.send {
  font-weight: 700;
}
@media only screen and (min-width: 981px) {
  #key .wrapper {
    width: calc(100% - 200px);
    max-width: none;
  }
  #key .section_title {
    position: absolute;

    /*
      キャッチコピーの位置調整。
      以下デザインに合わせに任意に書き換えてください。
    */
    width: calc(650vw / 16); /*width: 420px;*/
    height: calc(520vw / 16); /*height: 295px;*/
    top: calc(43% - calc(520vw / 16) * 0.5 ); /*top: calc(35% - 295px * 0.5 ); /* section_titleの高さの半分だけマイナスする */
    left: calc(90vw / 16); /*left: calc(50% - 410px * 0.5 );*/
    text-align: left;
  }
  #key .section_title > h1 {
    margin: 0 0 30px 0;
    font-size: calc(50vw / 16);
  }
  #key .section_title p.description {
    margin: 0 0 40px 0;
    font-size: calc(21vw / 16);
  }
  #key .section_title .button.icon.send {
    width: auto;
    font-size: calc(21vw / 16);
  }
}

.contact_link_section {
  margin-bottom: calc(-100px - 191px);
}
#main > section.after_contact_link_section {
  padding-top: calc(100px + 191px);
}

.contact_link_box {
  background-image: url("img/bg_contact_link_box.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: var(--thema-r);
  
  color: var(--txt-color-white);
  text-align: left;
  
  padding: 50px 30px;
  position: relative;
}
.contact_link_box::before,
.contact_link_box::after {
  position: absolute;
  bottom: -50px;
  content: "";
  display: none;
  width: calc(233vw / 16); /*width: 363px;*/
  max-width: 363px;
  height: calc(395vw / 16); /*height: 395px;*/
  max-height: 395px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.contact_link_box::before {
  background-image: url("img/img_contact_link_box01.png");
  left: 40px;
}
.contact_link_box::after {
  background-image: url("img/img_contact_link_box02.png");
  right: 40px;
}
.contact_link_box .title {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5;
  margin: 0 0 30px 0;
}
.contact_link_box .text {
  margin: 0 0 40px 0;
}
.contact_link_box .button.icon.send {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 20px 40px 20px 20px;
}
.contact_link_box .button.icon.send::after {
  right: 20px;
}
@media only screen and (min-width: 981px) {
  .contact_link_section {
    margin-bottom: calc(-200px - 212px);
  }
  #main > section.after_contact_link_section {
    padding-top: calc(200px + 210px);
  }
  
  .contact_link_box {
    text-align: center;
    padding: 80px 40px;
  }
  .contact_link_box::before,
  .contact_link_box::after {
    display: block;
  }
  .contact_link_box .title {
    font-size: 36px;
    font-size: 3.6rem;
    line-height: 1.25;
  }
  .contact_link_box .button.icon.send {
    width: auto;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 700;
    padding: 30px 100px 30px 70px;
  }
  .contact_link_box .button.icon.send::after {
    width: 30px;
    height: 30px;
    right: 60px;
    top: calc(50% - 15px);
  }
}

/**/
#about .section_title > h2 {
  font-size: 28px;
  font-size: 2.8rem;
}
#about .appearance.card {
  max-width: 1200px;
  margin: 0 auto 60px auto;
}
#about .appearance.card .card_about_box {
  padding: 50px 30px;
}
#about .appearance.card .card_about_box > .img_box {
  max-width: 340px;
  margin: 0 auto 40px auto;
}
#about .appearance.card .card_about_box > .contents_box {
  padding: 0;
}

#about .contact_link_section .contents_title {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 900;
  margin: 0 0 60px 0;
}
@media only screen and (min-width: 981px) {
  #about .section_title > h2 {
    font-size: 44px;
    font-size: 4.4rem;
  }
  #about .appearance.card {
    margin: 0 auto 120px auto;
  }
  #about .appearance.card .card_about_box {
    padding: 50px;
  }
  #about .contact_link_section .contents_title {
    font-size: 36px;
    font-size: 3.6rem;
    margin: 0 0 120px 0;
  }
}
/**/
#difference .section_contents {
  position: relative;
  z-index: 1;
}
#difference > .section_contents::before {
  position: absolute;
  top: 0;
  left: calc(-380vw / 16);
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--c-pastel-green);
  background-color: var(--c-lite-green);
  border-radius: 0 var(--thema-r) var(--thema-r) 0;
}
@media only screen and (min-width: 981px) {
  #difference > .section_contents::before {
    top: 10%;
    height: calc(100% - 10% - 10%);
  }
}
/**/
#example .appearance.img_list {
  margin-bottom: 0;
}
#example .appearance.card.icon_list {
  margin-bottom: 80px;
}
#example .appearance.card.icon_list > * {
  padding: 30px;
  border-radius: var(--thema-mid-r);
}
#example .contact_link_box {
  /*margin-bottom: -239px;*/
}
@media only screen and (min-width: 981px) {
  #example .appearance.img_list {
    margin-bottom: 100px;
  }
  #example .appearance.card.icon_list {
    margin-bottom: 180px;
  }
}

/**/
#flow .wrapper {
  max-width: 860px;
}
/**/
#faq .wrapper {
  max-width: 940px;
}
/**/
#contact .wrapper {
  max-width: 960px;
}
#contact .submit_box {
  max-width: 320px;
  margin: 0 auto;
}
#contact .submit_box > .button {
  margin-bottom: 30px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
}
#contact .attention_text_box {
  max-width: 680px;
  margin: 0 auto;
}


/* ---------------------------------
  form style
  ---------------------------------*/
#form,
.form {
  margin: 0;
}

#form .label,
.form .label {
  display: inline;
  font-weight: 700;
}

#form .required,
.form .required {
  display: inline-block;
  font-size: 75%;
  color: var(--txt-color-white);
  line-height: 1;
  padding: 2px 13px 3px 13px;
  background-color: var(--c-red);
  border-radius: 5px;
  margin-left: 10px;
}

.layout.form {
  justify-content: flex-start;
  align-items: flex-start;
}
.form_label_box {
  margin: 0;
  padding: 5px 0 2px 0;
}
.form_input_box {
  margin: 0;
  padding: 2px 0 5px 0;
}
/*.layout.inner_form_input{
  justify-content: flex-start;
  align-items: flex-start;
}*/

.form_input_box > * {
  width: 100%;
  padding: 20px;
  border: none;
  border-radius: 5px;
}
.form_input_box > input[type="radio"] {
  width: auto;
  padding: 0;
}
.form_input_box .radiobox {
  padding: 0 0 0 10px;
  margin: 0 30px 20px 0;
}
.form_input_box .radiobox:last-of-type {
  margin-right: 0;
}

.form_input_box.free-text_box > textarea {
  margin-top: 20px;
  min-height: 250px;
}
.form_input_box.check-agree_box > * {
  padding: 0;
  margin: 0 60px 20px 0;
}
.form_input_box.check-agree_box .layout.check-agree_unit {
  /*バリデーションメッセージの仕様に対応するため*/
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.form_input_box.check-agree_box .check-agree_unit #check-agree {
  width: auto;
}
.form_input_box.check-agree_box .check-agree_unit .agree-p {
  padding: 0 0 0 10px;
  width: auto;
}
.form_input_box.check-agree_box .agree-txt {
  margin-bottom: 50px;
}
.recaptcha-box {
  text-align: center;
  margin-bottom: 50px;
}
.recaptcha-box .g-recaptcha {
  display: inline-block;
}
.recaptcha-box .formError.inline {
  text-align: center;
}

@media only screen and (min-width: 769px) {
  .form_input_box .radiobox {
    margin: 0 60px 20px 0;
  }
}
/*バリデーション メッセージの調整--------------------------------------*/
.mw_wp_form .error {
  display: block;
  width: 100%;
  
  margin: 10px 0 0 0;
  padding: 12px;
  color: #721c24;
  background-color: #f8d7da;
  border-radius: 5px;
}

.form .formError.inline {
  display: block;
  padding: 5px 0 0 0;
}
.form .formError .formErrorContent {
  background: none;
  color: var(--txt-color-red);
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0;
}


.no-js-validation {
  display: none;
}
.no-js .no-js-validation {
  display: block;
}
.no-js #contact-form {
  display: none;
}

@media only screen and (min-width: 769px) {
  .form_label_box {
    width: 280px;
    padding: 10px 70px 10px 0;
  }
  .form_input_box {
    width: calc( 100% - 280px);
    padding: 10px 0;
  }
  .form_input_box > * {
    width: 50%;
  }
  .form_input_box.check-agree_box > *,
  .form_input_box.free-text_box > textarea {
    width: 100%;
  }
}

#thankyou .section_title .description {
  text-align: center;
}
#thankyou .submit_box {
  max-width: 320px;
  margin: 0 auto;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}


/* ============================================================
   v1.0.2 追加 — レイアウト崩れ修正 + パルスCTAボタン
   ============================================================ */

/* ---- フォントを Noto Sans JP に統一 ---- */
html, body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

/* ---- ロゴサイズの確実な指定 ---- */
#header .logo {
  display: inline-block;
}
#header .logo img {
  display: block;
  width: auto;
  max-width: 220px;
  height: auto;
  max-height: 56px;
}

@media (max-width: 768px) {
  #header .logo img {
    max-width: 160px;
    max-height: 44px;
  }
  #header {
    overflow-x: hidden;
  }
  /* ハンバーガー展開時はメニューを全画面表示するためoverflow解除 */
  #header:has(#hamburger:checked) {
    overflow-x: visible;
  }
}

/* ---- ヘッダーの基本レイアウト保証 ---- */
#header.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1px 32px;
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 100;
}
@media (max-width: 980px) {
  #header.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: transparent;
  }
  body {
    margin: 0;
    padding: 0;
  }
  #key,
  #main {
    margin: 0;
    padding: 0;
  }
  /* CTAをコンパクトに */
  #key .cta-pulse {
    padding: 14px 22px 14px 18px;
    font-size: 13px;
    gap: 8px;
  }
  #key .cta-pulse__badge {
    font-size: 10px;
    padding: 3px 7px;
  }

  /* #key の高さも少しだけ余裕を持たせる */
  #key {
    min-height: 820px;
  }

  /* section_title のボタンが下にはみ出さないよう margin-top を確保 */
  #key .section_title > h1 {
    margin-bottom: 15px;
  }
  #key .section_title p.description {
    margin-bottom: 15px;
  }
  /* #key 内のCTAボタンを中央寄せ */
  #key .section_title > div:last-child {
    text-align: center;
    margin-top: 20px;
  }

  /* もしくは cta-pulse を直接センター配置 */
  #key .cta-pulse {
    margin-left: auto;
    margin-right: auto;
  }

  /* #key の section_title 幅を広げて余裕を持たせる */
  #key .section_title {
    width: calc(100% - 40px);
    max-width: 360px;
    left: 20px;
  }
}

.contact_link_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact_link_box .cta-pulse {
  width: auto !important;
  max-width: none !important;
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  #header.header {
    padding: 12px 16px;
  }
}

/* ============================================================
   パルスCTAボタン
   ============================================================ */
.cta-pulse {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px 18px 28px;
  background: linear-gradient(135deg, #FF7A21 0%, #FF5722 100%);
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none !important;
  border-radius: 999px;
  box-shadow:
    0 10px 30px -8px rgba(255, 122, 33, 0.55),
    0 4px 12px -4px rgba(255, 87, 34, 0.4);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s;
  isolation: isolate;
  letter-spacing: 0.02em;
}

.cta-pulse::before,
.cta-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid #FF7A21;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
}
.cta-pulse::before {
  animation: ctaPulse 2.4s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.cta-pulse::after {
  animation: ctaPulse 2.4s cubic-bezier(0, 0, 0.2, 1) infinite;
  animation-delay: 1.2s;
}

@keyframes ctaPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.cta-pulse:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 40px -8px rgba(255, 122, 33, 0.65),
    0 6px 16px -4px rgba(255, 87, 34, 0.5);
}
.cta-pulse:active {
  transform: translateY(-1px);
}

.cta-pulse__badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.95);
  color: #E84F0E;
  font-size: 11px;
  font-weight: 900;
  border-radius: 999px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-pulse__text {
  flex: 1;
  white-space: nowrap;
}

.cta-pulse__arrow {
  display: inline-block;
  font-size: 18px;
  font-weight: 900;
  transition: transform 0.25s;
}
.cta-pulse:hover .cta-pulse__arrow {
  transform: translateX(4px);
}

/* ヘッダー内のコンパクト版 */
.menu_list .cta-pulse,
#header .cta-pulse {
  padding: 12px 22px;
  font-size: 14px;
  gap: 8px;
}
.menu_list .cta-pulse .cta-pulse__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: #E84F0E;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

/* ヒーロー版(キービジュアル下)はさらに大きく */
.cta-pulse--hero {
  padding: 22px 44px 22px 32px;
  font-size: 18px;
  gap: 16px;
}
.cta-pulse--hero .cta-pulse__badge {
  font-size: 12px;
  padding: 5px 12px;
}

/* スマホでは縦に広めに */
@media (max-width: 640px) {
  .cta-pulse {
    padding: 16px 24px 16px 20px;
    font-size: 14px;
    gap: 10px;
    max-width: 100%;
  }
  .cta-pulse__badge {
    font-size: 10px;
    padding: 3px 8px;
  }
  .cta-pulse--hero {
    padding: 18px 28px 18px 22px;
    font-size: 15px;
  }
  /* ヘッダーのCTAは小さく */
  .menu_list .cta-pulse {
    padding: 10px 16px;
    font-size: 12px;
    margin: 20px -10px;
  }
}

/* ユーザーがアニメ削減を希望している場合は鼓動を停止 */
@media (prefers-reduced-motion: reduce) {
  .cta-pulse::before,
  .cta-pulse::after {
    animation: none;
    display: none;
  }
}

/* ---- レイアウト崩れ防止: wrapper の最大幅と中央寄せ ---- */
.wrapper {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* ---- 画像はレスポンシブで崩れないよう ---- */
img {
  max-width: 100%;
  height: auto;
}

/* ---- contact_link_box のリンクスペーシング保証 ---- */
.contact_link_box {
  text-align: center;
}
.contact_link_box .cta-pulse {
  margin-top: 8px;
}

/* ============================================================
   appeal_box 内のCTAレイアウト調整
   ============================================================ */
.appeal_box {
  text-align: center;
  padding-bottom: 48px;
}
.appeal_box p {
  margin-bottom: 32px;
}
.appeal_box .cta-pulse {
  margin-top: 30px;
}

/* 緑背景の上に配置するCTAバリエーション(白背景・オレンジ文字) */
.cta-pulse--on-green {
  background: #ffffff;
  color: #E84F0E !important;
  box-shadow:
    0 12px 32px -8px rgba(0, 0, 0, 0.25),
    0 4px 12px -4px rgba(0, 0, 0, 0.15);
}
.cta-pulse--on-green::before,
.cta-pulse--on-green::after {
  border-color: #ffffff;
}
.cta-pulse--on-green .cta-pulse__badge {
  background: linear-gradient(135deg, #FF7A21 0%, #FF5722 100%);
  color: #ffffff;
}
.cta-pulse--on-green:hover {
  background: #ffffff;
  box-shadow:
    0 18px 42px -8px rgba(0, 0, 0, 0.35),
    0 6px 16px -4px rgba(0, 0, 0, 0.2);
}