/*! 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 -------------------- */

@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-beige: #faf6f0;
  /*背景色*/
  --c-lite-purple: #dde1ff;
  /* tag */
  --c-purple: #784779;
  /*btn color purple*/
  --c-dark-purple: #4f404f;
  --c-pink: #fbc9c9;
  /*btn color pink*/
  --c-lite-blue: #9edcff;
  /*btn color lite-blue*/
  --c-red: #eb5757;
  /*警告色*/
  --c-white: #ffffff;
  --c-black: #34302f;

  /*root 追加分*/
  --c-blue: #4294e0;
  /* 2択ボタン yes*/
  --c-gray: #b8b8b8;
  /* 2択ボタン no*/

  /*テキストカラー設定*/
  --txt-color: #4f404f;
  /*font color*/
  --txt-color-second: #948094;
  /*font color second*/
  --txt-color-blue: #1a5293;
  /*btn color blue*/
  --txt-color-purple: #784779;
  /*btn color purple*/
  --txt-color-red: #eb5757;
  /*警告色*/

  /*フォント別ウェイト設定*/
  /*Noto Sans Japanese*/
  --noto-regular: 400;
  --noto-mid: 500;
  --noto-bold: 700;
  --noto-black: 900;
  /*Shippori Mincho*/
  --shippori-regular: 400;
  --shippori-mid: 500;
  --shippori-bold: 700;
  --shippori-exbold: 800;

  /*ボーダーカラー設定*/
  --border-color: rgba(110, 93, 110, 0.4);
  --border-color-pink: #f0aab4;
  --border-color-purple: #b0b0f0;

  /*シャドウカラー設定*/
  --shadow-color: #00000029;

  /*角丸設定*/
  --thema-r: 32px;
  --thema-sub-r: 24px;
  --thema-tag-r: 4px;
}

@media only screen and (min-width: 981px) {
  :root {
    --thema-r: 60px;
    --thema-sub-r: 30px;
    --thema-tag-r: 4px;
  }
}

.shippori {
  font-family: "Shippori Mincho", serif;
}

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

body {
  font-family: "Noto Sans JP", "Shippori Mincho", -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-optical-sizing: auto;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: var(--noto-regular);
  line-height: 2;
  letter-spacing: 0.2rem;
  background-color: var(--c-beige);
  overflow-x: hidden;
  min-height: 100%;
}

/*
 * 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 rgba(110, 93, 110, 0.4);
  margin: 32px 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;
}

.pc_b_elem {
  display: none;
}

@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;
  }

  .pc_b_elem {
    display: block;
  }
}

/* ---------------------------------
  icons
  ---------------------------------*/

.icon_glass {
  display: inline-block;
  position: relative;
  padding: 5px 32px 5px 0;
}

