@charset "UTF-8";

/* ----------------------- */
/* common
/* ----------------------- */
body {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.5;
  font-family: 'Kosugi Maru', sans-serif;
  color: #000;
  position: relative;
}

img,
svg {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  display: inline-block;
  color: #000;
}

a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* input,
select {
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
} */

.fixed__ft {
  min-height: 100vh;
  position: relative;
  padding-bottom: 60px;
  box-sizing: border-box;
}

@media all and (-ms-high-contrast:none){/* IE11 */
  *::-ms-backdrop, .fixed__ft {
    padding-bottom: 200px;
  }
}


main {
  padding-bottom: 140px;
}

.pageContainer {
  padding: 90px 0 100px;
}

.pageContainer p {
  margin-bottom: 1em;
}

.inner {
  max-width: 1040px;
  margin: 0 auto;
}

.pageInner {
  max-width: 740px;
  margin: 0 auto;
}

.pageInnerWide {
  max-width: 1040px;
  margin: 0 auto;
}


.pageTtl {
  font-size: 32px;
  line-height: 1;
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}

.pageTtl:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: #ed711c;
}

.d-flex {
  display: flex;
}

.d-block {
  display: block !important;
}

.btnArw {
  display: inline-block;
  position: relative;
}

.btnArw:after {
  content: ">";
  position: absolute;
  top: 24px;
  right: 17px;
  font-weight: bold;
  cursor: pointer;
}

.btnArw input {
  outline: none;
}


.btnArwhover:after {
  color:#ed711c;
}

.btnCaret,
.btnBack {
  display: inline-block;
  margin: 0 auto;
  text-align: center !important;
}

.btnCaret.btnOne {
  display: block;
}

.btnCaret:hover {
  color: #f97b1e;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.btnBack:hover:after {
  color: #fff;
}

.btnBack:hover {
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.btnCaret:hover .btn {
  color: #f97b1e;
  background-color: #fff;
}

.btnBack:hover .btn {
  color: #fff;
  background-color: #f97b1e;
}

input[type="submit"] {
  -webkit-appearance: none;
}

.btn {
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 69px;
  width: 258px;
  height: 69px;
  display: block;
  text-align: center;
  border-radius: 34.5px;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-appearance: none;
}

.btn:after {
  content: ">";
  position: absolute;
  top: 2px;
  right: 17px;
  font-weight: bold;
}

.btn:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.btn--orange {
  color: #fff;
  background-color: #f97b1e;
  border: 2px solid #f97b1e;
}

.btn--orange:hover {
  color: #f97b1e;
  background-color: #fff;
}

.btn--delete {
  color: #fff;
  background-color: #666;
  border: 2px solid #666;
}

.btn--delete:hover {
  color: #fff;
  background-color: #999;
  border: 2px solid #999;
}


.btn--red {
  color: #fff;
  background-color: #e1354b;
  border: 2px solid #e1354b;
  border-style: none;
}

.btn--red:hover {
  color: #e1354b !important;
  background-color: #fff;
}


.btn--white {
  color: #f97b1e;
  background-color: #fff;
}

.btn--white:hover {
  color: #fff;
  background-color: #f97b1e;
}

.borderOrange {
  border: 2px solid #f97b1e;
}

.btnCenter {
  margin-top: 4em;
  text-align: center;
}

.mxAuto {
  margin: 0 auto;
}

.txtGray {
  color: #ccc !important;
}

.txtCenter {
  text-align: center;
}

.txtLine a {
  text-decoration: underline;
}

.txtLine a:hover {
  color: #ed711c;
  text-decoration: none;
}


.txtWhite {
  color: #fff;
}

.sp {
  display: none;
}

/* Arrow Text---------------- */

.txt__arw {
  position: relative;
  display: inline-block;
  padding-left: 13px;
  text-decoration: underline;
}

.txt__arw:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #ed711c;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -8px;
}

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

.header {
  width: 100%;
  height: 80px;
  box-sizing: border-box;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}

@media all and (-ms-high-contrast:none){/* IE11 */
  *::-ms-backdrop, .header__inner {
  }
}

.header__logo {
  width: 159px;
  margin-top: 16px;
}

.header__logo img {
  object-fit: contain;
}

.header__reg {
  display: flex;
  margin-right: 20px;
  margin-top: 17px;
}

.header__reg .header__registration {
  color: #ed711c;
}

.header__reg a:hover {
  text-decoration: underline;
}

.header__user {
  display: flex;
  margin-right: 122px;
  margin-top: 25px;
}

@media all and (-ms-high-contrast:none){/* IE11 */
  *::-ms-backdrop, .header__user {
    position: absolute;
    right: 0;
    top: 10px;
    display: inline-block;
  }
}

.header__userName {
  color: #f97b1e;
  font-size: 18px;
  letter-spacing: 0.04em;
}

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

.header__userTxt {
  font-size: 14px;
  margin-left: 6px;
  margin-top: 5px;
}


@media all and (-ms-high-contrast:none){/* IE11 */
  *::-ms-backdrop, .header__userTxt {
    margin-left: 0;
  }
}


.header__userImg {
  position: absolute;
  top: 7px;
  right: 15px;
  width: 80px;
  height: 80px;
  z-index: 11;
  border-radius: 50%;
  cursor: pointer !important;
  z-index: 2;
}

.header__userImg img {
  position: relative;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 4px solid #fff;
  cursor: pointer;
  object-fit: cover;
  behavior: url(../js/PIE.htc);
  font-family: 'object-fit: cover; object-position: 50% 50%;';
}

.header__userMenu {
  position: absolute;
  top: 115px;
  right: 10px;
  border: 2px solid #5bbdd9;
  padding: 13px 9px;
  background-color: #fff;
  z-index: 1;
  width: 195px;
  box-sizing: border-box;
  display: none;
}

