@charset "utf-8";
/*-------------------------------------
■目次
-CSS変数
-WEBフォント
-リセット
-初期設定
-レイアウト
-モジュール
-汎用クラス
-JS初期設定
---------------------------------------*/

/*-------------------------------------
CSS変数
---------------------------------------*/
:root {
  /* カラー */
  --color_primaryRed:   #cc0000;
  --color_blue01: #00BCD4;
  --color_blue02: #03A9F4;
  --color_green01: #006064;
  --bg_gra01: linear-gradient(66deg,rgba(0, 188, 212, 1) 0%, rgba(3, 169, 244, 1) 60%, rgba(3, 169, 244, 1) 100%);
  --bg_gra02: linear-gradient(73deg,rgba(234, 114, 26, 1) 0%, rgba(234, 114, 26, 1) 46%, rgba(233, 197, 104, 1) 100%);

  /* 余白 */
  --mt_M: 24px;
  --mt_M_sp: 12px;
}

/*-------------------------------------
WEBフォント
---------------------------------------*/
/* @font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: normal;
  src: url('/assets/font/NotoSansCJKjp-Regular.woff') format('woff'),
  url('/assets/font/NotoSansCJKjp-Regular.ttf')  format('truetype');
}
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: bold;
  src: url('/assets/font/NotoSansCJKjp-Medium.woff') format('woff'),
  url('/assets/font/NotoSansCJKjp-Medium.ttf')  format('truetype');
} */


/*-------------------------------------
リセットCSS
---------------------------------------*/
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
}
main {
  display: block;
}
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}
pre {
  font-family: monospace, monospace;
  font-size: inherit;
}
address {
  font-style: inherit;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}
abbr[title] {
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}
button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}
:-moz-focusring {
  outline: auto;
}
select:disabled {
  opacity: inherit;
}
option {
  padding: 0;
}
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}
legend {
  padding: 0;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
[type="number"] {
  -moz-appearance: textfield;
}
label[for] {
  cursor: pointer;
}
details {
  display: block;
}
summary {
  display: list-item;
}
[contenteditable]:focus {
  outline: auto;
}
table {
  border-color: inherit;
  border-collapse: collapse;
}
caption {
  text-align: left;
}
td,
th {
  vertical-align: top;
  padding: 0;
}
th {
  text-align: left;
  font-weight: bold;
}


/*-------------------------------------
初期設定
---------------------------------------*/
html {font-size: 62.5%;}
body {
  min-width: 320px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.6rem;
  color: var(--color_green01);
  background-color: #fff;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  font-weight: 500;
  overflow-wrap: break-word;
}
img {
  max-width: 100%;
}

/*-------------------------------------------------------
レイアウト
-------------------------------------------------------*/

/* l_pageArea
--------------------*/



/* l_main
--------------------*/
.l_main {}


/* l_contents
--------------------*/
.l_contents {}
/* .l_contents a:not([class^="m_"]):not([class^="l_"]) {
  text-decoration: underline;
} */
@media (hover: hover) and (pointer: fine){
  /* .l_contents a:hover {
    text-decoration: none;
  } */
}


/* pg_header
--------------------*/
.pg_header {
  padding: 10px 0;
  background-color: rgba(255,255,255,0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  /* backdrop-filter: blur(3px); */
}
.pg_headerInn {
  display: flex;;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 768px),print {
  .pg_header {
    padding: 12px 0;
  }
}
.pg_navBtn {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: -20px;
}
.pg_navBtnBar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--color_blue01);
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: 0.3s;
}
.pg_navBtnBar:nth-child(1) {
  top: 14px;
}
.pg_navBtnBar:nth-child(2) {
  top: 20px;
}
.pg_navBtnBar:nth-child(3) {
  top: 26px;
}
.s_open.pg_nav .pg_navBtnBar:nth-child(1)  {
  rotate: 45deg;
  top: 20px;
}
.s_open.pg_nav .pg_navBtnBar:nth-child(2)  {
  transform: translateX(10px);
  opacity: 0;
}

.s_open.pg_nav .pg_navBtnBar:nth-child(3)  {
  rotate: -45deg;
  top: 20px;
}

.pg_navList {
  /* display: none;; */
  visibility: hidden;
  position: absolute;
  top: -9999px;
  left: -20px;
  right: -20px;
  /* width: 100%; */
  background-color: rgba(255,255,255,0.85);
  padding: 50px;
  opacity: 0;
  transition: 0.5s opacity 0.1s;
  /* backdrop-filter: blur(3px); */
}
.s_open .pg_navList {
  /* display: block;; */
  visibility: visible;
  top: 50px;
  opacity: 1;
}
.pg_navListItem + .pg_navListItem {
  margin-top: 30px;
}
.pg_navLink {
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color_green01);
  display: block;;
  position: relative;
  padding-right: 20px;
}
.pg_navLink::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color_blue01);
  border-bottom: 2px solid var(--color_blue01);
  rotate: 45deg;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.pg_navLoginBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg_gra01);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 30px;
  box-shadow: 0px 4px 6px 0px rgba(0,96,100,0.5),
              0px 2px 2px 0px rgba(0,96,100,0.3);
}
.pg_navLoginImg {
  width: 18px;
}
.pg_navBg {
  /* display: none;; */
  visibility: hidden;
  background-color: rgba(0,0,0,0.5);
  position: fixed;
  inset: 394px 0 0 0;
  /* inset: 0; */
  z-index: -1;
  opacity: 0;
  transition: 0.3s opacity 0.1s;
}
.s_open .pg_navBg {
  /* display: block; */
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 768px),print {
  .pg_headerInn {
    gap: 10px
  }
  .pg_nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 144px);
  }
  .pg_navBtn {
    display: none;
  }

  .pg_navList {
    position: static;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    display: flex;;
    align-items: center;;
    justify-content: flex-end;
    padding: 0;
    gap: 20px;
    width: calc(100% - 140px);
  }
  .pg_navListItem + .pg_navListItem {
    margin-top: 0;
  }
  .pg_navLink {
    font-size: 1.4rem;
  }

  .pg_navLoginBtn {
    width: 100px;
    height: 40px;
    border-radius: 20px;
    margin-right: 0;
    margin-left: 2%;
    transition: 0.3s opacity;
    box-shadow: 0px 8px 12px 0px rgba(0,96,100,0.15),
                0px 4px 4px 0px rgba(0,96,100,0.3);
  }
  .pg_navLoginBtn:hover {
    opacity: 0.6;
  }
  .pg_navLoginText {
    font-size: 1.4rem;
    font-weight: bold;
    padding-left: 5px;
  }
    
}
@media screen and (min-width: 1000px),print {
  .pg_navList {
    gap: 40px;
  }
  .pg_navLink {
    font-size: 1.6rem;
  }
  .pg_navLoginBtn {
    margin-left: 4%;
    width: 140px;
  }
  .pg_navLoginText {
    font-size: 1.6rem;
  }
}
/* pg_footer
--------------------*/
.pg_footer {
  background-color: #fff;
  text-align: center;
  font-size: 1.0rem;
  padding: 20px 0;
}