.icon_glass::after {
  position: absolute;
  top: calc(50% - 12px);
  right: 0;
  content: "";
  display: block;
  background-image: url("../img/icon_glass.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
  margin-left: 8px;
}

.icon_r_arrow {
  display: inline-block;
  position: relative;
  padding: 5px 32px 5px 0;
}

.icon_r_arrow::after {
  position: absolute;
  top: calc(50% - 12px);
  right: 0;
  content: "";
  display: block;
  background-image: url("../img/icon_arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
  margin-left: 8px;
}

.icon_l_arrow_s {
  display: inline-block;
  position: relative;
  padding: 0 0 0 20px;
}

.icon_l_arrow_s::before {
  position: absolute;
  top: calc(50% - 8px);
  left: 0;
  content: "";
  display: block;
  background-image: url("../img/icon_left_arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

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

.wrapper .wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 1024px;
}

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

  .wrapper .wrapper {
    width: 100%;
  }
}

/* ---------------------------------
  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.two_column > * {
  width: 100%;
}

.layout.one_third,
.layout.one_quarter {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;

  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

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

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

.layout.side_title .contents_title {
}

.layout.side_title .contents_box {
  border-top: 1px solid rgba(110, 93, 110, 0.4);
}

.esc_flex {
  display: inline;
}

@media only screen and (min-width: 981px) {
  .layout.one_half > * {
    width: 50%;

    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;

    -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;
  }

  .layout.two_column > .img_box {
    width: 540px;
  }

  .layout.two_column > .contents_box {
    width: calc(100% - 540px - 60px);
  }

  .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.side_title .contents_title {
    width: 240px;
    padding-right: 50px;
  }

  .layout.side_title .contents_title .title {
    margin-bottom: 0;
  }

  .layout.side_title .contents_box {
    width: calc(100% - 240px);
    padding-left: 50px;
    border-top: none;
    border-left: 1px solid rgba(110, 93, 110, 0.4);
  }
}

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

/*背景白丸座布団*/
.appearance.round_box {
  border-radius: var(--thema-r);
  background-color: var(--c-white);
  padding: 26px 16px;
  margin: 30px 0;
  border: solid 2px var(--c-white);
}

.contents_title + .appearance.round_box {
  margin-top: 20px;
}

.appearance.round_box .title {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: var(--noto-mid);
  line-height: 1.5;
  margin: 0 0 18px 0;
}

.appearance.round_box .contents_box {
  padding: 18px 0 0 0;
}

.appearance.round_box .contents_box .appearance.num_list > * {
  margin-bottom: 24px;
}

.appearance.round_box .contents_box .appearance.num_list > *:last-child {
  margin-bottom: 0px;
}

@media only screen and (min-width: 981px) {
  .appearance.round_box {
    padding: 80px;
    margin: 40px 0;
  }

  .two_column .appearance.round_box {
    margin: 0;
  }

  .appearance.round_box .title {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.5;
  }

  .appearance.round_box .contents_box {
    padding: 0 0 0 50px;
  }
}

/* 標準リスト */
.appearance.std_list {
  padding-left: 25px;
}

.appearance.std_list > li {
  list-style: disc;
}

/* 標準順番リスト */
.appearance.std_olist {
  counter-reset: num-count;
  padding-left: 25px;
}

.appearance.std_olist > li {
  position: relative;
}

.appearance.std_olist > li:before {
  content: counter(num-count);
  counter-increment: num-count;
  border: 1px solid;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 16px;
  width: 16px;
  color: var(--txt-color);
  font-size: 81%;
  font-weight: var(--noto-mid);
  line-height: 1;
  position: absolute;
  top: 7px;
  left: -25px;
  padding-top: 1px;
}

/* 画像付きリスト */

.appearance.img_list {
  margin-left: -12px;
  margin-right: -12px;
}

.appearance.img_list > * {
  box-sizing: border-box;
  padding: 6px;
  position: relative;
}

.appearance.img_list .img_box {
  margin-bottom: 16px;
}

.appearance.img_list.bounce > *:hover .img_box {
  animation: bounceScaleUp02 1s ease-in-out forwards;
}

.appearance.img_list .contents_box {
}

.appearance.img_list .contents_box .title {
  margin: 0 0 8px 0;
  line-height: 1.5;

  font-size: 16px;
  font-size: 1.6rem;
  color: var(--txt-color);
  font-weight: var(--noto-mid);
  letter-spacing: 0.13rem;
  transition: 0.3s ease-in-out;
}

.appearance.img_list .contents_box .title.center {
  text-align: center;
}

.appearance.img_list .contents_box .title > a {
  text-decoration: none;
}

.appearance.img_list .contents_box .sub_title {
  font-size: 13px;
  font-size: 1.3rem;
  color: var(--txt-color-second);
  margin: 0 0 8px 0;
  transition: 0.3s ease-in-out;
}

.appearance.img_list > *:hover .contents_box .title > a,
.appearance.img_list > *:hover .contents_box .sub_title {
  color: var(--c-purple);
}

@media only screen and (min-width: 981px) {
  .appearance.img_list {
    margin-left: -20px;
    margin-right: -20px;
  }

  .appearance.img_list > * {
    margin: 20px;
  }

  .appearance.img_list .img_box {
  }

  .appearance.img_list .contents_box {
    width: 100%;
  }

  .appearance.img_list .contents_box .title {
    font-size: 20px;
    font-size: 2rem;
  }

  .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: -20px;
    margin-right: -20px;
  }

  .layout.one_half.appearance.img_list > * {
    max-width: calc(50% - 40px);
  }

  .layout.one_third.appearance.img_list > * {
    max-width: calc(33% - 40px);
  }
}

/* 番号リスト */
.appearance.num_list {
  counter-reset: num 0;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.appearance.num_list > * {
  margin: 32px 0;
}

.appearance.num_list > *:first-child {
  margin-top: 0;
}

.appearance.num_list > *:last-child {
  margin-bottom: 0;
}

.appearance.num_list > * .title {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: var(--noto-mid);
  line-height: 1.5;
  min-height: 50px;
  margin: 0 0 16px 0;

  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.appearance.num_list > * .title::before {
  display: block;
  counter-increment: num;
  content: counter(num) ".";
  font-family: "Shippori Mincho", serif;
  font-weight: var(--shippori-mid);
  font-size: 22px;
  font-size: 2.2rem;
  text-align: center;
  line-height: 1;
  width: 50px;
  height: 50px;
  padding: 12px 0;

  background-image: url("../img/num_list_bg.svg");
  background-position: center;
  background-size: contain;
}

.appearance.num_list > * .title .title_txt {
  display: block;
  width: calc(100% - 66px);
}

.appearance.num_list > * > p {
  margin: 0;
}

@media only screen and (min-width: 981px) {
  .appearance.num_list > * .title {
    font-size: 20px;
    font-size: 2rem;
  }
}

/* QAリスト */
.appearance.qa_list {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.appearance.qa_list > * {
  margin: 32px 0;
}

.appearance.qa_list > *:first-child {
  margin-top: 0;
}

.appearance.qa_list > *:last-child {
  margin-bottom: 0;
}

.appearance.qa_list > * .title {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: var(--noto-mid);
  line-height: 1.5;
  min-height: 50px;
  margin: 0 0 16px 0;

  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.appearance.qa_list > * .title::before {
  display: block;
  content: "Q.";
  font-family: "Shippori Mincho", serif;
  font-weight: var(--shippori-mid);
  font-size: 22px;
  font-size: 2.2rem;
  text-align: center;
  line-height: 1;
  width: 50px;
  height: 50px;
  padding: 12px 0;

  background-image: url("../img/num_list_bg.svg");
  background-position: center;
  background-size: contain;
}

.appearance.qa_list > * .title .title_txt {
  display: block;
  width: calc(100% - 66px);
}

.appearance.qa_list > * > p {
  margin: 0;
}

@media only screen and (min-width: 981px) {
  .appearance.qa_list > * .title {
    font-size: 20px;
    font-size: 2rem;
  }
}

/**/
.appearance.attention_list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-size: 10px;
  font-size: 1rem;
  line-height: 2;
  color: var(--txt-color-second);
}

.appearance.attention_list > * {
  position: relative;
  padding-left: 20px;
}

.appearance.attention_list > *::before {
  content: "※";
  position: absolute;
  left: 0;
}

@media only screen and (min-width: 981px) {
}

/* 吹き出しメッセージ */
.appearance.speech_bubble > * {
  margin: 24px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.appearance.speech_bubble > *:last-child {
  margin-bottom: 6px;
}

.appearance.speech_bubble .avater_box {
  width: 80px;
  margin: 0;
}

.appearance.speech_bubble .avater_box > img {
  width: 100%;
  height: auto;
}

.appearance.speech_bubble .bubble_box {
  width: calc(100% - 80px - 16px);
  margin: 0 0 0 16px;
  padding: 24px 16px;
  border: var(--border-color-purple) solid 1px;
  border-radius: 24px;

  font-family: "Shippori Mincho", serif;
  color: var(--txt-color);
  font-weight: var(--shippori-mid);
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  position: relative;
}

.appearance.speech_bubble .bubble_box::before,
.appearance.speech_bubble .bubble_box::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  transform: rotate(-45deg) skew(26deg, 26deg);
  top: calc(50% - 7px);
}

.appearance.speech_bubble .bubble_box::before {
  left: calc(-24px + 16px);
  background: var(--border-color-purple);
  border-top-left-radius: 6px;
}

.appearance.speech_bubble .bubble_box::after {
  left: calc(-24px + 16px + 3px);
  background: #ffff;
  border-top-left-radius: 3px;
}

.appearance.speech_bubble > .layout.general {
  flex-direction: row-reverse;
}

.appearance.speech_bubble > .layout.general .bubble_box {
  margin-left: 0;
  margin-right: 16px;
  border: var(--border-color-pink) solid 1px;
}

.appearance.speech_bubble > .layout.general .bubble_box::before,
.appearance.speech_bubble > .layout.general .bubble_box::after {
  transform: rotate(135deg) skew(26deg, 26deg);
}

.appearance.speech_bubble > .layout.general .bubble_box::before {
  left: auto;
  right: calc(-24px + 16px);
  background-color: var(--border-color-pink);
}

.appearance.speech_bubble > .layout.general .bubble_box::after {
  left: auto;
  right: calc(-24px + 16px + 3px);
}

@media only screen and (min-width: 981px) {
  .appearance.speech_bubble > * {
    margin: 32px 0;
  }

  .appearance.speech_bubble > *:first-child {
    margin-top: 50px;
  }

  .appearance.speech_bubble > *:last-child {
    margin-bottom: 0;
  }

  .appearance.speech_bubble .avater_box {
    width: 100px;
  }

  .appearance.speech_bubble .bubble_box {
    width: calc(100% - 100px - 24px);
    margin: 0 0 0 24px;
    padding: 32px 48px;
    border-radius: 30px;

    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.36rem;
  }

  .appearance.round_box .appearance.speech_bubble .bubble_box {
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
  }
}

/* ---------------------------------
  tag style
  ---------------------------------*/
.tag_box {
  line-height: 2;
}

.tag_box_text {
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  color: var(--txt-color-second);
  line-height: 2;
}

.tag {
  display: inline-block;
  font-size: 10px;
  font-size: 1rem;
  font-weight: var(--noto-mid);
  text-align: center;
  line-height: 2;

  color: var(--txt-color);

  background-color: var(--c-lite-purple);
  border: solid 1px var(--c-white);
  padding: 2px 8px;
  margin-right: 0px;
  border-radius: var(--thema-tag-r);
}

.tag:last-child {
  margin-right: 0;
}

@media only screen and (min-width: 981px) {
  .tag {
    padding: 2px 12px;
  }
}

/* ---------------------------------
  button style
  ---------------------------------*/
.btn_box {
  text-align: right;
  line-height: 1;
}

.button {
  display: inline-block;
  width: 100%;
  background-color: var(--c-pink);
  border: solid 2px var(--c-white);
  border-radius: 80px;
  line-height: 1;
  padding: 16px 16px 16px 24px;
  position: relative;
  color: var(--txt-color-purple);
  text-decoration: none;
  text-align: center;
  letter-spacing: normal;

  transition: ease 0.3s;
  overflow: hidden;

  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  -moz-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  -ms-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  transform: translateZ(0px);
  /* ハードウェアアクセラレーションに仕事させるためだけの記述 */
}

.button.blue {
  background-color: var(--c-lite-blue);
  color: var(--txt-color-blue);
}

.button.border {
  background-color: var(--c-white);
  border: solid 1px var(--c-purple);
}

.button.border .icon_bag {
  position: relative;
  padding-left: 52px;
  display: block;
  line-height: 1.5;
  text-align: left;
}

.button.border .icon_bag::before {
  position: absolute;
  top: calc(50% - 21px);
  left: 0;
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  background-image: url("../img/icon_bag.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

/*hoverした際の形状*/
.button:hover:before {
  transform: scale(1, 1);
}

.button > .button_label {
  position: relative;
  z-index: 3;
}

.button > .button_label.two_lines {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
}

.button > .button_label.two_lines > em {
  font-size: 16px;
  font-size: 1.6rem;
}

.button:hover {
  background-color: var(--c-lite-purple);
  text-decoration: none;
  animation: bounceScaleUp02 1s ease-in-out forwards;
}

.button.border:hover {
  border: solid 2px var(--c-white);
}

.bounce_anime:hover {
  animation: bounceScaleUp02 1s ease-in-out forwards;
}

@keyframes bounceScaleUp02 {
  0% {
    transform: matrix(1, 0, 0, 1, 0, 0);
  }

  3.4% {
    transform: matrix(0.913, 0, 0, 0.931, 0, 0);
  }

  4.7% {
    transform: matrix(0.94, 0, 0, 0.97, 0, 0);
  }

  6.81% {
    transform: matrix(0.992, 0, 0, 1.029, 0, 0);
  }

  9.41% {
    transform: matrix(1.027, 0, 0, 1.084, 0, 0);
  }

  10.21% {
    transform: matrix(1.038, 0, 0, 1.095, 0, 0);
  }

  13.61% {
    transform: matrix(1.075, 0, 0, 1.116, 0, 0);
  }

  14.11% {
    transform: matrix(1.078, 0, 0, 1.116, 0, 0);
  }

  17.52% {
    transform: matrix(1.092, 0, 0, 1.098, 0, 0);
  }

  18.72% {
    transform: matrix(1.092, 0, 0, 1.087, 0, 0);
  }

  21.32% {
    transform: matrix(1.089, 0, 0, 1.064, 0, 0);
  }

  24.32% {
    transform: matrix(1.08, 0, 0, 1.042, 0, 0);
  }

  25.23% {
    transform: matrix(1.077, 0, 0, 1.038, 0, 0);
  }

  29.03% {
    transform: matrix(1.063, 0, 0, 1.029, 0, 0);
  }

  29.93% {
    transform: matrix(1.051, 0, 0, 1.03, 0, 0);
  }

  35.54% {
    transform: matrix(1.046, 0, 0, 1.042, 0, 0);
  }

  36.74% {
    transform: matrix(1.044, 0, 0, 1.046, 0, 0);
  }

  41.04% {
    transform: matrix(1.042, 0, 0, 1.054, 0, 0);
  }

  44.44% {
    transform: matrix(1.043, 0, 0, 1.056, 0, 0);
  }

  52.15% {
    transform: matrix(1.048, 0, 0, 1.051, 0, 0);
  }

  59.86% {
    transform: matrix(1.051, 0, 0, 1.048, 0, 0);
  }

  63.26% {
    transform: matrix(1.051, 0, 0, 1.048, 0, 0);
  }

  75.28% {
    transform: matrix(1.05, 0, 0, 1.051, 0, 0);
  }

  85.49% {
    transform: matrix(1.05, 0, 0, 1.05, 0, 0);
  }

  90.69% {
    transform: matrix(1.05, 0, 0, 1.05, 0, 0);
  }

  to {
    transform: matrix(1.05, 0, 0, 1.05, 0, 0);
  }
}

.sp_header_btn.button {
  font-size: 10px;
  font-size: 1rem;
  padding: 4px 18px 8px 18px;
  width: auto;
  float: right;
}

.sp_header_btn .icon_glass {
  display: inline-block;
  padding: 26px 0 0 0;
}

.sp_header_btn .icon_glass::after {
  top: 0;
  right: calc(50% - 13px);
}

@media only screen and (min-width: 981px) {
}

/* ---------------------------------
  img style
  
  画像を入れる場合、divに以下のクラスを適用するなどして、利用してください。
  ---------------------------------*/
.img_box {
  width: 100%;
  height: auto;
}

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

.img_box figcaption {
  font-size: 10px;
  font-size: 1rem;
  color: var(--txt-color-second);
  margin-top: 8px;
}

.img_box + .appearance.attention_list {
  margin-top: 28px;
}

@media only screen and (min-width: 981px) {
  .img_box figcaption {
    text-align: right;
    margin-bottom: -8px;
  }
}

/*
  比率の設定
  他にもパターンを加える場合は、同じ要領で追記してください。
*/
/*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_box,
.menu_trigger_box span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.menu_trigger_box {
  position: relative;
  width: 24px;
  height: 16px;
  margin: 0 3px;
  cursor: pointer;
}

.menu_trigger_box span {
  position: absolute;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: var(--c-dark-purple);
}

.menu_trigger_box span:nth-of-type(1) {
  top: 0;
}

.menu_trigger_box span:nth-of-type(2) {
  width: 66%;
  top: 7px;
}

.menu_trigger_box span:nth-of-type(3) {
  width: 33%;
  bottom: 0;
}

/* ハンバーガーアイコンのアニメーション調整は以下を調整する */
#hamburger:checked + .menu_trigger .menu_trigger_box span:nth-of-type(1) {
  -webkit-transform: translateY(7px) rotate(-30deg);
  transform: translateY(7px) rotate(-30deg);
}

#hamburger:checked + .menu_trigger .menu_trigger_box span:nth-of-type(2) {
  opacity: 0;
  width: 100%;
}

#hamburger:checked + .menu_trigger .menu_trigger_box span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(30deg);
  transform: translateY(-8px) rotate(30deg);
  width: 100%;
}

.menu_trigger_label {
  display: block;
  font-family: "Shippori Mincho", serif;
  color: var(--txt-color);
  font-size: 8px;
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  width: 30px;
  height: 12px;
}

.menu_trigger_label.open {
  display: none;
}

.menu_trigger_label.close {
  display: block;
}

#hamburger:checked + .menu_trigger .menu_trigger_label.open {
  display: block;
}

#hamburger:checked + .menu_trigger .menu_trigger_label.close {
  display: none;
}

/* 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%;
  box-sizing: border-box;
}

#header .img_box.logo {
  display: block;
  padding: 12px 4px 0 16px;
  width: 224px;
  transition: all 0.5s;
}

#header .nav_box {
  width: calc(100% - 224px);
  padding: 4px 16px 0px 4px;
  transition: all 0.5s;
}

#header .nav_box .menu_trigger {
  float: right;
  position: relative;
  z-index: 60;

  width: 38px;
  height: 44px;
  padding: 8px 0px 0px 8px;
}

.layout.menu_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu_list {
  display: none;
  list-style: none;
}

.layout.menu_list > li {
  max-width: 162px;
  margin: 0 auto 12px auto;
  line-height: 1;
}

.layout.menu_list li:nth-child(1) {
  order: 4;
}

.layout.menu_list li:nth-child(2) {
  order: 1;
}

.layout.menu_list li:nth-child(3) {
  order: 2;
}

.layout.menu_list li:nth-child(4) {
  order: 3;
}

.layout.menu_list li:nth-child(5) {
  order: 5;
  max-width: none;
}

.layout.menu_list li:nth-child(6) {
  order: 6;
  max-width: none;
}

.menu_list li.has_child {
  margin-top: 20px;
  margin-bottom: 32px;
}

.layout.menu_list li.menu_list_btn {
  margin-bottom: 16px;
}

.menu_list .has_child .menu_list_txt {
  display: inline-block;
  border-bottom: 1px solid rgba(110, 93, 110, 0.4);
  padding-bottom: 12px;
  width: 100%;
  margin: 0 auto 12px auto;
  font-family: "Shippori Mincho", serif;
  font-weight: var(--shippori-bold);
}

.menu_list a {
  line-height: 1;
  display: inline-block;
  font-weight: var(--noto-mid);
  text-decoration: none;
  font-size: 12px;
  font-size: 1.2rem;
  position: relative;
}

.menu_list.child {
  padding: 0;
}

.menu_list.child > li {
  margin-bottom: 12px;
}

.menu_list.child > li:last-child {
  margin-bottom: 0px;
}

.menu_list.child a {
  font-weight: var(--noto-mid);
  width: inherit;
}

.menu_list .sp_b_elem a.button {
  font-size: 12px;
  font-size: 1.2rem;
}

#hamburger + .menu_trigger + .menu_list {
  transition: all 0.5s;
  transform: translate(100vw);
  position: absolute;
  top: 0;
  right: 0px;
  /*少しずらすなら値を設定*/
  z-index: 50;
  display: flex;
  box-sizing: border-box;
  padding: calc(calc(50vh - 414px * 0.5) + 20px) calc(50vw - 272px * 0.5) calc(calc(50vh - 414px * 0.5) - 20px) calc(50vw - 272px * 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-white);
  background-image: url("../img/bg_dot.svg"), url("../img/section_sp_menu_bg.svg");
  background-repeat: repeat, no-repeat;
  background-size: auto, 100% 100%;
  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 {
    width: 320px;
    padding: 24px 16px 24px 32px;
  }

  #header .nav_box {
    width: calc(100% - 320px);
    padding: 0px 32px 0px 0px;
  }

  #header .nav_box .menu_trigger {
    display: none;
  }

  .layout.menu_list,
  #hamburger + .menu_trigger + .menu_list,
  #hamburger:checked + .menu_trigger + .menu_list {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    padding: 0;

    position: relative;
    background-color: transparent;
    height: auto;
    width: auto;

    overflow: visible;
  }

  #header #hamburger + .menu_trigger + .menu_list {
    opacity: 1;
    right: 0px;
    transform: translate(0);
  }

  .menu_list a {
    color: var(--txt-color);
    font-size: 14px;
    font-size: 1.4rem;
  }

  .layout.menu_list > li {
    margin: 0;
  }

  .menu_list li.has_child {
    margin-top: 0;
    margin-bottom: 0;
  }

  .menu_list li.has_child .menu_list_txt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: var(--noto-mid);
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .menu_list .has_child + li {
    padding: 15px 0;
  }

  .layout.has_child .menu_list_txt {
    width: auto;
  }

  .layout.menu_list li:nth-child(1) {
    order: 1;
  }

  .layout.menu_list li:nth-child(2) {
    order: 2;
  }

  .layout.menu_list li:nth-child(3) {
    order: 3;
  }

  .layout.menu_list li:nth-child(4) {
    order: 4;
  }

  .layout.menu_list li:nth-child(5) {
    order: 5;
  }

  .layout.menu_list li:nth-child(6) {
    order: 6;
  }

  .layout.menu_list > li .icon_link_txt {
    padding-right: 0;
  }

  .layout.menu_list > li .icon_link_txt::after {
    display: none;
  }

  .layout.menu_list > li.has_child .icon_link_txt {
    padding: 10px 15px 10px 0;
  }

  .layout.menu_list > li.has_child .icon_link_txt::after {
    display: block;
  }

  .menu_list a.button {
    padding: 16px 16px 16px 24px;
  }

  #header .layout.menu_list > li {
    width: auto;
    display: inline-block;
    margin-right: 16px;
    position: relative;
    padding: 15px 0;
    line-height: 1;
  }

  #header .layout.menu_list > li.menu_list_btn {
    margin-right: 0;
    margin-bottom: 0;
  }

  #header .layout.menu_list > li:last-child {
    margin-right: 0;
    line-height: 0;
  }

  #header .menu_list.child {
    display: block;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
    width: auto;
    min-width: 230px;
    box-sizing: border-box;
    top: 50px;
    padding: 15px 30px;
    background-color: var(--c-white);
    border-radius: var(--thema-sub-r);
  }

  #header .menu_list.child > li {
    margin-bottom: 0px;
  }

  #header .menu_list.child a {
    color: var(--txt-color-white);
    font-weight: var(--noto-mid);
  }

  #header .menu_list > li:hover > .menu_list.child {
    visibility: visible;
    opacity: 1;
    animation: bounceScaleUp02 1s ease-in-out forwards;

    -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
    -moz-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
    -ms-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
    transform: translateZ(0px);
  }
}