.header__userMenu.active {
  display: block;
}

.header__userMenu::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 141px;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  border-style: solid;
  border-width: 2px;
  border-color: #5bbdd9 transparent transparent #5bbdd9;
  background-color: #fff;
}

.header__userMenu li {
  font-weight: bold;
  letter-spacing: 0.04em;
  padding: 13px;
  line-height: 1;
}

.header__userMenu li:first-child {
  border-bottom: 1px solid #ccc;
}

.header__userMenu li a {
  color: #000;
  width: 100%;
  height: 100%;
}

.header__userMenu .triangle {
  color: #5bbdd9;
  font-size: 11px;
  margin-right: 8px;
  vertical-align: 1px;
}

/* ----------------------- */
/* footer
/* ----------------------- */


.footer {
  position: absolute;
  bottom: 0;
}

.footer__inner {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}

.footer__copyright {
  position: absolute;
  right: 0;
  top: -85px;
  color: #404040;
  font-size: 12px;
  text-align: right;
  display: block;
}

.footer__img {
  position: absolute;
  left: 0;
  top: -80px;
  max-width: 834px;
}

.footer {
  width: 100%;
  height: 54px;
  background-color: #9fcfa9;
  z-index: -1;
}

/* ----------------------- */
/* pageMv
/* ----------------------- */


.pageMv {
  width: 100%;
  height: 250px;
  position: relative;
}

.pageMv__bg {
  width: 100%;
  height: 250px;
}

.pageMv__bg img {
  object-fit: cover;
  object-position: center;
}

.pageMv__logo {
  width: 242px;
  position: absolute;
  top: 39px;
  left: 50%;
  transform: translateX(-50%);
}

.pageMv__logo img {
  object-fit: contain;
}

.pageMv__logo a:hover {
  transform:rotate(5deg);
}

/* ----------------------- */
/* goToTop
/* ----------------------- */

#goToTop {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  line-height: 67px;
  width: 73px;
  height: 73px;
  border: 3px solid #fff;
  background-color: #f97b1e;
  border-radius: 50%;
  text-align: center;
  box-sizing: border-box;
  position: fixed;
  bottom: 170px;
  right: 67px;
  transform: rotate(-90deg);
  z-index: 2;
}

#goToTop:hover {
  color: #f97b1e;
  background-color: #fff;
  border-color: #f97b1e;
}



/* 767px 
--------------------------------------------- */
@media (max-width: 767px) {

  /* ----------------------- */
  /* common 767px
  /* ----------------------- */
  body {
    font-size: 15px;
    overflow-x: hidden;
  }

  .inner {
    padding: 0 20px;
  }

  .pageContainer {
    padding: 56px 0 66px;
  }

  .pageInner {
    padding: 0 20px;
  }

  .pageInnerWide {
    padding: 0 20px;
  }


  .pageTtl {
    font-size: 21px;
  }

  .pageTtl:after {
    bottom: -12px;
    width: 70px;
    height: 3px;
  }

  .btnCaret,
  .btnBack {
    width: 100% !important;
  }

  .btnCaret:after,
  .btnBack:after {
    display: none;
  }

  .btn {
    line-height: 42px;
    width: 80%;
    height: 4em;
  }

  .btn.btn--normal {
    width: 60%;
    height: 3.6em;
    font-size: 1.1em;
    line-height: 3.5em;
    border-radius: 60px;
  }

  .btn.btn--delete {
    width: 169px;
    height: 3em;
    font-size: 1em;
    line-height: 2.8em;
    border-radius: 60px;
  }

  .btn:after {
    top: 1px;
    right: 11px;
  }

  .btnArw {
    display: inline-block;
    position: relative;
    width: 80%;
  }
  
  .btnArw:after {
    content: ">";
    position: absolute;
    top: 22px;
    right: 16%;
    font-weight: bold;
    cursor: pointer;
  }

  .btnArw input {
    font-size: 1.1em;
  }
  

  .borderOrange {
    border: 1px solid #f97b1e;
  }

  .txtCenter {
    text-align: left;
  }
  

  /* ----------------------- */
  /* header 767px
  /* ----------------------- */

  .header {
    height: 50px;
  }

  .header__logo {
    width: 80px;
    margin-top: 13px;
    padding-left: 10px;
  }

  .header__user {
    margin-right: 78px;
    margin-top: 17px;
  }

  .header__userName {
    font-size: 16px;
  }

  .header__userTxt {
    font-size: 12px;
    margin-left: 6px;
    top: 0;
  }


  .header__userImg {
    top: 5px;
    right: 10px;
    width: 54px;
    height: 54px;
  }

  .header__userImg img {
    border: 2px solid #fff;
  }

  .header__userMenu {
    top: 80px;
    right: 10px;
    padding: 5px;
    width: 155px;
  }

  .header__userMenu::before {
    top: -9px;
    left: 117px;
  }

  .header__userMenu li {
    padding: 9px;
  }

  .header__userMenu li a {
    font-size: 12px;
  }

  .header__userMenu .triangle {
    font-size: 9px;
    margin-right: 6px;
  }

  /* ----------------------- */
  /* footer 767px
  /* ----------------------- */

  .footer {
    padding-top: 53px;
  }

  .footer__copyright {
    font-size: 9px;
    margin-top: -4em;
    padding-right: 20px;
  }

  .footer__img {
    margin-top: -20px;
  }

  .footer__bg {
    display: none;
  }

  /* ----------------------- */
  /* pageMv 767px
  /* ----------------------- */


  .pageMv {
    height: 90px;
  }

  .pageMv__bg {
    height: 90px;
  }

  .pageMv__logo {
    width: 100%;
    max-width: 110px;
    top: 13px;
  }





}