/* pg_main
-----------------------------------------*/
.pg_main {
}
/* kv
-----------------------------------------*/
.kv {
  padding-top: 60px;
  background: url(../img/kv_bg_sp.png) no-repeat left top;
  background-size: cover;
}
.kv_inn {
  padding: calc(30 / 375* 100vw) 0;
}
.kv_logoWrap {
  display: flex;;
  align-items: flex-end;
  justify-content: space-between;
}
.kv_logo01 {
  width: calc(230 / 375* 100vw);
}
.kv_logo02 {
  width: calc(84 / 375* 100vw);
}
.kv_textWrap {
  margin-top: calc(30 / 375* 100vw);
  color: var(--color_green01);
}
.kv_text01 {
  font-size: calc(32 / 375* 100vw);
  font-weight: bold;
  line-height: 1.4;
}
.kv_text02 {
  font-size: calc(16 / 375* 100vw);
  margin-top: calc(10 / 375* 100vw);
}
.kv_imgWrap {
  margin-top: calc(10 / 375* 100vw);
  text-align: center;
}
.kv_img01 {
  width: calc(164 / 375* 100vw);
}
.kv_imgList {
  margin: calc(10 / 375* 100vw) auto 0;
  width: calc(315 / 375* 100vw);
}
.kv_btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: calc(335 / 375* 100vw);
  width: 100%;
  height: calc(70 / 375* 100vw);
  font-size: calc(24 / 375* 100vw);
  color: #fff;
  text-align: center;
  background: var(--bg_gra02);
  border-radius: calc(35 / 375* 100vw);
  margin: calc(30 / 375* 100vw) auto 0;
  box-shadow: 0px 4px 4px 0px rgba(0,96,100,0.3),
              0px 8px 12px 6px rgba(0,96,100,0.15);

}
.kv_btn01Text {
  position: relative;
  padding-right: calc(15 / 375* 100vw);
}
.kv_btn01Text::before,
.kv_btn01Text::after {
  content: "";
  display: block;
  width: calc(10 / 375* 100vw);
  height: calc(10 / 375* 100vw);;
  rotate: 45deg;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.kv_btn01Text::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  right: 0;
}
.kv_btn01Text::after {
  border-top: 2px solid rgba(255,255,255,0.5);
  border-right: 2px solid rgba(255,255,255,0.5);
  right: calc(5 / 375* 100vw);;
}
@media screen and (min-width: 768px),print {
  .kv {
    background: url(../img/kv_bg_pc.png) no-repeat left top;
    background-size: cover;
  }
  .kv_inn {
    padding: 85px 0;
    position: relative;
  }
  .kv_logoWrap {
    display: block;
  }
  .kv_logo01 {
    width: 48%;
  }
  .kv_logo02 {
    width: 14.7%;
  }
  .kv_textWrap {
    margin-top: 50px;
  }
  .kv_text01 {
    font-size: 4.4rem;
  }
  .kv_text02 {
    margin-top: 20px;
    font-size: 2.0rem;
  }
  .kv_imgWrap {
    position: absolute;
    bottom: 50px;
    right: 0;
    width: 54.6%;
  }
  .kv_img01 {
    width: 53.8%;
  }
  .kv_imgList {
    width: 100%;
    margin-top: 0;
  }
  .kv_btn01 {
    width: 34%;
    height: 80px;
    font-size: 2.4rem;
    margin: 50px 0 0;
    transition: 0.3s;
    position: relative;
  }
  .kv_btn01::before {
    content: "";
    display: block;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background-color: #fff;;
    position: absolute;
    top: 2px;
    left: 2px;
    opacity: 0;
  }
  .kv_btn01:hover {
    color: #EA721A;
    background-color: #fff;
  }
  .kv_btn01:hover::before {
    opacity: 1;
    border-radius: 40px;
  }
  .kv_btn01Text {
    padding-right: 15px;
  }
  .kv_btn01Text::before,
  .kv_btn01Text::after {
    width: 10px;
    height: 10px;
    transition: 0.3s;
  }
  .kv_btn01Text::after {
    right: 5px;
  }
  .kv_btn01:hover .kv_btn01Text::before {
    border-color: #EA721A;
  }
  .kv_btn01:hover .kv_btn01Text::after {
    border-color: rgba(234, 114, 26,0.5);
  }

  

}
@media screen and (min-width: 1000px),print {
  .kv_text01 {
    font-size: 5.2rem;
  }
}

/* sec01
--------------------*/
.sec01 {
  padding: calc(80 / 375* 100vw) 0;
  overflow: hidden;
}
.sec01_leadWrap {
  display: flex;;
  justify-content: center;
  align-items: center;
  margin-top: calc(30 / 375* 100vw);
  gap: calc(15 / 375* 100vw);;
}
.sec01_img01 {
  width: calc(80 / 375* 100vw);
}
.sec01_lead01 {
  font-weight: bold;
  font-size: calc(24 / 375* 100vw);
  width: calc(240 / 375* 100vw);
}
.sec01_inn {
  position: relative;
}
.sec01_inn::before {
  content: "";
  display: block;
  width: calc(229 / 375* 100vw);;
  height: calc(326 / 375* 100vw);;
  background: url(../img/sec01_bg_01sp.png) no-repeat left top;
  background-size: 100%;
  position: absolute;
  top: calc(-150 / 375* 100vw);;
  left: 0;;
  z-index: -1;
}
.sec01_inn::after {
  content: "";
  display: block;
  width: calc(248 / 375* 100vw);
  height: calc(312 / 375* 100vw);
  background: url(../img/sec01_bg_02sp.png) no-repeat left top;
  background-size: 100%;
  position: absolute;
  bottom: calc(-120 / 375* 100vw);
  right: 0;
  z-index: -1;
}