@media only screen and (min-width: 1080px) {
  #header .layout.menu_list > li {
    margin-right: 32px;
  }
}

/* ---------------------------------
  footer style
  ---------------------------------*/
.icon_link_txt {
  position: relative;
  display: inline-block;
  padding-right: 18px;
  text-decoration: none;
}

.icon_link_txt::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 7px);
  display: block;
  width: 14px;
  height: 14px;
  background-image: url("../img/icon_arrow.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.icon_link_txt:hover {
  text-decoration: underline;
}

#footer .bg_box {
  background-image: url("../img/bg_dot.svg"), url("../img/section_footer_bg.svg");
  background-repeat: repeat, no-repeat;
  background-size: auto, 100% 100%;
  padding-top: 390px;
}

#footer .footer_cta {
  background-image: url("../img/section_cv_bg.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 50px 36px 70px 36px;
  position: relative;
  z-index: 2;
  max-width: 342px;
  margin: 0 auto -320px auto;
}

#footer .footer_cta > .img_box {
  width: calc(100% - 66px);
  margin: 0 auto 24px auto;
}

#footer .footer_cta > .contents_box .title {
  font-family: "Shippori Mincho", serif;
  font-weight: var(--shippori-mid);
  line-height: 1.5;
  font-size: 22px;
  font-size: 2.2rem;
  margin: 0 0 24px 0;
}