@media screen and (min-width: 768px),print {
    .sec01 {
      padding: 100px 0;
    }
    .sec01_inn::before {
      background: url(../img/sec01_bg_01pc.png) no-repeat left top;
      background-size: 100%;
      top: -110px;
      left: -60px;
      width: 449px;
      height: 482px;
    }
    .sec01_inn::after {
      background: url(../img/sec01_bg_02pc.png) no-repeat left top;
      background-size: 100%;
      bottom: -130px;
      right: -230px;
      width: 647px;
      height: 384px;
    }
    .sec01_leadWrap {
      margin-top: 30px;
      position: relative;
      display: block;;
      text-align: center;
    }
    .sec01_img01 {
      position: absolute;
      top: 0;
      left: 0;
      width: 200px;
    }
    .sec01_lead01 {
      font-size: 3.2rem;
      text-align: center;
      width: 100%;
    }
}
.sec01_text01 {
  font-size: calc(16 / 375* 100vw);
  margin-top: calc(20 / 375* 100vw);
  text-align: center;
}
@media screen and (min-width: 768px),print {
  .sec01_text01 {
    font-size: 1.6rem;
    margin-top: 30px;
  }
}
.sec01_btn01 {
  display: flex;;
  justify-content: center;;
  align-items: center;
  width: 100%;
  max-width: calc(300 / 375* 100vw);
  margin: calc(30 / 375* 100vw) auto 0;
  background-color: #fff;
  border: 3px solid var(--color_blue01);
  font-size: calc(16 / 375* 100vw);
  font-weight: bold;
  height: calc(50 / 375* 100vw);
  border-radius: calc(25 / 375* 100vw);
  gap: 5px;
  box-shadow: 0px 4px 4px 0px rgba(0,96,100,0.3),
              0px 8px 12px 6px rgba(0,96,100,0.15);
}
.sec01_btn01Icon {
  width: calc(24 / 375* 100vw);
}
.sec01_btn01Text {
  position: relative;
  padding-right: calc(20 / 375* 100vw);
}
.sec01_btn01Text::before,
.sec01_btn01Text::after {
  content: "";
  display: block;
  width: calc(8 / 375* 100vw);
  height: calc(8 / 375* 100vw);;
  rotate: 45deg;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.sec01_btn01Text::before {
  border-top: 2px solid var(--color_blue01);
  border-right: 2px solid var(--color_blue01);
  right: 0;
}
.sec01_btn01Text::after {
  border-top: 2px solid rgba(0,188,212,0.5);
  border-right: 2px solid rgba(0,188,212,0.5);
  right: calc(5 / 375* 100vw);;
}
@media screen and (min-width: 768px),print {
  .sec01_btn01 {
    width: 300px;
    height: 50px;
    margin: 50px auto 0;
    font-size: 1.6rem;
    transition: 0.3s;
  }
  .sec01_btn01:hover {
    opacity: 0.6;
  }
  .sec01_btn01Icon {
    width: 24px;
  }
  .sec01_btn01Text {
    padding-right: 20px;
  }
  .sec01_btn01Text::before,
  .sec01_btn01Text::after {
    width: 8px;
    height: 8px;
  }
  .sec01_btn01Text::after {
    right: 5px;
  }
}
/* sec02
--------------------*/
.sec02 {
  background: url(../img/sec02_bg_01sp.png) no-repeat top center,
  url(../img/sec02_bg_02sp.png) no-repeat bottom center;
  padding: calc(38 / 375* 100vw) 0 calc(90 / 375* 100vw);
  background-size: 100%;
}
.sec02_inn {
  background-color: #E9E9E9;
}
.sec02_list {
  display: flex;
  justify-content: center;;
  text-align: center;
}
.sec02_textWrap {
  margin-top: calc(-20 / 375* 100vw);
}
.sec02_textL {
  font-size: calc(14 / 375* 100vw);
  font-weight: bold;
}
.sec02_textS {
  font-size: calc(10 / 375* 100vw);
}
@media screen and (min-width: 768px),print {
  .sec02 {
  background: url(../img/sec02_bg_01pc.png) no-repeat top center,
  url(../img/sec02_bg_02pc.png) no-repeat bottom center;
  padding: 20px 0 80px;
  background-size: 1000px;
  }
  .sec02_inn {
    padding: 30px 0;
  }
  .sec02_title {
    position: relative;
    z-index: 1;;
  }

  .sec02_list {
    margin-top: -60px;
  }
  .sec02_listItem {
    position: relative;
    z-index: 0;
  }
  .sec02_img01 {
    position: relative;
    z-index: -1;
  }
  .sec02_textWrap {
    margin-top: -80px;
  }
  .sec02_textL {
    font-size: 2.2rem;
  }
  .sec02_textS {
    font-size: 1.6rem;
  }
}

/* sec03
--------------------*/
.sec03 {
  padding: 0 0 calc(100 / 375* 100vw);
  background: url(../img/sec03_bg_01sp.png) no-repeat top 10% center;
  background-size: 100%;
}
@media screen and (min-width: 768px),print {
  .sec03 {
    padding: 0 0 150px;
    background: url(../img/sec03_bg_01pc.png) no-repeat top 30% center;
    background-size: 100%;
  }
}
.sec03_titleWrap {
  position: relative;
  padding-top: calc(62 / 375* 100vw);
}
.sec03_titleImg {
  position: absolute;
  top: calc(10 / 375* 100vw);;
  right: 0;
  width: calc(80 / 375* 100vw);
}
@media screen and (min-width: 768px),print {
  .sec03_titleWrap {
    padding-top: 30px;
    display: flex;;
    align-items: center;
    justify-content: center;;
    gap: 10px;
    position: relative;

  }
  .sec03_titleImg {
    position: static;
    width: 175px;
  }
}
@media screen and (min-width: 1200px),print {
  .sec03_titleWrap {
    left: 65px;
  }
}
.sec03_list {
  margin-top: calc(30 / 375* 100vw);
  display: flex;;
  justify-content: center;;
  gap: calc(10 / 375* 100vw);
  margin-left: -10px;
  margin-right: -10px;
}
.sec03_listItem {
  background-color: #fff;
  border-radius: 40px 10px;
  box-shadow: 0px 0px 12px 1px rgba(0,188,212,0.6);
  flex: 1;
  text-align: center;
  padding: 20px 2px;
}
.sec03_listImg {
  width: auto;
  height: calc(70 / 375* 100vw);
}
.sec03_listText {
  font-size: calc(12 / 375* 100vw);
  margin-top: 10px;
  font-weight: bold;
}
.sec03_text01 {
  text-align: center;
  font-size: calc(16 / 375* 100vw);
  margin-top: calc(30 / 375* 100vw);
}
@media screen and (min-width: 768px),print {
  .sec03_list {
    margin-top: 20px;
    margin-left: 0;
    margin-right: 0;
    gap: 55px;
  }
  .sec03_listItem {
    border-radius: 80px 10px;;
    padding: 25px 10px;;
    max-width: 260px;

  }
  .sec03_listImg {
    height: 130px;
  }
  .sec03_listText {
    font-size: 2.2rem;
    margin-top: 20px;
  }
  .sec03_text01 {
    font-size: 1.6rem;
    margin-top: 50px;
  }
}
.sec03_btnWrap {
  margin-top: calc(30 / 375* 100vw);
  display: flex;;
  flex-direction: column;
  gap: calc(30 / 375* 100vw);
}
.sec03_btn {
  display: flex;
  justify-content: center;;
  align-items: center;
  width: 100%;
  max-width: calc(300 / 375* 100vw);
  height: calc(40 / 375* 100vw);
  color: var(--color_blue01);
  font-weight: bold;
  background-color: #fff;
  border-radius: calc(20 / 375* 100vw);;
  position: relative;
  box-shadow: 0px 4px 4px 0px rgba(0,96,100,0.3),
              0px 8px 12px 6px rgba(0,96,100,0.15);
  margin-left: auto;
  margin-right: auto;
  font-size: calc(16 / 375* 100vw);
  border: 2px solid var(--color_blue01)
}
.sec03_btnText {
  position: relative;
  padding-right: calc(20 / 375* 100vw);
}
.sec03_btnText::before,
.sec03_btnText::after {
  content: "";
  display: block;
  width: calc(8 / 375* 100vw);
  height: calc(8 / 375* 100vw);;
  rotate: 45deg;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.sec03_btnText::before {
  border-top: 2px solid var(--color_blue01);
  border-right: 2px solid var(--color_blue01);
  right: 0;
}
.sec03_btnText::after {
  border-top: 2px solid rgba(0,188,212,0.5);
  border-right: 2px solid rgba(0,188,212,0.5);
  right: calc(5 / 375* 100vw);;
}
@media screen and (min-width: 768px),print {
  .sec03_btnWrap {
    margin-top: 50px;
    gap: 50px;
    flex-direction: row;;
    justify-content: center;;
  }
  .sec03_btn {
    width: 300px;
    height: 40px;
    border-radius: 20px;
    font-size: 1.6rem;
    margin: 0;
  }
  .sec03_btn:hover {
    opacity: 0.6;
  }
  .sec03_btnIcon {
    width: 24px;
  }
  .sec03_btnText {
    padding-right: 20px;
  }
  .sec03_btnText::before,
  .sec03_btnText::after {
    width: 8px;
    height: 8px;
  }
  .sec03_btnText::after {
    right: 5px;
  }
}

/* sec04
--------------------*/
.sec04_inn {
  position: relative;
  padding-bottom: calc(130 / 375* 100vw);
}
.sec04_inn::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #E0F6F9;
  transform: skew(0deg, 10deg);
  right: 0;
  z-index: -1;
  transform-origin: left;
}
.sec04_titleA {
  margin-top: calc(50 / 375* 100vw);;
  display: flex;
  align-items: baseline;
  gap: calc(10 / 375* 100vw);
  margin-bottom: calc(20 / 375* 100vw);

}
.sec04_titleAImg {
  width: calc(24 / 375* 100vw);;
}
.sec04_titleAText {
  font-size: calc(24 / 375* 100vw);;
  font-weight: bold;
  width: calc(100% - calc(34 / 375* 100vw));
}
.sec04_listItem + .sec04_listItem {
  margin-top: calc(80 / 375* 100vw);
}
.sec04_listTextHead {
  font-size: calc(19 / 375* 100vw);
  font-weight: bold;
  position: relative;
  padding-left: calc(19 / 375* 100vw);;
}
.sec04_listTextHead::before {
  content: "";
  display: block;
  width: calc(5 / 375* 100vw);;
  height: calc(5 / 375* 100vw);;
  border-radius: 50%;
  background-color: var(--color_green01);
  position: absolute;
  left: 0.3em;
  top: 0.7em;
}
.sec04_listTextBody {
  padding-left: calc(19 / 375* 100vw);;
  font-size: calc(16 / 375* 100vw);
}
.sec04_imgWrap {
  position: relative;
}
.sec04_imgWrap::before {
  content: "";
  display: block;
  width: calc(340 / 375* 100vw);
  height: calc(340 / 375* 100vw);;
  background: radial-gradient(circle,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0.1) 65%, rgba(255, 255, 255, 0) 100%);
  border-radius: 50%;
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: -1;
}
.sec04_img01 {
  margin-top: calc(20 / 375* 100vw);
}
@media screen and (min-width: 768px),print {
  .sec04_inn {
    padding-bottom: 150px;
  }
  .sec04_inn::before {
    transform-origin: center;
    top: 120px;
  }
  .sec04_list {
    margin-top: 50px;
  }
  .sec04_listItem + .sec04_listItem {
    margin-top: 100px;
  }
  .sec04_titleA {
    margin-top: 0;
    gap: 15px;
    margin-bottom: 25px;
  }
  .sec04_titleAImg  {
    width: 32px;
  }
  .sec04_titleAText {
    font-size: 2.4rem;
    width: calc(100% - 47px)
  }
  .sec04_listItem {
    display: flex;
    gap: 80px;
    justify-content: space-between;
  }
  .sec04_listItem:nth-child(even) {
    flex-direction: row-reverse;
  }
  .sec04_listItem + .sec04_listItem {
    margin-top: 100px;
  }
  .sec04_textWrap {
    width: 47%;
  }
  .sec04_listTextHead {
    font-size: 1.9rem;
    padding-left: 19px;
  }
  .sec04_listTextHead::before  {
    width: 5px;
    height: 5px;
  }

  .sec04_listTextBody  {
    padding-left: 19px;
    font-size: 1.6rem;
  }
  .sec04_imgWrap {
    width: 45%;
  }
  .sec04_imgWrap::before {
    width: 500px;
    height: 500px;
    left: auto;
    right: 0;
    
  }
  .sec04_listItem:nth-child(even) .sec04_imgWrap::before {
    left: 0;
    right: auto;
  }
  .sec04_img01 {
    margin-top: 0;
  }
}

/* sec05
--------------------*/
.sec05_lead {
  font-size: calc(24 / 375* 100vw);
  font-weight: bold;
  margin-bottom: calc(20 / 375* 100vw);
}
.sec05_text01 {
  font-size: calc(16 / 375* 100vw);
}
@media screen and (min-width: 768px),print {
  .sec05_lead {
    font-size: 3.2rem;
    margin-bottom: 20px;
  }
  .sec05_text01 {
    font-size: 1.6rem;
  }
}
.sec05_col2_01R {
  margin-top: calc(30 / 375* 100vw);
  background: url(../img/sec05_bg_01.png) no-repeat center center;
  background-size: 70%;
}
@media screen and (min-width: 768px),print {
  .sec05_col2_01 {
    display: flex;;
    justify-content: space-between;
  }
  .sec05_col2_01L {
    width: 51.6%;
  }
  .sec05_col2_01R {
    margin-top: 0;
    width: 39%;
    background-size: 60%;
    background-position: center bottom;
  }
}

.sec05_col2_02 {
  display: flex;;
  gap: calc(20 / 375* 100vw);
}
.sec05_col2_02L {
  width: calc(140 / 375* 100vw);
}
.sec05_col2_02R {
  width: calc(100% - calc(160 / 375* 100vw)) ;
}
@media screen and (min-width: 768px),print {
  .sec05_col2_02 {
    gap: 20px;
  }
  .sec05_col2_02L {
    width: 34.1%;
  }
  .sec05_col2_02R {
    width: 62%;
  }
}

/* sec06
--------------------*/
.sec06 {
  margin-top: calc(130 / 375* 100vw);
}
@media screen and (min-width: 768px),print {
  .sec06 {
    margin-top: 150px;
  }
}
.sec06_box {
  background: linear-gradient(135deg,rgba(236, 250, 251, 1) 0%, rgba(236, 250, 251, 1) 60%, rgba(236, 250, 251, 1) 61%, rgba(196, 232, 241, 1) 100%);;
  padding: 30px 15px;
  margin-top: calc(20 / 375* 100vw);;
  border-radius: 20px;
}
.sec06_stepList {
  display: flex;
  flex-direction: column;
  gap: calc(20 / 375* 100vw);
}
.sec06_stepTitle {
  display: flex;;
  align-items: center;
  gap: calc(10 / 375* 100vw);;
}
.sec06_stepIcon {
  width: calc(72 / 375* 100vw);
}
.sec06_stepTitleText {
  width: calc(100% - calc(82 / 375* 100vw)) ;
  font-size: calc(24 / 375* 100vw);
  font-weight: bold;
}
.sec06_stepText {
  font-size: calc(16 / 375* 100vw);
  margin-top: 5px;
}
@media screen and (min-width: 768px),print {
  .sec06_box {
    padding: 40px 30px;
    margin-top: 20px;
  }
  .sec06_stepList {
    gap: 30px;
  }
  .sec06_stepTitle {
    gap: 10px;
  }
  .sec06_stepIcon {
    width: 72px;
  }
  .sec06_stepTitleText {
    width: calc(100% - 82px);
    font-size: 2.4rem;
  }
  .sec06_stepText  {
    font-size: 1.6rem;
  }
}

/* sec07
--------------------*/
.sec07 {
  margin-top: calc(130 / 375* 100vw);
}
@media screen and (min-width: 768px),print {
  .sec07 {
    margin-top: 150px;
  }
}

.sec07_inn {
  position: relative;

}
.sec07_inn::before {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #E0F6F9;
  transform: skew(0deg, 10deg);
  right: 0;
  z-index: -1;
  transform-origin: left;
}
.sec07_inn::after {
  content: "";
  display: block;
  width: 100%;
  height: 70%;
  position: absolute;
  bottom: -10%;
  left: 0;
  background-color: #E0F6F9;
  z-index: -1;
}
@media screen and (min-width: 768px),print {
  .sec07_inn {
  }
  .sec07_inn::before {
    transform-origin: center;
    top: 120px;
    /* height: calc(100% - 120px) */
  }
}
.sec07_faq {
  border-radius: 10px;
  box-shadow: 0px 4px 8px 3px rgba(0,96,100,0.15),
              0px 1px 3px 0px rgba(48,48,48,1);
  
}
.sec07_faq + .sec07_faq {
  margin-top: calc(30 / 375* 100vw);
}
.sec07_faqQ,
.sec07_faqA {
  padding: calc(20 / 375* 100vw) calc(10 / 375* 100vw);
  display: flex;
  gap: calc(10 / 375* 100vw);
}
.sec07_faqQ {
  background-color: #fff;
  border-radius: 10px 10px 0 0;
}
.sec07_faqQHead,
.sec07_faqAHead {
  width: calc(50 / 375* 100vw);
  height: calc(50 / 375* 100vw);;
  color: #fff;
  font-size: calc(34 / 375* 100vw);
  font-weight: bold;
  display: flex;;
  justify-content: center;;
  align-items: center;
  border-radius: 5px;
}
.sec07_faqQHead {
  background-color: var(--color_green01);
}
.sec07_faqAHead {
  background-color: var(--color_blue01);
}
.sec07_faqQHeadText {
  position: relative;
  top: calc(-2 / 375* 100vw);
}
.sec07_faqQBody,
.sec07_faqABody {
  font-size: calc(16 / 375* 100vw);
  width: calc(100% - calc(60 / 375* 100vw));
  margin-top: calc(10 / 375* 100vw);
}
.sec07_faqA {
  background-color: #F6F6F6;
  border-radius: 0 0 10px 10px;
}
@media screen and (min-width: 768px),print {
  .sec07_faqQ,
  .sec07_faqA {
    padding: 27px 30px 30px;
    gap: 20px;
  }
  .sec07_faq + .sec07_faq {
    margin-top: 30px;
  }
  .sec07_faqQHead,
  .sec07_faqAHead {
    width: 50px;
    height: 50px;
    font-size: 34px;
  }
  .sec07_faqQHeadText {
    top: -2px;
  }
  .sec07_faqQBody,
  .sec07_faqABody {
    font-size: 1.8rem;
    width: calc(100% - 70px);
    margin-top: 12px;
  }
}
.sec07_btn {
  display: flex;;
  justify-content: center;;
  align-items: center;
  width: calc(335 / 375* 100vw);
  height: calc(80 / 375* 100vw);
  font-size: calc(24 / 375* 100vw);
  font-weight: bold;
  background: var(--bg_gra02);
  border-radius: calc(40 / 375* 100vw);
  color: #fff;
  margin: calc(80 / 375* 100vw) auto 0;
  gap: calc(10 / 375* 100vw);
  box-shadow: 0px 4px 4px 0px rgba(0,96,100,0.3),
              0px 8px 12px 6px rgba(0,96,100,0.15);
}
.sec07_btnIcon {
  width: calc(24 / 375* 100vw);
}
.sec07_btnText {
  position: relative;
  padding-right: calc(20 / 375* 100vw);
}
.sec07_btnText::before,
.sec07_btnText::after {
  content: "";
  display: block;
  width: calc(10 / 375* 100vw);
  height: calc(10 / 375* 100vw);;
  rotate: 45deg;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.sec07_btnText::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  right: 0;
}
.sec07_btnText::after {
  border-top: 2px solid rgba(255,255,255,0.5);
  border-right: 2px solid rgba(255,255,255,0.5);
  right: calc(5 / 375* 100vw);;
}
@media screen and (min-width: 768px),print {
  .sec07_btn {
    width: 400px;
    height: 80px;
    font-size: 24px;
    border-radius: 40px;
    margin: 150px auto 0;
    gap: 10px;
    transition: 0.3s;
  }
  .sec07_btn:hover {
    opacity: 0.6;
  }
  .sec07_btnIcon {
    width: 24px;
  }
  .sec07_btnText {
    padding-right: 20px;
  }
  .sec07_btnText::before,
  .sec07_btnText::after {
    width: 8px;
    height: 8px;
  }
  .sec07_btnText::after {
    right: 5px;
  }
}
.btmArea {
  padding-top: calc(80 / 375* 100vw);
  padding-bottom: calc(15 / 375* 100vw);;
  background-color: #E0F6F9;

}
.btm_linkList {
  display: flex;
  justify-content: center;
  gap: calc(20 / 375* 100vw);
}
.btm_linkListLink {
  font-size: calc(14 / 375* 100vw);;
  font-weight: bold;
  text-decoration: underline;
}
@media screen and (min-width: 768px),print {
  .btmArea {
    padding-top: 150px;
    padding-bottom: 20px;

  }
  .btm_linkList {
    gap: 50px;
  }
  .btm_linkListLink {
    font-size: 1.6rem;
  }
  .btm_linkListLink:hover {
    text-decoration: none;;
  }
}