#footer .footer_cta > .contents_box p {
  margin: 0 0 40px 0;
}

#footer .footer_cta > .contents_box .button {
  width: 100%;
}

#footer .back_top {
  width: 96px;
  height: 18px;
  position: relative;
  margin: 0 auto 50px auto;
}

#footer .back_top .back_top_link {
  position: absolute;
  top: 0px;

  display: block;
  transition: 0.3s;
}

#footer .back_top .back_top_link:hover {
  top: -8px;
}

#footer .logo_box {
  width: 300px;
  margin: 0 auto 75px auto;
  text-align: center;
}

#footer .logo_box a {
  display: block;
  margin: 0 0 18px 0;
}

#footer .logo_box .dl_sub_txt {
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0 auto;
}

#footer .logo_box .dl_sub_txt dt {
  float: left;
  clear: left;
}

#footer .logo_box .dl_sub_txt dt::after {
  content: ":";
  padding: 0 5px;
}

#footer .logo_box .dl_sub_txt dd {
  margin-left: 0;
  padding-left: 45px;
  text-align: left;
}

#footer .footer_contents {
  max-width: 272px;
  margin: 0 auto;
}

#footer .footer_nav {
  margin: 0 auto;
  padding: 0;

  list-style: none;
}

#footer .footer_nav.child {
  max-width: 162px;
  margin: 0 auto 38px auto;
}

#footer .footer_nav li a {
  font-size: 12px;
  font-size: 1.2rem;
}

#footer .footer_nav li span.footer_nav_title {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "Shippori Mincho", serif;
  font-weight: var(--shippori-bold);

  border-bottom: 1px solid rgba(110, 93, 110, 0.4);
  padding-bottom: 12px;
  max-width: 162px;
  margin: 0 auto 12px auto;
}

#footer .copyright {
  padding: 20px 0;
  text-align: center;
}

#footer .layout.copyright_link {
  width: 100%;
}

#footer .layout.copyright_link > li {
  list-style: none;
}

#footer .copyright .icon_link_txt {
  font-size: 10px;
  font-size: 1rem;
  transition: 0.3s;
}

#footer .copyright .copyright_txt {
  font-family: "Shippori Mincho", serif;
  color: var(--txt-color-second);
  font-size: 10px;
  font-size: 1rem;
  font-weight: var(--shippori-bold);
  letter-spacing: normal;
  margin: 0;
}

@media only screen and (min-width: 981px) {
  #footer .bg_box {
    padding-top: 340px;
  }

  #footer .footer_cta > .img_box {
    margin: 0 auto;
  }

  #footer .footer_cta > .contents_box .title {
    font-size: 22px;
    font-size: 2.2rem;
  }

  #footer .layout.footer_cta {
    background-image: url("../img/section_cv_bg-pc.svg");
    max-width: 960px;
    margin: 0 auto;
    margin-bottom: -290px;
    padding: 90px 160px 90px 140px;
  }

  #footer .layout.footer_cta .img_box {
    width: 260px;
  }

  #footer .layout.footer_cta .contents_box {
    width: calc(100% - 260px);
    padding-left: 40px;
  }

  #footer .footer_contents {
    max-width: 1122px;
  }

  #footer .footer_nav_box {
    width: 100%;
    max-width: calc(100% - 368px);
    border-top: none;

    padding: 20px 0 0 0;
  }

  #footer .layout.footer_nav {
    height: 200px;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  #footer .layout.footer_nav > li {
    width: calc(100% - 191px - 284px);
  }

  #footer .layout.footer_nav > li:first-child {
    max-width: 191px;
    margin-right: 80px;
  }

  #footer .layout.disease_list {
    max-width: 467px;
  }

  #footer .footer_nav li.layout.disease_list span.footer_nav_title {
    display: block;
    font-size: 14px;
    font-size: 1.4rem;

    border-bottom: none;
    padding-bottom: 0;
    max-width: 82px;
    margin: 0 32px 0 0;
  }

  #footer .footer_nav li a {
    font-size: 14px;
    font-size: 1.4rem;
  }

  #footer .footer_nav li .footer_nav.child {
    margin: 0;
    max-width: 100%;
  }

  #footer .footer_nav li .footer_nav.child li {
    margin-bottom: 4px;
  }

  #footer .footer_nav li .footer_nav.child li:last-child {
    margin-bottom: 0;
  }

  #footer .footer_nav li.layout.disease_list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  #footer .footer_nav li.layout.disease_list .footer_nav.child {
    max-width: calc(100% - 82px - 32px);
    height: 128px;
    border-left: solid 1px var(--border-color);
    margin: 0;
    padding: 0 0 0 32px;

    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  #footer .footer_nav li.layout.disease_list .footer_nav.child li {
    width: auto;
    max-width: 175px;
  }

  #footer .footer_nav li.layout.disease_list .footer_nav.child li:nth-child(4n) {
    margin-bottom: 0;
  }

  #footer .copyright {
    width: calc(100% - 80px);
    margin: 0 auto;
  }

  #footer .copyright .layout.one_half {
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  #footer .layout.copyright_link {
    margin: 0;
    justify-content: flex-end;
    width: auto;
  }

  #footer .layout.copyright_link > li {
    width: auto;
    margin-left: 30px;
  }

  #footer .copyright .link_txt {
    text-align: left;
    margin: 0;
  }

  #footer .copyright .copyright_txt {
    text-align: left;
  }
}