.floatingArea {
  display: flex;
  justify-content: center;
  gap: calc(20 / 375* 100vw);
  border-radius: 10px 10px 0 0;
  position: sticky;
  bottom: 0;
  left: 0;
  margin-top: calc(60 / 375* 100vw);;
  padding: 15px 20px;
  border: 1px solid #E0F6F9;
  background-color: #E0F6F9;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.s_stop.floatingArea {
  background-color: rgba(253,254,255,0.7);
  box-shadow: 0px 4px 4px 0px rgba(0,96,100,0.3);
  border: 1px solid #fff;

}
.s_show.floatingArea {
  opacity: 1;
  visibility: visible;
}
.floating_btn {
  width: calc(155 / 375* 100vw);
  height: calc(50 / 375* 100vw);
  display: flex;;
  align-items: center;
  justify-content: center;;
  border-radius: 10px;
  font-size: calc(13 / 375* 100vw);
  font-weight: bold;
  gap: calc(5 / 375* 100vw);
  box-shadow: 0px 4px 4px 0px rgba(0,96,100,0.3),
              0px 8px 12px 6px rgba(0,96,100,0.15);
}
.s_01.floating_btn {
  background-color: #FBE3D1;
  color: #EA721A;
}
.s_02.floating_btn {
  background-color: #fff;
  color: var(--color_green01);
  border: 2px solid var(--color_blue01);
}
.floating_btnIcon {
  width: auto;
  height: calc(30 / 375* 100vw);
}