/* ---------------------------------
  breadcrumb style
  ---------------------------------*/
.breadcrumb_box {
  line-height: 1;
  text-align: left;
  font-size: 12px;
  font-size: 1.2rem;
}

.breadcrumb_box .breadcrumbs {
  min-height: 16px;
  white-space: nowrap;
  overflow-x: auto;
}

.breadcrumb_box .breadcrumbs a {
  position: relative;
  padding-right: 20px;
  margin-right: 10px;
  text-decoration: none;
}

.breadcrumb_box .breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumb_box .breadcrumbs a::after {
  position: absolute;
  right: 0;
  content: "/";
  display: inline-block;
}

.breadcrumb_box .breadcrumbs .current_item {
  color: var(--txt-color-second);
}

.breadcrumb_box + section {
  margin-top: 30px;
}

.breadcrumb_box + section.section_bgw {
  margin-top: calc(100px + 20px);
}

@media only screen and (min-width: 981px) {
  .breadcrumb_box {
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 0;
  }

  .breadcrumb_box .breadcrumbs a {
    padding-right: 20px;
    margin-right: 10px;
  }

  .breadcrumb_box + section {
    margin-top: 60px;
  }

  .breadcrumb_box + section.section_bgw {
    margin-top: calc(187px + 60px);
  }
}

/* ---------------------------------
  section title style
  ---------------------------------*/
.section_title {
  font-family: "Shippori Mincho", serif;
  color: var(--txt-color);
  text-align: left;
  margin-bottom: 32px;
}

.section_title .sub_txt {
  display: inline-block;
  line-height: 1;
  font-size: 10px;
  font-size: 1rem;
  font-family: "Shippori Mincho", serif;
  font-weight: var(--shippori-exbold);
  margin-bottom: 16px;
  padding: 0 16px;
  letter-spacing: normal;
  position: relative;
}

.section_title .sub_txt::before,
.section_title .sub_txt::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: solid 1px var(--txt-color);
  margin: 0 2px;

  position: absolute;
  top: calc(50% - 3px);
}

.section_title .sub_txt::before {
  left: 0;
}

.section_title .sub_txt::after {
  right: 0;
}

.section_title .main_txt {
  display: block;
  line-height: 1.5;
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: var(--shippori-mid);
}

.section_title > * {
  margin: 0;
  line-height: 1;
}