.floating_btnText {
  position: relative;
  padding-right: calc(20 / 375* 100vw);
}
.floating_btnText::before,
.floating_btnText::after {
  content: "";
  display: block;
  width: calc(8 / 375* 100vw);
  height: calc(8 / 375* 100vw);;
  rotate: 45deg;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.floating_btnText::before {
  right: 0;
}
.floating_btnText::after {
  right: calc(5 / 375* 100vw);;
}
.s_01 .floating_btnText::before {
  border-top: 2px solid #EA721A;
  border-right: 2px solid #EA721A;
}
.s_01 .floating_btnText::after {
  border-top: 2px solid rgba(234, 114, 26,0.5);
  border-right: 2px solid rgba(234, 114, 26,0.5);
}
.s_02 .floating_btnText::before {
  border-top: 2px solid var(--color_blue01);
  border-right: 2px solid var(--color_blue01);
}
.s_02 .floating_btnText::after {
  border-top: 2px solid rgba(0,188,212,0.5);
  border-right: 2px solid rgba(0,188,212,0.5);
}
@media screen and (min-width: 768px),print {
  .floatingArea {
    width: 142px;
    border-radius: 10px;
    flex-direction: column;
    padding: 20px 10px;
    margin-left: auto;
    margin-right: 20px;
    bottom: 20px;
    gap: 10px;
    margin-top: -210px;
    background-color: rgba(253,254,255,0.7);
    box-shadow: 0px 4px 4px 0px rgba(0,96,100,0.3);
    border: 1px solid #fff;
    
  }
  .floating_btn {
    width: 100%;
    flex-direction: column;
    font-size: 1.4rem;
    gap: 5px;
    height: 74px;
    transition: 0.3s;
    text-align: center;
  }
  .floating_btn:hover {
    opacity: 0.6;
  }
  .s_02.floating_btn {
    border-width: 3px;
  }
  .floating_btnIcon {
    height: 24px;
    text-align: center;
  }
  .floating_btnText {
    padding-right: 12px;
    line-height: 1.2;
  }
  .floating_btnText.s_02 {
    font-size: 1.2rem;
  }
  .floating_btnText::before,
  .floating_btnText::after {
    width: 6px;
    height: 6px;

  }
  .floating_btnText::after {
    right: 3px;;
  }
  .s_01 .floating_btnText::before,
  .s_01 .floating_btnText::after,
  .s_02 .floating_btnText::before,
  .s_02 .floating_btnText::after {
    border-top-width: 1px;
    border-right-width: 1px;
  }
}


/*-------------------------------------------------------
モジュール
-------------------------------------------------------*/

/* m_section
--------------------*/
.m_section {

}



/* m_contentsW
--------------------*/
.m_contentsW {
  width: 100%;
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
}


/* m_titleA
------------------------*/
.m_titleA {
  text-align: center;
  font-weight: bold;
  font-size: calc(26 / 375* 100vw);;
  display: flex;
  align-items: baseline;
  justify-content: center;;
}
.m_titleATextL {
  font-size: calc(32 / 375* 100vw);
}
.m_titleA.s_taL {
  justify-content: flex-start;
}
/* .m_titleATextM {
  font-size: calc(26 / 375* 100vw);
} */
@media screen and (min-width: 768px),print {
  .m_titleA  {
    font-size: 3.2rem;
  }
  .m_titleATextL {
    font-size: 4.2rem;
  }
  .m_titleATextPcL {
    font-size: 4.2rem;
  }
  /* .m_titleATextM {
    font-size: 4.2rem;
  } */
}
.m_titleLogo {
  width: calc(229 / 375* 100vw);
}
@media screen and (min-width: 768px),print {
  .m_titleLogo {
    width: 378px;
  }
}

/* m_titleB
------------------------*/
.m_titleB {
  font-size: calc(32 / 375* 100vw);
  font-weight: bold;
  display: flex;
  gap: calc(10 / 375* 100vw);
  margin-bottom: calc(50 / 375* 100vw);;
}
.m_titleBIcon {
  width: calc(50 / 375* 100vw);
}
.m_titleBText {
  width: calc(100% - calc(60 / 375* 100vw));
}
@media screen and (min-width: 768px),print {
  .m_titleB {
    font-size: 5.2rem;
    gap: 20px;
    margin-bottom: 50px;
  }
  .m_titleBIcon {
    width: 80px;
  }
  .m_titleBText {
    width: calc(100% - 100px)
  }
}
/* m_titleC
------------------------*/
.m_titleC {
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
}
/* m_titleD
------------------------*/
.m_titleD {
  font-weight: bold;
  margin-top: 1em;
  margin-bottom: 1em;
}



/* m_text
--------------------*/
.m_text > p + p {
  margin-top: 1em;
}
.m_text .m_list {
  margin-top: 1em;
}
.m_text li + li {
  margin-top: 5px;
}

/* m_list
------------------------*/



/* m_link
------------------------*/



/* m_btnSet
--------------------*/


/* m_btnArea
------------------------*/



/* m_col
------------------------*/



/*m_image
--------------------*/



/* m_media
------------------------*/



/* m_box
--------------------*/



/* m_table
--------------------*/



/* form：parts
--------------------*/


/* form：layout
------------------------*/



/*-------------------------------------
汎用クラス
---------------------------------------*/
/* テキスト系
------------------------*/
.u_fontXS { font-size: 10px!important; }
.u_fontSS { font-size: 12px!important; }
.u_fontS  { font-size: 14px!important; }
.u_fontM  { font-size: 16px!important; }
.u_fontL  { font-size: 18px!important; }
.u_fontLL { font-size: 20px!important; }
.u_fontXL { font-size: 22px!important; }

.u_fontItalic { font-style: italic!important; }
.u_fontBold   { font-weight: bold!important; }
.u_fontNormal { font-weight: normal!important; }

.u_lineL { line-height: 1.8!important;}
.u_lineM { line-height: 1.5!important;}
.u_lineS { line-height: 1.3!important;}

.u_tdNon   { text-decoration: none !important; }
.u_tdUnder { text-decoration: underline !important; }
.u_tdOver  { text-decoration: line-through !important; }

.u_colorRed   { color: #cc0000!important; }

/* レイアウト系
------------------------*/
.u_clearfix { zoom: 1; }
.u_clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0.01px;
}
.u_ofHidden  { overflow: hidden!important; }
.u_ofVisible { overflow: visible!important; }
.u_floatL    { float: left!important; }
.u_floatR    { float: right!important; }

.u_posStatic   { position: static !important;}
.u_posRelative { position: relative!important;}
.u_posAbsolute { position: absolute!important;}
.u_posFixed    { position: fixed!important;}

.u_taLeft   { text-align: left !important; }
.u_taCenter { text-align: center !important; }
.u_taRight  { text-align: right !important; }

.u_vaTop { vertical-align: top !important; }
.u_vaMdl { vertical-align: middle !important; }
.u_vaBtm { vertical-align: bottom !important; }

/* 余白
------------------------*/
.u_myS  { margin-top: 10px !important; margin-bottom: 10px !important;}
.u_myM  { margin-top: 20px !important; margin-bottom: 20px !important;}
.u_myL  { margin-top: 30px !important; margin-bottom: 30px !important;}
.u_myLL { margin-top: 40px !important; margin-bottom: 40px !important;}
.u_myXL { margin-top: 50px !important; margin-bottom: 50px !important;}

.u_mtS  { margin-top: 10px !important;}
.u_mtM  { margin-top: 20px !important;}
.u_mtL  { margin-top: 30px !important;}
.u_mtLL { margin-top: 40px !important;}
.u_mtXL { margin-top: 50px !important;}

.u_mbS  { margin-bottom: 10px !important;}
.u_mbM  { margin-bottom: 20px !important;}
.u_mbL  { margin-bottom: 30px !important;}
.u_mbLL { margin-bottom: 40px !important;}
.u_mbXL { margin-bottom: 50px !important;}

.u_mxS  { margin-left: 10px !important; margin-right: 10px !important;}
.u_mxM  { margin-left: 20px !important; margin-right: 20px !important;}
.u_mxL  { margin-left: 30px !important; margin-right: 30px !important;}
.u_mxLL { margin-left: 40px !important; margin-right: 40px !important;}
.u_mxXL { margin-left: 50px !important; margin-right: 50px !important;}

.u_mlS  { margin-left: 10px !important;}
.u_mlM  { margin-left: 20px !important;}
.u_mlL  { margin-left: 30px !important;}
.u_mlLL { margin-left: 40px !important;}
.u_mlXL { margin-left: 50px !important;}

.u_mrS  { margin-right: 10px !important;}
.u_mrM  { margin-right: 20px !important;}
.u_mrL  { margin-right: 30px !important;}
.u_mrLL { margin-right: 40px !important;}
.u_mrXL { margin-right: 50px !important;}

.u_mt0  { margin-top:  0px !important; }
.u_mt3  { margin-top:  3px !important; }
.u_mt5  { margin-top:  5px !important; }
.u_mt10 { margin-top: 10px !important; }
.u_mt15 { margin-top: 15px !important; }
.u_mt20 { margin-top: 20px !important; }
.u_mt25 { margin-top: 25px !important; }
.u_mt30 { margin-top: 30px !important; }
.u_mt35 { margin-top: 35px !important; }
.u_mt40 { margin-top: 40px !important; }
.u_mt45 { margin-top: 45px !important; }
.u_mt50 { margin-top: 50px !important; }
.u_mt60 { margin-top: 60px !important; }
.u_mt70 { margin-top: 70px !important; }
.u_mt80 { margin-top: 80px !important; }
.u_mt90 { margin-top: 90px !important; }
.u_mt100 { margin-top: 100px !important; }

.u_ml0  { margin-left:  0px !important; }
.u_ml3  { margin-left:  3px !important; }
.u_ml5  { margin-left:  5px !important; }
.u_ml10 { margin-left: 10px !important; }
.u_ml15 { margin-left: 15px !important; }
.u_ml20 { margin-left: 20px !important; }
.u_ml25 { margin-left: 25px !important; }
.u_ml30 { margin-left: 30px !important; }
.u_ml35 { margin-left: 35px !important; }
.u_ml40 { margin-left: 40px !important; }
.u_ml45 { margin-left: 45px !important; }
.u_ml50 { margin-left: 50px !important; }
.u_ml60 { margin-left: 60px !important; }
.u_ml70 { margin-left: 70px !important; }
.u_ml80 { margin-left: 80px !important; }
.u_ml90 { margin-left: 90px !important; }
.u_ml100 { margin-left: 100px !important; }

.u_mr0  { margin-right:  0px !important; }
.u_mr3  { margin-right:  3px !important; }
.u_mr5  { margin-right:  5px !important; }
.u_mr10 { margin-right: 10px !important; }
.u_mr15 { margin-right: 15px !important; }
.u_mr20 { margin-right: 20px !important; }
.u_mr25 { margin-right: 25px !important; }
.u_mr30 { margin-right: 30px !important; }
.u_mr35 { margin-right: 35px !important; }
.u_mr40 { margin-right: 40px !important; }
.u_mr45 { margin-right: 45px !important; }
.u_mr50 { margin-right: 50px !important; }
.u_mr60 { margin-right: 60px !important; }
.u_mr70 { margin-right: 70px !important; }
.u_mr80 { margin-right: 80px !important; }
.u_mr90 { margin-right: 90px !important; }
.u_mr100 { margin-right: 100px !important; }

.u_mb0  { margin-bottom:  0px !important; }
.u_mb3  { margin-bottom:  3px !important; }
.u_mb5  { margin-bottom:  5px !important; }
.u_mb10 { margin-bottom: 10px !important; }
.u_mb15 { margin-bottom: 15px !important; }
.u_mb20 { margin-bottom: 20px !important; }
.u_mb25 { margin-bottom: 25px !important; }
.u_mb30 { margin-bottom: 30px !important; }
.u_mb35 { margin-bottom: 35px !important; }
.u_mb40 { margin-bottom: 40px !important; }
.u_mb45 { margin-bottom: 45px !important; }
.u_mb50 { margin-bottom: 50px !important; }
.u_mb60 { margin-bottom: 60px !important; }
.u_mb70 { margin-bottom: 70px !important; }
.u_mb80 { margin-bottom: 80px !important; }
.u_mb90 { margin-bottom: 90px !important; }
.u_mb100 { margin-bottom: 100px !important; }

@media screen and (max-width:767px) {
  .u_myS  { margin-top: 5px !important; margin-bottom: 5px !important;}
  .u_myM  { margin-top: 10px !important; margin-bottom: 10px !important;}
  .u_myL  { margin-top: 15px !important; margin-bottom: 15px !important;}
  .u_myLL { margin-top: 20px !important; margin-bottom: 20px !important;}
  .u_myXL { margin-top: 25px !important; margin-bottom: 25px !important;}

  .u_mtS  { margin-top: 5px !important;}
  .u_mtM  { margin-top: 10px !important;}
  .u_mtL  { margin-top: 15px !important;}
  .u_mtLL { margin-top: 20px !important;}
  .u_mtXL { margin-top: 25px !important;}

  .u_mbS  { margin-bottom: 5px !important;}
  .u_mbM  { margin-bottom: 10px !important;}
  .u_mbL  { margin-bottom: 15px !important;}
  .u_mbLL { margin-bottom: 20px !important;}
  .u_mbXL { margin-bottom: 25px !important;}

  .u_mxS  { margin-left: 5px !important; margin-right: 5px !important;}
  .u_mxM  { margin-left: 10px !important; margin-right: 10px !important;}
  .u_mxL  { margin-left: 15px !important; margin-right: 15px !important;}
  .u_mxLL { margin-left: 20px !important; margin-right: 20px !important;}
  .u_mxXL { margin-left: 25px !important; margin-right: 25px !important;}

  .u_mlS  { margin-left: 5px !important;}
  .u_mlM  { margin-left: 10px !important;}
  .u_mlL  { margin-left: 15px !important;}
  .u_mlLL { margin-left: 20px !important;}
  .u_mlXL { margin-left: 25px !important;}

  .u_mrS  { margin-right: 5px !important;}
  .u_mrM  { margin-right: 10px !important;}
  .u_mrL  { margin-right: 15px !important;}
  .u_mrLL { margin-right: 20px !important;}
  .u_mrXL { margin-right: 25px !important;}

  .u_spMt0  { margin-top:  0px !important; }
  .u_spMt3  { margin-top:  3px !important; }
  .u_spMt5  { margin-top:  5px !important; }
  .u_spMt10 { margin-top: 10px !important; }
  .u_spMt15 { margin-top: 15px !important; }
  .u_spMt20 { margin-top: 20px !important; }
  .u_spMt25 { margin-top: 25px !important; }
  .u_spMt30 { margin-top: 30px !important; }
  .u_spMt35 { margin-top: 35px !important; }
  .u_spMt40 { margin-top: 40px !important; }
  .u_spMt45 { margin-top: 45px !important; }
  .u_spMt50 { margin-top: 50px !important; }
  .u_spMt60 { margin-top: 60px !important; }
  .u_spMt70 { margin-top: 70px !important; }
  .u_spMt80 { margin-top: 80px !important; }
  .u_spMt90 { margin-top: 90px !important; }
  .u_spMt100 { margin-top: 100px !important; }

  .u_spMl0  { margin-left:  0px !important; }
  .u_spMl3  { margin-left:  3px !important; }
  .u_spMl5  { margin-left:  5px !important; }
  .u_spMl10 { margin-left: 10px !important; }
  .u_spMl15 { margin-left: 15px !important; }
  .u_spMl20 { margin-left: 20px !important; }
  .u_spMl25 { margin-left: 25px !important; }
  .u_spMl30 { margin-left: 30px !important; }
  .u_spMl35 { margin-left: 35px !important; }
  .u_spMl40 { margin-left: 40px !important; }
  .u_spMl45 { margin-left: 45px !important; }
  .u_spMl50 { margin-left: 50px !important; }
  .u_spMl60 { margin-left: 60px !important; }
  .u_spMl70 { margin-left: 70px !important; }
  .u_spMl80 { margin-left: 80px !important; }
  .u_spMl90 { margin-left: 90px !important; }
  .u_spMl100 { margin-left: 100px !important; }

  .u_spMr0  { margin-right:  0px !important; }
  .u_spMr3  { margin-right:  3px !important; }
  .u_spMr5  { margin-right:  5px !important; }
  .u_spMr10 { margin-right: 10px !important; }
  .u_spMr15 { margin-right: 15px !important; }
  .u_spMr20 { margin-right: 20px !important; }
  .u_spMr25 { margin-right: 25px !important; }
  .u_spMr30 { margin-right: 30px !important; }
  .u_spMr35 { margin-right: 35px !important; }
  .u_spMr40 { margin-right: 40px !important; }
  .u_spMr45 { margin-right: 45px !important; }
  .u_spMr50 { margin-right: 50px !important; }
  .u_spMr60 { margin-right: 60px !important; }
  .u_spMr70 { margin-right: 70px !important; }
  .u_spMr80 { margin-right: 80px !important; }
  .u_spMr90 { margin-right: 90px !important; }
  .u_spMr100 { margin-right: 100px !important; }

  .u_spMb0  { margin-bottom:  0px !important; }
  .u_spMb3  { margin-bottom:  3px !important; }
  .u_spMb5  { margin-bottom:  5px !important; }
  .u_spMb10 { margin-bottom: 10px !important; }
  .u_spMb15 { margin-bottom: 15px !important; }
  .u_spMb20 { margin-bottom: 20px !important; }
  .u_spMb25 { margin-bottom: 25px !important; }
  .u_spMb30 { margin-bottom: 30px !important; }
  .u_spMb35 { margin-bottom: 35px !important; }
  .u_spMb40 { margin-bottom: 40px !important; }
  .u_spMb45 { margin-bottom: 45px !important; }
  .u_spMb50 { margin-bottom: 50px !important; }
  .u_spMb60 { margin-bottom: 60px !important; }
  .u_spMb70 { margin-bottom: 70px !important; }
  .u_spMb80 { margin-bottom: 80px !important; }
  .u_spMb90 { margin-bottom: 90px !important; }
  .u_spMb100 { margin-bottom: 100px !important; }
}

.u_pyS  { padding-top: 10px !important; padding-bottom: 10px !important;}
.u_pyM  { padding-top: 20px !important; padding-bottom: 20px !important;}
.u_pyL  { padding-top: 30px !important; padding-bottom: 30px !important;}
.u_pyLL { padding-top: 40px !important; padding-bottom: 40px !important;}
.u_pyXL { padding-top: 50px !important; padding-bottom: 50px !important;}

.u_ptS  { padding-top: 10px !important;}
.u_ptM  { padding-top: 20px !important;}
.u_ptL  { padding-top: 30px !important;}
.u_ptLL { padding-top: 40px !important;}
.u_ptXL { padding-top: 50px !important;}

.u_pbS  { padding-bottom: 10px !important;}
.u_pbM  { padding-bottom: 20px !important;}
.u_pbL  { padding-bottom: 30px !important;}
.u_pbLL { padding-bottom: 40px !important;}
.u_pbXL { padding-bottom: 50px !important;}

.u_pxS  { padding-left: 10px !important; padding-right: 10px !important;}
.u_pxM  { padding-left: 20px !important; padding-right: 20px !important;}
.u_pxL  { padding-left: 30px !important; padding-right: 30px !important;}
.u_pxLL { padding-left: 40px !important; padding-right: 40px !important;}
.u_pxXL { padding-left: 50px !important; padding-right: 50px !important;}

.u_plS  { padding-left: 10px !important;}
.u_plM  { padding-left: 20px !important;}
.u_plL  { padding-left: 30px !important;}
.u_plLL { padding-left: 40px !important;}
.u_plXL { padding-left: 50px !important;}

.u_prS  { padding-right: 10px !important;}
.u_prM  { padding-right: 20px !important;}
.u_prL  { padding-right: 30px !important;}
.u_prLL { padding-right: 40px !important;}
.u_prXL { padding-right: 50px !important;}

.u_pt0  { padding-top:  0px !important; }
.u_pt3  { padding-top:  3px !important; }
.u_pt5  { padding-top:  5px !important; }
.u_pt10 { padding-top: 10px !important; }
.u_pt15 { padding-top: 15px !important; }
.u_pt20 { padding-top: 20px !important; }
.u_pt25 { padding-top: 25px !important; }
.u_pt30 { padding-top: 30px !important; }
.u_pt35 { padding-top: 35px !important; }
.u_pt40 { padding-top: 40px !important; }
.u_pt45 { padding-top: 45px !important; }
.u_pt50 { padding-top: 50px !important; }
.u_pt60 { padding-top: 60px !important; }
.u_pt70 { padding-top: 70px !important; }
.u_pt80 { padding-top: 80px !important; }
.u_pt90 { padding-top: 90px !important; }
.u_pt100 { padding-top: 100px !important; }

.u_pl0  { padding-left:  0px !important; }
.u_pl3  { padding-left:  3px !important; }
.u_pl5  { padding-left:  5px !important; }
.u_pl10 { padding-left: 10px !important; }
.u_pl15 { padding-left: 15px !important; }
.u_pl20 { padding-left: 20px !important; }
.u_pl25 { padding-left: 25px !important; }
.u_pl30 { padding-left: 30px !important; }
.u_pl35 { padding-left: 35px !important; }
.u_pl40 { padding-left: 40px !important; }
.u_pl45 { padding-left: 45px !important; }
.u_pl50 { padding-left: 50px !important; }
.u_pl60 { padding-left: 60px !important; }
.u_pl70 { padding-left: 70px !important; }
.u_pl80 { padding-left: 80px !important; }
.u_pl90 { padding-left: 90px !important; }
.u_pl100 { padding-left: 100px !important; }

.u_pr0  { padding-right:  0px !important; }
.u_pr3  { padding-right:  3px !important; }
.u_pr5  { padding-right:  5px !important; }
.u_pr10 { padding-right: 10px !important; }
.u_pr15 { padding-right: 15px !important; }
.u_pr20 { padding-right: 20px !important; }
.u_pr25 { padding-right: 25px !important; }
.u_pr30 { padding-right: 30px !important; }
.u_pr35 { padding-right: 35px !important; }
.u_pr40 { padding-right: 40px !important; }
.u_pr45 { padding-right: 45px !important; }
.u_pr50 { padding-right: 50px !important; }
.u_pr60 { padding-right: 60px !important; }
.u_pr70 { padding-right: 70px !important; }
.u_pr80 { padding-right: 80px !important; }
.u_pr90 { padding-right: 90px !important; }
.u_pr100 { padding-right: 100px !important; }

.u_pb0  { padding-bottom:  0px !important; }
.u_pb3  { padding-bottom:  3px !important; }
.u_pb5  { padding-bottom:  5px !important; }
.u_pb10 { padding-bottom: 10px !important; }
.u_pb15 { padding-bottom: 15px !important; }
.u_pb20 { padding-bottom: 20px !important; }
.u_pb25 { padding-bottom: 25px !important; }
.u_pb30 { padding-bottom: 30px !important; }
.u_pb35 { padding-bottom: 35px !important; }
.u_pb40 { padding-bottom: 40px !important; }
.u_pb45 { padding-bottom: 45px !important; }
.u_pb50 { padding-bottom: 50px !important; }
.u_pb60 { padding-bottom: 60px !important; }
.u_pb70 { padding-bottom: 70px !important; }
.u_pb80 { padding-bottom: 80px !important; }
.u_pb90 { padding-bottom: 90px !important; }
.u_pb100 { padding-bottom: 100px !important; }

@media screen and (max-width:767px) {
  .u_pyS  { padding-top: 5px !important; padding-bottom: 5px !important;}
  .u_pyM  { padding-top: 10px !important; padding-bottom: 10px !important;}
  .u_pyL  { padding-top: 15px !important; padding-bottom: 15px !important;}
  .u_pyLL { padding-top: 20px !important; padding-bottom: 20px !important;}
  .u_pyXL { padding-top: 25px !important; padding-bottom: 25px !important;}

  .u_ptS  { padding-top: 5px !important;}
  .u_ptM  { padding-top: 10px !important;}
  .u_ptL  { padding-top: 15px !important;}
  .u_ptLL { padding-top: 20px !important;}
  .u_ptXL { padding-top: 25px !important;}

  .u_pbS  { padding-bottom: 5px !important;}
  .u_pbM  { padding-bottom: 10px !important;}
  .u_pbL  { padding-bottom: 15px !important;}
  .u_pbLL { padding-bottom: 20px !important;}
  .u_pbXL { padding-bottom: 25px !important;}

  .u_pxS  { padding-left: 5px !important; padding-right: 5px !important;}
  .u_pxM  { padding-left: 10px !important; padding-right: 10px !important;}
  .u_pxL  { padding-left: 15px !important; padding-right: 15px !important;}
  .u_pxLL { padding-left: 20px !important; padding-right: 20px !important;}
  .u_pxXL { padding-left: 25px !important; padding-right: 25px !important;}

  .u_plS  { padding-left: 5px !important;}
  .u_plM  { padding-left: 10px !important;}
  .u_plL  { padding-left: 15px !important;}
  .u_plLL { padding-left: 20px !important;}
  .u_plXL { padding-left: 25px !important;}

  .u_prS  { padding-right: 5px !important;}
  .u_prM  { padding-right: 10px !important;}
  .u_prL  { padding-right: 15px !important;}
  .u_prLL { padding-right: 20px !important;}
  .u_prXL { padding-right: 25px !important;}

  .u_spPt0  { padding-top:  0px !important; }
  .u_spPt3  { padding-top:  3px !important; }
  .u_spPt5  { padding-top:  5px !important; }
  .u_spPt10 { padding-top: 10px !important; }
  .u_spPt15 { padding-top: 15px !important; }
  .u_spPt20 { padding-top: 20px !important; }
  .u_spPt25 { padding-top: 25px !important; }
  .u_spPt30 { padding-top: 30px !important; }
  .u_spPt35 { padding-top: 35px !important; }
  .u_spPt40 { padding-top: 40px !important; }
  .u_spPt45 { padding-top: 45px !important; }
  .u_spPt50 { padding-top: 50px !important; }
  .u_spPt60 { padding-top: 60px !important; }
  .u_spPt70 { padding-top: 70px !important; }
  .u_spPt80 { padding-top: 80px !important; }
  .u_spPt90 { padding-top: 90px !important; }
  .u_spPt100 { padding-top: 100px !important; }

  .u_spPl0  { padding-left:  0px !important; }
  .u_spPl3  { padding-left:  3px !important; }
  .u_spPl5  { padding-left:  5px !important; }
  .u_spPl10 { padding-left: 10px !important; }
  .u_spPl15 { padding-left: 15px !important; }
  .u_spPl20 { padding-left: 20px !important; }
  .u_spPl25 { padding-left: 25px !important; }
  .u_spPl30 { padding-left: 30px !important; }
  .u_spPl35 { padding-left: 35px !important; }
  .u_spPl40 { padding-left: 40px !important; }
  .u_spPl45 { padding-left: 45px !important; }
  .u_spPl50 { padding-left: 50px !important; }
  .u_spPl60 { padding-left: 60px !important; }
  .u_spPl70 { padding-left: 70px !important; }
  .u_spPl80 { padding-left: 80px !important; }
  .u_spPl90 { padding-left: 90px !important; }
  .u_spPl100 { padding-left: 100px !important; }

  .u_spPr0  { padding-right:  0px !important; }
  .u_spPr3  { padding-right:  3px !important; }
  .u_spPr5  { padding-right:  5px !important; }
  .u_spPr10 { padding-right: 10px !important; }
  .u_spPr15 { padding-right: 15px !important; }
  .u_spPr20 { padding-right: 20px !important; }
  .u_spPr25 { padding-right: 25px !important; }
  .u_spPr30 { padding-right: 30px !important; }
  .u_spPr35 { padding-right: 35px !important; }
  .u_spPr40 { padding-right: 40px !important; }
  .u_spPr45 { padding-right: 45px !important; }
  .u_spPr50 { padding-right: 50px !important; }
  .u_spPr60 { padding-right: 60px !important; }
  .u_spPr70 { padding-right: 70px !important; }
  .u_spPr80 { padding-right: 80px !important; }
  .u_spPr90 { padding-right: 90px !important; }
  .u_spPr100 { padding-right: 100px !important; }

  .u_spPb0  { padding-bottom:  0px !important; }
  .u_spPb3  { padding-bottom:  3px !important; }
  .u_spPb5  { padding-bottom:  5px !important; }
  .u_spPb10 { padding-bottom: 10px !important; }
  .u_spPb15 { padding-bottom: 15px !important; }
  .u_spPb20 { padding-bottom: 20px !important; }
  .u_spPb25 { padding-bottom: 25px !important; }
  .u_spPb30 { padding-bottom: 30px !important; }
  .u_spPb35 { padding-bottom: 35px !important; }
  .u_spPb40 { padding-bottom: 40px !important; }
  .u_spPb45 { padding-bottom: 45px !important; }
  .u_spPb50 { padding-bottom: 50px !important; }
  .u_spPb60 { padding-bottom: 60px !important; }
  .u_spPb70 { padding-bottom: 70px !important; }
  .u_spPb80 { padding-bottom: 80px !important; }
  .u_spPb90 { padding-bottom: 90px !important; }
  .u_spPb100 { padding-bottom: 100px !important; }
}

/* 表示非表示用
------------------------*/
@media screen and (max-width: 1200px) { .u_ov1200 { display: none !important; } }
@media screen and (max-width: 1100px) { .u_ov1100 { display: none !important; } }
@media screen and (max-width: 1000px) { .u_ov1000 { display: none !important; } }
@media screen and (max-width: 900px) { .u_ov900  { display: none !important; } }
@media screen and (max-width: 800px) { .u_ov800  { display: none !important; } }
@media screen and (max-width: 767px) { .u_ov767  { display: none !important; } }
@media screen and (max-width: 700px) { .u_ov700  { display: none !important; } }
@media screen and (max-width: 600px) { .u_ov600  { display: none !important; } }
@media screen and (max-width: 500px) { .u_ov500  { display: none !important; } }
@media screen and (max-width: 400px) { .u_ov400  { display: none !important; } }
@media screen and (max-width: 374px) { .u_ov374  { display: none !important; } }
@media screen and (min-width: 1201px) { .u_un1200 { display: none !important; } }
@media screen and (min-width: 1101px) { .u_un1100 { display: none !important; } }
@media screen and (min-width: 1001px) { .u_un1000 { display: none !important; } }
@media screen and (min-width: 901px) { .u_un900  { display: none !important; } }
@media screen and (min-width: 801px) { .u_un800  { display: none !important; } }
@media screen and (min-width: 768px) { .u_un767  { display: none !important; } }
@media screen and (min-width: 701px) { .u_un700  { display: none !important; } }
@media screen and (min-width: 601px) { .u_un600  { display: none !important; } }
@media screen and (min-width: 501px) { .u_un500  { display: none !important; } }
@media screen and (min-width: 401px) { .u_un400  { display: none !important; } }
@media screen and (min-width: 375px) { .u_un374  { display: none !important; } }

@media screen and (max-width: 1920px){ .u_ov1920 { display: none !important; } }
@media screen and (min-width: 1921px){ .u_un1920 { display: none !important; } }
@media screen and (max-width: 1023px){ .u_ov1023 { display: none !important; } }
@media screen and (min-width: 1024px){ .u_un1023 { display: none !important; } }

/* その他
------------------------*/
.u_disNon { display: none !important; }
.u_disBlock { display: block!important; }
.u_disInline { display: inline!important; }
.u_disInBlock { display: inline-block!important; }
.u_disFlex { display: flex!important; }
.u_disGrid { display: grid!important; }

.u_flexWap { flex-wrap: wrap!important;; }
.u_justifyStart { justify-content: flex-start!important; }
.u_justifyEnd   { justify-content: flex-end!important; }
.u_justifyCentr  { justify-content: center!important; }
.u_justifyBetween    { justify-content: space-between!important; }
.u_justifyAround     { justify-content: space-around!important; }
.u_alignStart { align-items: flex-start!important; }
.u_alignEnd   { align-items: flex-end!important; }
.u_alignCentr  { align-items: center!important; }

.u_liquid { width: 100%!important; }
.u_nowrap { white-space: nowrap!important; }
.u_breakall { word-break: break-all!important; }

.u_over,
.u_over *
{
  text-decoration: none;
  transition: opacity 0.5s 0s;
}
@media (hover: hover) and (pointer: fine){
  .u_over:hover
  {
    opacity: 0.7!important;
  }
}
/*-------------------------------------
JS初期設定
---------------------------------------*/
.js_toggleArea.s_close .js_toggleContents {
  display: none;
}