@media only screen and (min-width: 981px) {
  .section_title .sub_txt {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 0 26px;
  }

  .section_title .sub_txt::before,
  .section_title .sub_txt::after {
    margin: 0 4px;
  }

  .section_title .main_txt {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.title_with_img {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: var(--noto-mid);
  line-height: 1.5;
  min-height: 50px;
  margin: 0 0 16px 0;

  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.title_with_img > img {
  display: block;
  line-height: 1;
  width: 57px;
  height: auto;
}

.title_with_img > .title_txt {
  display: block;
  width: calc(100% - 73px);
}

@media only screen and (min-width: 981px) {
  .title_with_img {
    font-size: 18px;
    font-size: 1.8rem;
    margin: 0 0 40px 0;
  }
}

/* ---------------------------------
  section style
  ---------------------------------*/
main {
  overflow-x: hidden;
  overflow-y: hidden;
  min-width: 375px;
}

main.no_mt {
  margin-top: 0;
}

main.no_mb {
  margin-bottom: 0;
}

@media only screen and (min-width: 981px) {
  main {
  }
}

section {
  margin-top: 80px;
  margin-bottom: 100px;
}

@media only screen and (min-width: 981px) {
  section {
    margin-top: 170px;
    margin-bottom: 200px;
  }
}

.main_contents_block {
  background-color: var(--c-white);
  border-radius: var(--thema-r);
  padding: 60px 0;
}

.main_contents_block .wrapper > section {
  border-bottom: solid 1px var(--border-color);
  padding: 80px 0;
}

.main_contents_block .wrapper > section:first-child {
  padding-top: 0;
}

.main_contents_block .wrapper > section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.main_contents_block .wrapper section .section_contents .contents_box {
  margin-bottom: 80px;
}

.main_contents_block .wrapper section .section_contents .contents_box:last-child {
  margin-bottom: 0;
}

.main_contents_block .wrapper section .section_contents .contents_box > *:first-child {
  margin-top: 0;
}

.main_contents_block .wrapper section .section_contents .contents_box > *:last-child {
  margin-bottom: 0;
}

.main_contents_block .wrapper section .section_contents .layout.two_column {
  margin-bottom: 40px;
}

.main_contents_block .wrapper section .section_contents .layout.two_column .contents_box {
  margin-bottom: 0px;
}

@media only screen and (min-width: 981px) {
  .main_contents_block {
    padding: 80px 0;
  }

  .main_contents_block .wrapper > section {
    padding: 100px 0;
  }

  .main_contents_block .wrapper section .section_contents .contents_box {
    margin-bottom: 100px;
  }

  .main_contents_block .wrapper section .section_contents .layout.two_column .contents_box {
    margin-bottom: 100px;
  }
}

/**/
@media only screen and (min-width: 981px) {
  .layout.section_consultation {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    max-width: 676px;
  }

  .layout.section_consultation .section_title {
    margin: 0 40px 0 0;
    width: 196px;
  }

  .layout.section_consultation .section_contents {
    width: calc(100% - 236px);
    border-top: none;
    padding: 0 0 0 40px;
  }

  .layout.section_consultation .section_contents p {
    margin-top: 0;
  }
}

/**/
section.section_bgw {
  background-color: var(--c-white);
  position: relative;
  margin-top: calc(100px + 80px);
  margin-bottom: calc(94px + 100px);
}

section.section_bgw::before {
  display: block;
  content: "";
  height: 100px;
  width: 100%;
  background-image: url(../img/bg_dot.svg), url("../img/section_before_bg-sp.svg");
  background-repeat: repeat, no-repeat;
  background-position: left top, center;
  background-size: auto, 100% 100%;
  position: absolute;
  top: -100px;
  z-index: -1;
}

section.section_bgw::after {
  display: block;
  content: "";
  height: 94px;
  width: 100%;
  background-image: url(../img/bg_dot.svg), url("../img/section_after_bg-sp.svg");
  background-repeat: repeat, no-repeat;
  background-position: left top, center;
  background-size: auto, 100% 100%;
  position: absolute;
  bottom: -94px;
  z-index: -1;
}

section.section_bgw > .wrapper::before {
  content: "";
  display: block;
  background-image: url("../img/section_before_bg_deco.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 25px;
  height: 27px;
  position: absolute;
  left: 29%;
  top: -103px;
}

section.section_bgw > .wrapper::after {
  content: "";
  display: block;
  background-image: url("../img/section_after_bg_deco2.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 25px;
  height: 27px;
  position: absolute;
  right: 5%;
  bottom: -103px;
}

@media only screen and (min-width: 981px) {
  section.section_bgw {
    margin-top: calc(187px + 170px);
    margin-bottom: calc(212px + 200px);
  }

  section.section_bgw::before {
    height: 187px;
    background-image: url(../img/bg_dot.svg), url("../img/section_before_bg.svg");
    position: absolute;
    top: -187px;
  }

  section.section_bgw::after {
    height: 212px;
    background-image: url(../img/bg_dot.svg), url("../img/section_after_bg.svg");
    bottom: -212px;
  }

  section.section_bgw > .wrapper::before {
    width: 31px;
    height: 33px;
    left: 46%;
    top: -183px;
  }

  section.section_bgw > .wrapper::after {
    width: 29px;
    height: 26px;
    right: 35%;
    bottom: -153px;
  }
}

/* ---------------------------------
  section_qa style
  ---------------------------------*/
.section_qa.layout .section_title {
  margin: 0 0 32px 0;
}

.section_qa.layout .section_contents {
  border-top: 1px solid rgba(110, 93, 110, 0.4);
  padding: 32px 0 0 0;
}

@media only screen and (min-width: 981px) {
  .section_qa.layout {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .section_qa.layout .section_title {
    margin: 0 50px 0 0;
    width: 163px;
  }

  .section_qa.layout .section_contents {
    width: calc(100% - 213px);
    border-top: none;
    border-left: 1px solid rgba(110, 93, 110, 0.4);
    padding: 0 0 0 50px;
  }
}

/* ---------------------------------
  section_comic style
  ---------------------------------*/
.section_comic.layout .section_title {
  margin: 0 0 32px 0;
}

.section_comic.layout .section_contents {
  border-top: 1px solid rgba(110, 93, 110, 0.4);
  padding: 32px 0 0 0;
}

@media only screen and (min-width: 981px) {
  .section_comic.layout {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .section_comic.layout .section_title {
    margin: 0 50px 0 0;
    width: 196px;
  }

  .section_comic.layout .section_contents {
    width: calc(100% - 246px);
    border-top: none;
    border-left: 1px solid rgba(110, 93, 110, 0.4);
    padding: 0 0 0 50px;
  }
}

.layout.comic_info .img_box {
  width: calc(100% - 140px);
  margin: 0 auto 30px auto;
}

.layout.comic_info .comic_info_box .title {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: var(--noto-mid);
  line-height: 1.5;
  margin: 0 0 8px 0;
}

.layout.comic_info .comic_info_box .author {
  font-size: 10px;
  font-size: 1rem;
  color: var(--txt-color-second);
  margin: 0 0 16px 0;
}

.layout.comic_info .comic_info_box .description {
  margin: 0 0 40px 0;
}

.layout.comic_info .comic_info_box .button {
  width: 100%;
}

@media only screen and (min-width: 981px) {
  .layout.comic_info {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .layout.comic_info .img_box {
    width: 200px;
    margin: 0;
  }

  .layout.comic_info .comic_info_box {
    width: calc(100% - 230px);
  }

  .layout.comic_info .comic_info_box .title {
    font-size: 22px;
    font-size: 2.2rem;
  }

  .layout.comic_info .comic_info_box .author {
    font-size: 14px;
    font-size: 1.4rem;
    margin: 0 0 24px 0;
  }
}

/* ---------------------------------
  section_cta style
  ---------------------------------*/
section.section_cta {
  background-image: url("../img/section_cv_bg.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 50px 36px 70px 36px;
}

section.section_cta > .img_box {
  width: calc(100% - 66px);
  margin: 0 auto 24px auto;
}

section.section_cta > .contents_box .title {
  font-family: "Shippori Mincho", serif;
  font-weight: var(--shippori-mid);
  line-height: 1.5;
  font-size: 18px;
  font-size: 1.8rem;
  margin: 0 0 40px 0;
}

section.section_cta > .contents_box .button {
  width: 100%;
}

.layout.section_cta {
  max-width: 342px;
  margin: 0 auto;
}

@media only screen and (min-width: 981px) {
  section.section_cta {
    background-image: url("../img/section_cv_bg-pc.svg");
  }

  section.section_cta > .img_box {
    margin: 0 auto;
  }

  section.section_cta > .contents_box .title {
    font-size: 22px;
    font-size: 2.2rem;
  }

  .layout.section_cta {
    max-width: 960px;
    margin: 0 auto;
    padding: 90px 130px;
  }

  .layout.section_cta .img_box {
    width: 260px;
  }

  .layout.section_cta .contents_box {
    width: calc(100% - 260px);
    padding-left: 40px;
  }
}

/* ---------------------------------
  section_medicine_link style
  ---------------------------------*/
section.section_medicine_link {
  background-image: url("../img/section_medicine_bg.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 60px 36px;
  margin-top: -40px;
}

section.section_medicine_link > * {
  max-width: 370px;
  margin-left: auto;
  margin-right: auto;
}

section.section_medicine_link .button {
  width: 100%;
}

@media only screen and (min-width: 981px) {
  section.section_medicine_link {
    background-image: url("../img/section_medicine_bg-pc.svg");
    max-width: 960px;
    margin: -150px auto 0 auto;
  }

  section.section_medicine_link > * {
    width: 100%;
    max-width: 370px;
  }

  section.section_medicine_link .button {
    width: 100%;
  }
}

/* ---------------------------------
  section_img_list style
  ---------------------------------*/
.section_img_list_bg {
  background-image: url("../img/bg_dot.svg"), url("../img/section_img_list_bg.svg");
  background-size: auto, 100% calc(100% - 100px);
  background-repeat: repeat, no-repeat;
  background-position: top left, top 100px left;
  padding-bottom: 100px;
}

@media only screen and (min-width: 981px) {
  .section_img_list_bg {
    padding-top: 50px;
    padding-bottom: 0;
    background-image: url("../img/bg_dot.svg"), url("../img/section_img_list_bg-pc.svg");
    background-size: auto, 100% 100%;
    background-position: top left, top left;
  }
}

/* ---------------------------------
  section_one_point_bg style
  ---------------------------------*/
.section_one_point_bg {
  background-image: url("../img/bg_dot.svg"), url("../img/section_one_point_bg.svg");
  background-size: auto, 628px auto;
  background-repeat: repeat, no-repeat;
  background-position: left, -314px 0px;
  padding-top: 50px;
}

@media only screen and (min-width: 981px) {
  .section_one_point_bg {
    background-image: url("../img/bg_dot.svg"), url("../img/section_one_point_bg.svg");
    background-size: auto, 628px auto;
    background-position: left, calc(50% - 314px) 0px;
  }
}

/* ---------------------------------
  page_header style
  ---------------------------------*/
#page_header {
  position: relative;
  margin: 0;
  padding: 90px 0 83px 0;
  background-image: url(../img/bg_dot.svg), url("../img/section_page_header_bg-sp.svg");
  background-size: auto, 100% 100%;
  background-repeat: repeat, no-repeat;
}

#page_header::after {
  content: "";
  display: block;
  background-image: url(../img/section_page_header_bg_deco-sp.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 56px;
  height: 69px;
  position: absolute;
  right: 1%;
  bottom: -79px;
}

#page_header .section_title {
  margin-bottom: 0;
  min-height: 63px;
}

#page_header .section_title .main_txt {
  font-size: 26px;
  font-size: 2.6rem;
  max-width: 540px;
}

#page_header .section_title p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: var(--noto-mid);
  font-size: 12px;
  font-size: 1.2rem;
  margin-top: 12px;
}

@media only screen and (min-width: 981px) {
  #page_header {
    margin: 0 0 40px 0;
    padding: 130px 0 100px 0;
    background-image: url(../img/bg_dot.svg), url("../img/section_page_header_bg.svg");
  }

  #page_header::after {
    background-image: url(../img/section_page_header_bg_deco.svg);
    width: 109px;
    height: 73px;
    position: absolute;
    right: 1%;
    bottom: 10px;
  }

  #page_header .section_title {
    min-height: 84px;
  }

  #page_header .section_title .main_txt {
    font-size: 36px;
    font-size: 3.6rem;
    max-width: none;
  }

  #page_header .section_title p {
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 16px;
  }
}

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

em {
  font-style: normal;
  font-weight: var(--noto-bold);
}

.recommended_text {
  font-weight: var(--noto-mid);
  font-size: 14px;
  font-size: 1.4rem;
}

@media only screen and (min-width: 981px) {
  .recommended_text {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

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

a {
  color: var(--txt-color);
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

a > img {
  transition: 0.3s;
}

a:hover > img {
  opacity: 0.8;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

/* ---------------------------------
  youtube style
  ---------------------------------*/
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

/* ---------------------------------
  page style
  ---------------------------------*/
.bubble-deco {
  position: relative;
}

.bubble-deco::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

.bubble-deco.addbf::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

.line-deco {
  content: "";
  display: block;
  background-image: url("../img/section_front_line_bg.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: inherit;
  position: absolute;
  top: 0;
  right: 0;
}

/*フロントページ*/

.front_page #key {
  height: 100svh;
  min-height: 600px;
  margin: 0;

  background-image: url("../img/bg_dot.svg"), url("../img/section_front_key_bg.svg");
  background-repeat: repeat, no-repeat;
  background-size: auto, 100% 100%;
}

.front_page #key.bubble-deco {
  position: relative;
}

.front_page #key.bubble-deco::after {
  background-image: url("../img/section_front_key_deco.svg");
  width: 99px;
  height: 108px;
  right: 25px;
  bottom: -80px;
  z-index: 10;
}

.front_page #key .wrapper {
  height: inherit;
}

.front_page #key .layout.key_layout {
  align-content: space-between;
  position: relative;
  height: inherit;
}

.front_page #key .section_title {
  position: relative;
  top: 11%;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  width: 100%;
  min-height: 272px;
  z-index: 8;
}

.front_page #key .section_title h1 {
  position: absolute;
  left: 0;
}

.front_page #key .section_title h1 .main_txt {
  font-size: 26px;
  font-size: 2.6rem;
  font-size: calc(26 * 100vw / 375);
  white-space: nowrap;
}

.front_page #key .section_title h1 .main_txt_line2 {
  text-indent: 1.5em;
}

.front_page #key .section_title h1 .main_txt_line3 {
  text-indent: 3em;
}

.front_page #key .section_title p {
  position: absolute;
  right: 0px;
  top: 16px;
}

.front_page #key .section_title p .p_txt {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: var(--noto-mid);
  color: var(--txt-color-second);
  line-height: 1.5;
  font-size: calc(14 * 100vw / 375);
  white-space: nowrap;
}

.front_page #key .section_title p .p_txt_line2 {
  text-indent: 1em;
}

.front_page #key .section_contents.layout {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;

  position: relative;
  bottom: 0;
}

.front_page #key .img_box {
  position: absolute;
  left: calc(50% - calc(269 * 100vw / 375));
  top: calc(50% - calc(159 * 100vw / 375));
  width: calc(538 * 100vw / 375); /*538px;*/
  height: auto;
  z-index: 7;
}

.front_page #key .section_contents .scroll_box {
  width: 32px;
  position: relative;
  z-index: 7;
}

.front_page #key .section_contents .btn_box {
  width: 254px;
  padding-bottom: 40px;
  position: relative;
  z-index: 8;
}

.front_page #key .section_contents .btn_box .button {
  font-size: 12px;
  font-size: 1.2rem;
}

.front_page #key .section_contents .scroll {
  display: block;
  width: 220px;
  font-size: 10px;
  font-size: 1rem;
  color: var(--txt-color-purple);
  padding: 0 5px 11px 60px;
  margin: 0;
  border-bottom: 1px solid rgba(110, 93, 110, 0.4);
  position: relative;
  bottom: -90px;
  transform-origin: top left;
  transform: rotate(-90deg);
}

.front_page #key .section_contents .scroll::after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: var(--c-lite-purple);
  position: absolute;
  z-index: -1;
  bottom: -6px;
  animation: move 3000ms ease infinite;
}

@keyframes move {
  0% {
    opacity: 0;
    right: 0;
  }

  30% {
    opacity: 0.8;
    right: 3%;
  }

  70% {
    opacity: 0.8;
    right: calc(97% - 11px);
  }

  100% {
    opacity: 0;
    right: calc(100% - 11px);
  }
}

@media only screen and (min-width: 578px) {
  .front_page #key .section_title {
    top: 11%;
    max-width: 780px;
  }

  .front_page #key .section_title h1 .main_txt {
    font-size: 40px;
  }

  .front_page #key .section_title p .p_txt {
    font-size: 21px;
  }

  .front_page #key .img_box {
    left: calc(50% - calc(1200 * 100vw / 980 / 2));
    top: calc(50% - calc(948 * 100vw / 980 / 2));
    width: 784px;
    width: calc(1200 * 100vw / 980);
    height: auto;
  }

  .front_page #key .section_contents .btn_box {
    position: relative;
    top: -150px;
    right: calc(10 * 100vw / 375);
  }
}

@media only screen and (min-width: 981px) {
  .front_page #key {
    background-image: url("../img/bg_dot.svg"), url("../img/section_front_key_bg-pc.svg");

    height: 886px;
    padding-bottom: 118px;
  }

  .front_page #key.bubble-deco::after {
    right: 25%;
    bottom: 0px;
    z-index: 10;
  }

  .front_page #key .wrapper {
    width: calc(100% - 32px);
    max-width: 1600px;
  }

  .front_page #key .layout.key_layout {
    width: calc(100% - 32px);
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-bottom: 120px;
  }

  .front_page #key .section_title {
    position: relative;
    top: calc(50% - 220px);
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    width: 257px;
    height: 457px;
    min-height: none;
    background-image: url("../img/section_front_key_title_bg-pc.svg");
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding: 76px 50px 0 50px;
  }

  .front_page #key .section_title h1 {
    position: relative;
    left: 0;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin-bottom: 40px;
  }

  .front_page #key .section_title h1 .main_txt {
    font-size: 34px;
    font-size: 3.4rem;
    letter-spacing: 0.8rem;
  }

  .front_page #key .section_title h1 .main_txt_line2 {
    text-indent: 0.7em;
    letter-spacing: 0.8rem;
  }

  .front_page #key .section_title h1 .main_txt_line3 {
    text-indent: 1em;
    letter-spacing: 0.6rem;
  }

  .front_page #key .section_title h1 .main_txt .small_txt {
    font-size: 72%;
  }

  .front_page #key .section_title p {
    position: relative;
    right: 0px;
    top: 16px;
  }

  .front_page #key .section_title p .p_txt {
    display: block;
    font-size: 12px;
    font-size: 1.2rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: var(--noto-mid);
    color: var(--txt-color);
    line-height: 1.5;
  }

  .front_page #key .section_title p .p_txt_line2 {
    text-indent: 0;
  }

  .front_page #key .img_box {
    left: auto;
    right: 0;
    top: calc(50% - calc(620px / 2) - 50px);

    width: 784px;
  }

  .front_page #key .section_contents .scroll_box {
    position: relative;
    left: 0;
    bottom: 10px;
  }

  .front_page #key .section_contents .btn_box {
    width: 284px;
    padding-bottom: 60px;
    top: 0;
    right: 0;
  }

  .front_page #key .section_contents .btn_box .button {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media only screen and (min-width: 1080px) {
  .front_page #key .section_title {
    left: 110px;
  }

  .front_page #key .img_box {
    right: 30px;
  }
}

@media only screen and (min-width: 1200px) {
  .front_page #key {
    height: calc(886 * 100vw / 1366);
  }

  .front_page #key .img_box {
    width: calc(784 * 100vw / 1366);
    max-width: 1020px;
    top: calc(50% - calc(620 * 100vw / 1366 / 2) - 50px);
  }
}

@media only screen and (min-width: 1400px) {
  .front_page #key .section_title {
    left: 130px;
  }

  .front_page #key .img_box {
    right: 60px;
  }
}

@media only screen and (min-width: 1600px) {
  .front_page #key {
    height: 1080px;
  }

  .front_page #key .img_box {
    top: calc(50% - calc(789px / 2) - 50px);
  }

  .front_page #key .section_contents .btn_box {
    top: -30px;
  }
}

.front_page section#introduction {
  margin-top: 20px;
}
.front_page #introduction.section_one_point_bg {
  background-image: none;
}

.front_page #introduction .section_title {
  width: 562px;
  background-image: url("../img/bg_dot.svg"), url("../img/section_one_point_bg.svg");
  background-repeat: repeat, no-repeat;
  background-size: auto, 100% 100%;
  padding: 100px 10px 180px 280px;
  margin-left: -280px;
  margin-bottom: 0;
}

.front_page #introduction .section_title h2 {
  position: relative;
  z-index: 6;
}

.front_page #introduction .section_contents {
  background-image: url("../img/section_front_intro_bg.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 70px 16px 140px 16px;
  margin-left: -16px;
  margin-right: -16px;
  margin-top: -140px;
}

.front_page #introduction .section_contents.bubble-deco::after {
  background-image: url("../img/section_front_intro_deco.svg");
  width: 100px;
  height: 89px;
  left: -30px;
  bottom: 40px;
}

.front_page #introduction .section_contents .title {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: var(--noto-mid);
  line-height: 1.5;
  margin: 0 0 32px 0;
  position: relative;
  z-index: 6;
}

.front_page #introduction .section_contents p {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: var(--noto-regular);
  margin: 0 0 40px 0;
  position: relative;
  z-index: 6;
}

.front_page #introduction .section_contents .btn_box {
  list-style: none;
  position: relative;
  z-index: 6;
}

.front_page #introduction .section_contents .btn_box > li:first-child {
  padding: 0 0 15px 0;
}

.front_page #introduction .img_line_deco {
  position: relative;
}

.front_page #introduction .img_line_deco::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(-50px - 170px - 180px);

  background-image: url("../img/section_front_line_bg1-sp.svg");
  background-size: 100% 100%;
  width: 100%;
  height: calc(100% + 170px + 230px + 20px);
  z-index: 6;
}

@media only screen and (min-width: 981px) {
  .front_page section#introduction.section_one_point_bg {
    margin-top: 0px;
    padding-top: 0px;
  }

  .front_page #introduction .front_introduction {
    position: relative;
  }

  .front_page #introduction .section_title {
    width: 510px;
    padding: 95px 105px 135px 75px;

    margin-left: 0;
    margin-bottom: 0;
    position: absolute;
    left: -110px;
    z-index: 5;
  }

  .front_page #introduction .section_contents {
    background-image: url("../img/section_front_intro_bg-pc.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 130px 130px 120px 290px;
    max-width: 1003px;
    margin-left: 150px;
    margin-right: -150px;
    margin-top: 0;
  }

  .front_page #introduction .section_contents.bubble-deco::after {
    left: 0px;
    bottom: 100px;
  }

  .front_page #introduction .section_contents .title {
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: var(--noto-mid);
    line-height: 1.5;
  }

  .front_page #introduction .section_contents p {
    margin-bottom: 40px;
  }

  .front_page #introduction .section_contents .btn_box {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-right: -15px;
    margin-left: -15px;
  }

  .front_page #introduction .section_contents .btn_box > li {
    padding: 0 15px;
  }

  .front_page #introduction .img_line_deco::before {
    top: calc(-50px - 170px - 230px);
    background-image: url("../img/section_front_line_bg1.svg");
    height: calc(100% + 170px + 230px + 10px);
    z-index: 6;
  }
}

.front_page #matter {
  padding-top: 150px;
  padding-bottom: 240px;
}

.front_page #matter .wrapper .wrapper {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.front_page #matter .section_title {
  width: 379px;
  background-image: url("../img/section_front_matter_title_bg.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 75px 60px 80px 85px;

  margin-top: -150px;
  margin-left: -70px;
  margin-bottom: 0px;
}

.front_page #matter .section_title.bubble-deco::after {
  background-image: url("../img/section_front_matter_deco.svg");
  width: 94px;
  height: 66px;
  right: 0;
  top: 30px;
}

.front_page #matter .section_title h2 {
  position: relative;
  z-index: 6;
}

.front_page #matter .section_title p {
  margin-top: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: var(--noto-mid);
  color: var(--txt-color-second);
  line-height: 2;
  position: relative;
  z-index: 6;
}

.front_page #matter .section_contents {
  margin-top: 20px;
  margin-bottom: -240px;
}

.front_page #matter .section_contents .appearance.img_list {
  position: relative;
  z-index: 6;
}

.front_page #matter .img_line_deco {
  position: relative;
}

.front_page #matter .img_line_deco::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(-150px - 80px);

  background-image: url("../img/section_front_line_bg2-sp.svg");
  background-size: 100% 100%;
  width: 100%;
  height: calc(100% + 230px + 240px + 100px + 20px);
  z-index: 6;
}

@media only screen and (min-width: 981px) {
  .front_page #matter {
    padding-top: 40px;
    padding-bottom: 240px;
  }

  .front_page #matter .section_title {
    width: 450px;
    background-image: url("../img/section_front_matter_title_bg.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 125px 90px 100px 65px;

    margin-top: -130px;
    margin-left: -110px;
    margin-bottom: 0px;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 5;
  }

  .front_page #matter .section_title.bubble-deco.addbf::before {
    background-image: url(../img/section_front_matter_deco2.svg);
    width: 18px;
    height: 18px;
    right: 100px;
    bottom: -41px;
  }

  .front_page #matter .section_contents {
    margin-top: -70px;
    margin-right: -30px;
    margin-left: 30px;
  }

  .front_page #matter .img_line_deco::before {
    top: calc(-180px - 150px);
    background-image: url("../img/section_front_line_bg2.svg");
    height: calc(100% + 360px + 280px);
    z-index: 6;
  }
}

.front_page #knowledge.section_knowledge_bg {
  background-image: url("../img/bg_dot.svg"), url("../img/section_front_knowledge_bg.svg");
  background-repeat: repeat, no-repeat;
  background-size: auto, 100% 100%;
  padding: 100px 0 80px 0;
}

.front_page #knowledge.section_knowledge_bg.bubble-deco.addbf::before {
  background-image: url("../img/section_front_knowledge_deco1.svg");
  width: 29px;
  height: 29px;
  right: 40px;
  top: 70px;
}

.front_page #knowledge.section_knowledge_bg.bubble-deco.addbf::after {
  background-image: url("../img/section_front_knowledge_deco2.svg");
  width: 97px;
  height: 77px;
  right: 20px;
  bottom: -50px;
}

.front_page #knowledge .section_title h2 {
  position: relative;
  z-index: 6;
}

.front_page #knowledge .section_contents .knowledge_item {
  max-width: 483px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 70px 60px 50px 60px;
  position: relative;
  z-index: 6;
}

.front_page #knowledge .section_contents .knowledge_item.item_1 {
  background-image: url("../img/section_front_knowledge_list_bg_1.svg");
  margin-bottom: 60px;
}

.front_page #knowledge .section_contents .knowledge_item.item_2 {
  background-image: url("../img/section_front_knowledge_list_bg_2.svg");
  background-repeat: no-repeat;
}

.front_page #knowledge .section_contents .knowledge_item .title {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: var(--noto-mid);
  line-height: 1.5;
  margin-bottom: 24px;

  position: relative;
  padding: 10px 0 10px 85px;
  display: block;
}

.front_page #knowledge .section_contents .knowledge_item .title::before {
  position: absolute;
  top: calc(50% - 34px);
  left: 0;
  content: "";
  display: block;
  width: 68px;
  height: 68px;
  background-repeat: no-repeat;
  background-size: contain;
}

.front_page #knowledge .section_contents .knowledge_item.item_1 .title::before {
  background-image: url(../img/icon_doctor.svg);
}

.front_page #knowledge .section_contents .knowledge_item.item_2 .title::before {
  background-image: url(../img/icon_index.svg);
}

.front_page #knowledge .section_contents .knowledge_item .description {
  margin-bottom: 32px;
}

.front_page #knowledge .img_line_deco {
  position: relative;
}

.front_page #knowledge .img_line_deco::before {
  content: "";
  display: block;
  position: absolute;
  top: -180px;

  background-image: url("../img/section_front_line_bg3-sp.svg");
  background-size: 100% 100%;
  width: 100%;
  height: calc(100% + 180px + 180px);
  z-index: 6;
}

@media only screen and (min-width: 981px) {
  .front_page #knowledge.section_knowledge_bg {
    padding-top: 180px;

    background-image: url("../img/bg_dot.svg"), url("../img/section_front_knowledge_bg-pc.svg");
    background-size: auto, 100% 88%;
  }

  .front_page #knowledge.section_knowledge_bg.bubble-deco.addbf::before {
    background-image: url("../img/section_front_knowledge_deco1-pc.svg");
    width: 28px;
    height: 30px;
    right: calc(50% - 100px);
    top: 20px;
  }

  .front_page #knowledge.section_knowledge_bg.bubble-deco.addbf::after {
    background-image: url("../img/section_front_knowledge_deco3-pc.svg");
    width: 269px;
    height: 155px;
    right: -50px;
    bottom: 80px;
  }

  .front_page #knowledge .wrapper.bubble-deco::after {
    background-image: url("../img/section_front_knowledge_deco2-pc.svg");
    width: 86px;
    height: 111px;
    left: -5vw;
    top: calc(15% + 0.1 * 100vw);
  }

  .front_page #knowledge .section_title {
    margin-bottom: 55px;
    padding-left: 50px;
  }

  .front_page #knowledge .section_contents.layout {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;

    flex-direction: row-reverse;

    padding-left: 70px;
    margin-right: -70px;
  }

  .front_page #knowledge .section_contents .knowledge_item {
    padding: 75px 100px 55px 110px;
  }

  .front_page #knowledge .section_contents .knowledge_item .title {
    font-size: 20px;
    font-size: 2rem;
    font-weight: var(--noto-mid);
    line-height: 1.5;
    margin-bottom: 24px;

    position: relative;
    padding: 15px 0 15px 110px;
    display: block;
  }

  .front_page #knowledge .section_contents .knowledge_item .title::before {
    position: absolute;
    top: calc(50% - 45px);
    left: 0;
    content: "";
    display: block;
    width: 90px;
    height: 90px;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .front_page #knowledge .section_contents .knowledge_item.item_1 {
    margin-top: -195px;
  }

  .front_page #knowledge .img_line_deco::before {
    top: calc(-180px - 130px);
    background-image: url("../img/section_front_line_bg3.svg");
    height: calc(100% + 360px + 260px);
    z-index: 6;
  }
}

/* ==========================================================================
   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;
  }
}
