@charset "UTF-8";
@import url("form_style.css");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@400;500;700&display=swap");
/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0; }
  30% {
    height: 100px;
    opacity: 1; }
  100% {
    height: 0;
    top: 150px;
    opacity: 0; } }
/* じわっ（ぼかしから出現） */
.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards; }

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0; }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1; } }
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger {
  opacity: 0; }

/*4-8 スーッ（枠線が伸びて出現）*/
.lineTrigger {
  position: relative;
  /* 枠線が書かれる基点*/
  opacity: 0; }

.lineTrigger.lineanime {
  animation-name: lineAnimeBase;
  animation-duration: .5s;
  animation-fill-mode: forwards; }

@keyframes lineAnimeBase {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/*上下線*/
.lineTrigger::before,
.lineTrigger::after {
  position: absolute;
  content: '';
  width: 0;
  height: 1px;
  background: #644900;
  /* 枠線の色*/
  z-index: 99; }

/*左右線*/
.line2::before,
.line2::after {
  position: absolute;
  content: '';
  width: 1px;
  height: 0;
  background: #644900;
  /* 枠線の色*/
  z-index: 99; }

/*上線*/
.lineTrigger::before {
  top: 0;
  left: 0; }

.lineTrigger.lineanime::before {
  animation: lineAnime .5s linear 0s forwards;
  /*表示されて0秒後に上線が0.5秒かけて表示*/ }

/*右線*/
.line2::before {
  top: 0;
  right: 0; }

.lineTrigger.lineanime .line2::before {
  animation: lineAnime2 .5s linear .5s forwards;
  /*表示されて0.5秒後に右線が0.5秒かけて表示*/ }

/*下線*/
.lineTrigger::after {
  bottom: 0;
  right: 0; }

.lineTrigger.lineanime::after {
  animation: lineAnime .5s linear 1s forwards;
  /*表示されて1秒後に下線が0.5秒かけて表示*/ }

/*左線*/
.line2::after {
  bottom: 0;
  left: 0; }

.lineTrigger.lineanime .line2::after {
  animation: lineAnime2 .5s linear 1.5s forwards;
  /*表示されて1.5秒後に左線が0.5秒かけて表示*/ }

@keyframes lineAnime {
  0% {
    width: 0%; }
  100% {
    width: 100%; } }
@keyframes lineAnime2 {
  0% {
    height: 0%; }
  100% {
    height: 100%; } }
/*枠線内側の要素*/
.lineTrigger.lineanime .lineinappear {
  animation: lineInnerAnime .5s linear 1.5s forwards;
  /*1.5秒後に中央のエリアが0.5秒かけて表示*/
  opacity: 0;
  /*初期値を透過0にする*/ }

@keyframes lineInnerAnime {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
#contentContainer {
  width: 100%;
  font-size: 15px;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #000000;
  background: url(../img/back_marble.jpg) repeat; }
  @media screen and (min-width: 500px) {
    #contentContainer {
      font-size: 16px; } }
  #contentContainer img {
    max-width: 100%;
    /* 横幅：レスポンシブの設定 */
    height: auto;
    /* 高さ：横幅の比率に合わせる */ }
  #contentContainer .sm {
    display: inline-block; }
  #contentContainer .smb {
    display: block; }
  #contentContainer .pc,
  #contentContainer .pcb {
    display: none; }
  @media screen and (min-width: 500px) {
    #contentContainer .smb {
      display: none; } }
  @media screen and (min-width: 800px) {
    #contentContainer .sm {
      display: none; }
    #contentContainer .pc {
      display: inline-block; }
    #contentContainer .pcb {
      display: block; } }
  #contentContainer .menu-title {
    display: block;
    width: 265px;
    height: 45px;
    font-size: 20px;
    font-weight: bold;
    color: #644900;
    margin: 50px auto 25px;
    background: url(../img/menu_title.png) no-repeat;
    text-align: center;
    padding-top: 6px; }
    @media screen and (min-width: 600px) {
      #contentContainer .menu-title {
        margin: 80px auto 40px; } }
  #contentContainer .en-title {
    font-size: 25px;
    font-weight: 700;
    color: #000;
    text-align: left;
    border-bottom: 2px solid #222;
    margin-bottom: 10px; }
  #contentContainer .sub-title {
    font-size: 18px;
    font-weight: 500;
    color: #222;
    text-align: left;
    border-bottom: 2px solid #555;
    margin-bottom: 10px; }
  #contentContainer .normal_text {
    color: #000;
    font-size: 15px; }
  #contentContainer .normal_text2 {
    color: #000;
    font-size: 15px;
    line-height: 1.8; }
  #contentContainer .space_10 {
    height: 10px; }
  #contentContainer .space_25 {
    height: 25px; }
  #contentContainer .space_40 {
    height: 40px; }
  #contentContainer .space_60 {
    height: 60px; }
  #contentContainer #shadow {
    height: 30px;
    background: url(../img/shadow01.png) repeat-x;
    margin-bottom: -30px; }
  #contentContainer section {
    position: relative;
    width: 100%; }
    #contentContainer section#menu {
      background: linear-gradient(90deg, #E2A34A, #965803, #FEE992, #BB842A); }
      #contentContainer section#menu .pc600 {
        display: none; }
      @media screen and (min-width: 600px) {
        #contentContainer section#menu .sm600 {
          display: none; }
        #contentContainer section#menu .pc600 {
          display: inline-block; } }
      #contentContainer section#menu ul {
        display: flex;
        flex-direction: row;
        text-align: center;
        padding: 5px 0 6px; }
        #contentContainer section#menu ul li {
          height: 3.5rem;
          background: #fff;
          position: relative;
          display: flex;
          justify-content: center;
          align-items: center;
          width: calc(100% / 5); }
          #contentContainer section#menu ul li a {
            color: #644900;
            border-left: 1px solid #644900;
            font-weight: bold;
            line-height: 1.2;
            text-decoration: none;
            width: 100%;
            height: 80%;
            display: flex;
            justify-content: center;
            align-items: center; }
            @media screen and (min-width: 600px) {
              #contentContainer section#menu ul li a {
                height: 50%;
                line-height: 1.6; } }
            #contentContainer section#menu ul li a:hover {
              color: #002680; }
            #contentContainer section#menu ul li a:active {
              color: #002680; }
          #contentContainer section#menu ul li #first {
            border-left: none; }
    #contentContainer section#motomeruDR, #contentContainer section#merit, #contentContainer section#profile {
      box-sizing: border-box;
      padding: 0 25px; }
      @media screen and (min-width: 800px) {
        #contentContainer section#motomeruDR, #contentContainer section#merit, #contentContainer section#profile {
          padding: 0 40px; } }
    #contentContainer section#motomeruDR article {
      display: flex;
      flex-direction: column; }
      @media screen and (min-width: 800px) {
        #contentContainer section#motomeruDR article {
          flex-direction: row;
          gap: 3%;
          margin-bottom: 40px; }
          #contentContainer section#motomeruDR article #order {
            order: 2; }
          #contentContainer section#motomeruDR article .item-content {
            width: 37%; }
          #contentContainer section#motomeruDR article .item-img {
            width: 60%;
            height: auto; }
          #contentContainer section#motomeruDR article .item-box {
            animation-delay: 1.0s; } }
      #contentContainer section#motomeruDR article .item-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0px;
        margin-bottom: 25px; }
        @media screen and (min-width: 600px) {
          #contentContainer section#motomeruDR article .item-content {
            grid-template-columns: 1fr 1fr;
            margin-bottom: 25px;
            gap: 30px; } }
        @media screen and (min-width: 800px) {
          #contentContainer section#motomeruDR article .item-content {
            grid-template-columns: 1fr;
            margin-bottom: 0px;
            gap: 25px; } }
    #contentContainer section#merit .item-img {
      width: 100%;
      height: auto;
      margin: 0 auto; }
      @media screen and (min-width: 800px) {
        #contentContainer section#merit .item-img {
          width: 60%; } }
    #contentContainer section#merit .grid3 {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px; }
      @media screen and (min-width: 620px) {
        #contentContainer section#merit .grid3 {
          grid-template-columns: 1fr 1fr 1fr; } }
      #contentContainer section#merit .grid3 .point-title {
        display: block;
        width: 180px;
        font-size: 25px;
        font-weight: 700;
        color: #002680;
        text-align: center;
        position: relative;
        padding-right: 12px;
        margin: 0 auto 10px; }
        @media screen and (min-width: 620px) {
          #contentContainer section#merit .grid3 .point-title {
            width: 160px;
            font-size: 22px; } }
        #contentContainer section#merit .grid3 .point-title::before {
          content: url(../img/shine1.png);
          display: block;
          position: absolute;
          left: 0px;
          top: -3px; }
        #contentContainer section#merit .grid3 .point-title::after {
          content: url(../img/shine2.png);
          display: block;
          position: absolute;
          right: 8px;
          top: 0px; }
    #contentContainer section#merit .parent {
      border: 1px solid #8093BF;
      display: flex;
      flex-direction: column; }
      #contentContainer section#merit .parent .sm620 {
        display: block;
        margin: 0 auto; }
      #contentContainer section#merit .parent .pc620 {
        display: none; }
      @media screen and (min-width: 620px) {
        #contentContainer section#merit .parent .sm620 {
          display: none; }
        #contentContainer section#merit .parent .pc620 {
          display: block;
          margin: 0 auto; } }
      #contentContainer section#merit .parent .child1 {
        color: #fff;
        background: #8093BF;
        font-size: 18px;
        text-align: center;
        padding: 5px 0 10px; }
      #contentContainer section#merit .parent .child2 {
        background: #fff;
        padding: 10px 10px; }
      @media screen and (min-width: 800px) {
        #contentContainer section#merit .parent {
          flex-direction: row; }
          #contentContainer section#merit .parent .child1 {
            flex: 0 0 170px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0; }
          #contentContainer section#merit .parent .child2 {
            flex: 1 1 auto;
            display: flex;
            flex-direction: column;
            background: #fff;
            padding: 20px 20px; } }
    #contentContainer section#profile {
      position: relative; }
      #contentContainer section#profile .pc600 {
        display: none; }
      @media screen and (min-width: 600px) {
        #contentContainer section#profile .sm600 {
          display: none; }
        #contentContainer section#profile .pc600 {
          display: inline-block; } }
      #contentContainer section#profile .parent2 {
        display: flex;
        padding-right: 0px;
        flex-direction: row;
        justify-content: center; }
        #contentContainer section#profile .parent2 .item-img {
          width: 80%;
          height: auto;
          margin: 0 auto; }
        #contentContainer section#profile .parent2 .circle_space {
          width: 20%;
          height: 0;
          position: relative; }
        @media screen and (min-width: 600px) {
          #contentContainer section#profile .parent2 {
            padding-right: 25px;
            flex-direction: row; }
            #contentContainer section#profile .parent2 .item-img {
              width: 60%;
              height: auto; }
            #contentContainer section#profile .parent2 .circle_space,
            #contentContainer section#profile .parent2 .circle_space2 {
              width: 40%;
              position: relative; } }
        @media screen and (min-width: 800px) {
          #contentContainer section#profile .parent2 {
            padding-right: 40px; } }
      #contentContainer section#profile #circle {
        background: #333;
        z-index: 99;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: -10px;
        left: -10px;
        width: 170px;
        height: 170px;
        border-radius: 50%; }
        @media screen and (min-width: 600px) {
          #contentContainer section#profile #circle {
            width: 220px;
            height: 220px;
            top: -15px;
            left: 30px; } }
        @media screen and (min-width: 700px) {
          #contentContainer section#profile #circle {
            width: 250px;
            height: 250px;
            top: -10px;
            left: 70px; } }
        #contentContainer section#profile #circle #circle_text {
          color: #fff;
          font-weight: 500;
          font-size: 16px;
          width: 116px;
          line-height: 1.6; }
          @media screen and (min-width: 600px) {
            #contentContainer section#profile #circle #circle_text {
              font-size: 18px;
              line-height: 1.8;
              width: 130px; } }
          @media screen and (min-width: 700px) {
            #contentContainer section#profile #circle #circle_text {
              padding-left: 15px;
              font-size: 20px;
              width: 150px; } }
      #contentContainer section#profile #name {
        margin-top: 15px;
        width: 100%;
        height: auto;
        text-align: left;
        position: relative; }
        @media screen and (min-width: 600px) {
          #contentContainer section#profile #name {
            width: 60%;
            text-align: center; } }
        #contentContainer section#profile #name #name1 {
          font-size: 15px;
          font-weight: 400;
          background: #333;
          color: #fff;
          padding: 0px 6px 2px;
          border-radius: 5px;
          position: absolute;
          top: 7px; }
        #contentContainer section#profile #name #name2 {
          font-size: 25px;
          font-weight: 500;
          padding-left: 40px; }
        #contentContainer section#profile #name #name3 {
          font-size: 20px;
          font-weight: 700;
          color: #555; }
      #contentContainer section#profile .grid2 {
        margin-top: 25px;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px; }
        @media screen and (min-width: 600px) {
          #contentContainer section#profile .grid2 {
            margin-top: 50px;
            padding: 0 25px; } }
        @media screen and (min-width: 800px) {
          #contentContainer section#profile .grid2 {
            padding: 0 40px;
            grid-template-columns: 1fr 1fr; } }
        #contentContainer section#profile .grid2 .history-list {
          display: flex; }
          #contentContainer section#profile .grid2 .history-list .year {
            width: 60px;
            padding: 1px 0; }
          #contentContainer section#profile .grid2 .history-list .event {
            padding: 1px 0; }
        #contentContainer section#profile .grid2 .association-list {
          font-size: 15px;
          line-height: 1.62; }
      #contentContainer section#profile .message {
        margin-top: 50px;
        padding: 0; }
        @media screen and (min-width: 600px) {
          #contentContainer section#profile .message {
            padding: 0 23px; } }
        @media screen and (min-width: 800px) {
          #contentContainer section#profile .message {
            padding: 0 38px; } }
        #contentContainer section#profile .message .decoration1 {
          width: 100%;
          height: 18px;
          background: url(../img/decoration1.png) repeat-x; }
        #contentContainer section#profile .message .decoration2 {
          width: 100%;
          height: 18px;
          background: url(../img/decoration2.png) repeat-x;
          margin-top: 35px; }
        #contentContainer section#profile .message .message-title {
          display: block;
          font-size: 18px;
          font-weight: 500;
          text-align: center;
          margin: 25px 0 25px; }
          #contentContainer section#profile .message .message-title img {
            padding-bottom: 5px; }
    #contentContainer section#recruit {
      box-sizing: border-box;
      padding: 0 20px; }
      @media screen and (min-width: 800px) {
        #contentContainer section#recruit {
          padding: 0 40px; } }
      #contentContainer section#recruit .recruit-parent {
        border: 1px solid #A29266;
        background: #fff; }
      #contentContainer section#recruit .recruit-list {
        display: flex; }
      #contentContainer section#recruit .left {
        background: #A29266;
        color: #fff;
        width: 130px;
        padding: 10px 16px;
        border-bottom: 1px solid #fff; }
      #contentContainer section#recruit .right {
        width: 100%;
        padding: 10px 16px;
        border-bottom: 1px solid #A29266; }
      #contentContainer section#recruit .last {
        border-bottom: none; }
      #contentContainer section#recruit .button01 {
        text-align: center; }
      #contentContainer section#recruit .link {
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        font-weight: 500;
        background: #002680;
        color: #fff;
        padding: 3px 0px 4px;
        width: 265px;
        border-radius: 8px;
        box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6); }
        #contentContainer section#recruit .link:hover {
          background: #19215A; }
        #contentContainer section#recruit .link:active {
          background: #19215A; }
    #contentContainer section#contact {
      padding-top: 60px;
      background-color: #ebe7de;
      background-image: url(../img/back_form.jpg);
      background-position: right 0 bottom 0;
      background-repeat: no-repeat;
      padding-bottom: 6rem; }
      #contentContainer section#contact .menu-title {
        margin: 0 auto 40px; }

.UIFormContainer .partsBox #sBox {
  width: 100%;
  height: 3.4rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  padding-left: 3.0rem; }
.UIFormContainer .partsBox #matter {
  height: 8.0rem; }

_::-webkit-full-page-media, _:future, :root input[type=radio] + label:before {
  top: 0.35rem !important; }

_::-webkit-full-page-media, _:future, :root input[type=radio] + label:after {
  top: calc(0.35rem + 0.55rem) !important; }

_::-webkit-full-page-media, _:future, :root input[type=radio]:checked + label:after {
  top: calc(0.35rem + 0.25rem) !important; }

.buttonFrame {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%; }

#formConf {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%; }
  #formConf #titleBox {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.0rem;
    margin-bottom: 1.0rem;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: bold;
    color: #000000;
    font-size: 1.5rem; }
  #formConf #descriptionBox {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.0rem;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: bold;
    color: #a0a0a0;
    font-size: 1rem;
    line-height: calc(1rem * 1.4); }
  #formConf #formSeparatorBox {
    width: 100%;
    height: 1.5rem;
    border-bottom: 1px dotted #d0d0d0;
    margin-bottom: 1.5rem; }
  #formConf #formConfBox {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    width: 95%; }
    #formConf #formConfBox #formLabelBox {
      width: 90%;
      font-family: "Zen Kaku Gothic Antique", sans-serif;
      font-weight: bold;
      color: #a0a0a0;
      font-size: 1rem; }
    #formConf #formConfBox #formPartsBox {
      width: 85%;
      font-family: "Zen Kaku Gothic Antique", sans-serif;
      color: #a0a0a0;
      font-size: 1rem; }
  #formConf #formButtonBox {
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    flex-direction: row;
    margin-top: 3.0rem;
    margin-bottom: 3.0rem; }
    #formConf #formButtonBox #back_button, #formConf #formButtonBox #send_button {
      font-size: 1.4rem;
      width: 45%; }
    #formConf #formButtonBox #back_error_button {
      font-size: 1.8rem;
      width: 100%; }
      @media screen and (min-width: 800px) {
        #formConf #formButtonBox #back_error_button {
          width: 60%; } }

input, textarea, select {
  appearance: none;
  box-sizing: border-box;
  width: 100%;
  padding: 0.4rem;
  background-color: rgba(255, 255, 255, 0.8);
  outline: none;
  border: none;
  border-radius: 0.3rem;
  box-sizing: border-box;
  color: #000000;
  font-size: 1.0rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  transform: translateZ(0);
  transition: all 0.2s ease-in-out; }
  input::placeholder, input textarea::placeholder, textarea::placeholder, textarea textarea::placeholder, select::placeholder, select textarea::placeholder {
    color: #9FA1A8; }
  input:hover::placeholder, input textarea:hover::placeholder, textarea:hover::placeholder, textarea textarea:hover::placeholder, select:hover::placeholder, select textarea:hover::placeholder {
    color: #9FA1A8; }
  input:hover:focus::placeholder, input textarea:hover:focus::placeholder, textarea:hover:focus::placeholder, textarea textarea:hover:focus::placeholder, select:hover:focus::placeholder, select textarea:hover:focus::placeholder {
    color: rgba(255, 255, 255, 0.8); }
  input:focus, textarea:focus, select:focus {
    transform: translateZ(0);
    filter: drop-shadow(0rem 0rem 0.1rem #3498db);
    background-color: rgba(255, 255, 255, 0.8);
    border: solid 1px #3498db; }

textarea {
  resize: none; }

select {
  padding-right: 1.5rem;
  text-overflow: ellipsis; }

.selectLabel {
  position: relative; }

.selectLabel:after {
  display: block;
  content: "";
  position: absolute;
  top: 1.0rem;
  right: 0.5rem;
  border-top: 0.5rem solid #000000;
  border-right: 0.3rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-left: 0.3rem solid transparent;
  pointer-events: none; }

input[type=radio],
input[type=checkbox] {
  opacity: 0.0;
  appearance: none;
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  outline: none; }
  input[type=radio] + label,
  input[type=checkbox] + label {
    border: solid 1px transparent; }
  input[type=radio]:focus + label:before,
  input[type=checkbox]:focus + label:before {
    border: solid 1px #3498db;
    transform: translateZ(0);
    box-shadow: 0rem 0rem 0.1rem #3498db; }

input[type=radio] + label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
  padding-left: 2.2rem;
  padding-right: 0.5rem;
  padding-bottom: 0.1rem;
  border-radius: 0.3rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #000000;
  font-size: 1.0rem;
  font-weight: normal;
  transition: all 0.2s ease-in-out; }
  input[type=radio] + label:before {
    position: absolute;
    content: "";
    top: 0.2rem;
    left: 0rem;
    width: 1.2rem;
    height: 1.2rem;
    background: rgba(255, 255, 255, 0.8);
    box-sizing: border-box;
    border: none;
    border-radius: 50%;
    margin-left: 0.5rem;
    transition: all 0.2s ease-in-out; }
  input[type=radio] + label:after {
    position: absolute;
    content: "";
    top: calc(0.2rem + 0.6rem);
    left: 1.1rem;
    width: 0.0rem;
    height: 0.0rem;
    border-radius: 50%;
    background: transparent;
    transition: all 0.2s ease-in-out; }

input[type=radio]:checked + label:after {
  position: absolute;
  content: "";
  top: calc(0.2rem + 0.25rem);
  left: 0.75rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #000000; }

_::-webkit-full-page-media, _:future, :root input[type=radio] + label:before {
  top: 0.05rem; }

_::-webkit-full-page-media, _:future, :root input[type=radio] + label:after {
  top: calc(0.05rem + 0.55rem); }

_::-webkit-full-page-media, _:future, :root input[type=radio]:checked + label:after {
  top: calc(0.05rem + 0.25rem); }

input[type=checkbox] + label {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
  padding-left: 2.2rem;
  padding-right: 0.5rem;
  padding-bottom: 0.1rem;
  border-radius: 0.3rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #000000;
  font-size: 1.0rem;
  line-height: 1.5rem;
  font-weight: normal;
  transition: all 0.2s ease-in-out; }
  input[type=checkbox] + label:before {
    position: absolute;
    content: "";
    top: 0.2rem;
    left: 0.5rem;
    width: 1.2rem;
    height: 1.2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10%;
    border: none;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out; }
  input[type=checkbox] + label:after {
    position: absolute;
    content: "";
    border-left: 0.25rem solid transparent;
    border-bottom: 0.25rem solid transparent;
    width: 1.1rem;
    height: 0.4rem;
    transform: rotate(-90deg);
    left: 0.0rem;
    top: 0.3rem;
    transition: all 0.2s ease-in-out; }

input[type=checkbox]:checked + label:after {
  position: absolute;
  content: "";
  border-left: 0.25rem solid #000000;
  border-bottom: 0.25rem solid #000000;
  width: 1.1rem;
  height: 0.4rem;
  transform: rotate(-45deg);
  left: 0.60rem;
  top: 0.3rem; }

button {
  width: 100%;
  padding-top: 0.7rem;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  padding-bottom: 0.7rem;
  outline: none;
  cursor: pointer;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(to top, #002680, #002680);
  transform: translateZ(0);
  filter: drop-shadow(0rem 0.2rem 0.2rem rgba(0, 0, 0, 0.2)); }
  button:active {
    background: linear-gradient(to bottom, #19215A, #19215A);
    transform: translateZ(0);
    filter: drop-shadow(0rem 0.2rem 0.2rem rgba(0, 0, 0, 0.2)); }
  button:hover {
    background: linear-gradient(to bottom, #19215A, #19215A);
    transform: translateZ(0);
    filter: drop-shadow(0rem 0.2rem 0.2rem rgba(0, 0, 0, 0.2)); }
  button:disabled {
    cursor: default;
    color: #7a7c80;
    opacity: 1.0;
    background: linear-gradient(to bottom, #bbbfc4, #afb3b8);
    filter: none; }
  button:focus {
    background: linear-gradient(to bottom, #19215A, #19215A);
    transform: translateZ(0);
    filter: drop-shadow(0rem 0.2rem 0.2rem rgba(0, 0, 0, 0.2)); }

.UIFormPasswordBox {
  display: flex;
  flex-direction: column;
  align-items: flex-end; }
  .UIFormPasswordBox .UIFormPasswordFieldIcon {
    position: relative;
    z-index: 2;
    top: -1.8rem;
    width: 1.2rem;
    height: 1.2rem;
    padding-right: 0.5rem;
    cursor: pointer; }
    .UIFormPasswordBox .UIFormPasswordFieldIcon svg {
      fill: #000000; }
    .UIFormPasswordBox .UIFormPasswordFieldIcon#UIFormHidePasswordBtn {
      display: none; }

.UIFormAddressBox {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column; }
  .UIFormAddressBox .UIFormAddressBoxSubText {
    font-size: 0.8rem; }
  .UIFormAddressBox .UIFormAddressChildBox {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-bottom: 0.8rem; }
    .UIFormAddressBox .UIFormAddressChildBox:last-child {
      margin-bottom: 0; }
    .UIFormAddressBox .UIFormAddressChildBox #postalCode {
      width: calc(100% - 9rem); }
      @media screen and (min-width: 800px) {
        .UIFormAddressBox .UIFormAddressChildBox #postalCode {
          width: 12rem; } }
    .UIFormAddressBox .UIFormAddressChildBox #address {
      width: 100%; }
    .UIFormAddressBox .UIFormAddressChildBox .UIFormAddressButtonBox {
      position: relative;
      width: 9rem;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      margin-left: 1.5rem; }
      .UIFormAddressBox .UIFormAddressChildBox .UIFormAddressButtonBox #UIFormAddressSearchButton {
        display: none;
        width: 100%;
        font-size: 1.2rem;
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
        padding-left: 1.0rem;
        padding-right: 1.0rem;
        border-radius: 0.3rem; }
      .UIFormAddressBox .UIFormAddressChildBox .UIFormAddressButtonBox #UIFormDisableAddressSearchButton {
        display: block;
        width: 100%;
        font-size: 1.2rem;
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
        padding-left: 1.0rem;
        padding-right: 1.0rem;
        border-radius: 0.3rem;
        background: #aaaaaa;
        color: #ffffff;
        filter: none;
        cursor: auto; }

.UIFormContainer {
  position: relative;
  width: 100%;
  left: 0%;
  padding-left: 1.0rem;
  padding-right: 1.0rem;
  box-sizing: border-box; }
  @media screen and (min-width: 800px) {
    .UIFormContainer {
      width: 80%;
      left: 10%; } }
  .UIFormContainer .labelBox {
    width: 100%;
    font-weight: bold;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    color: #000000; }
  .UIFormContainer .partsBox {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-direction: column;
    flex-wrap: wrap; }
    .UIFormContainer .partsBox input[type=text] {
      width: 70%; }
      @media screen and (min-width: 800px) {
        .UIFormContainer .partsBox input[type=text] {
          width: 70%; } }
    .UIFormContainer .partsBox .UIFormPasswordBox {
      width: 70%; }
      @media screen and (min-width: 800px) {
        .UIFormContainer .partsBox .UIFormPasswordBox {
          width: 70%; } }
      .UIFormContainer .partsBox .UIFormPasswordBox input[type=text], .UIFormContainer .partsBox .UIFormPasswordBox input[type=password] {
        width: 100%; }
    .UIFormContainer .partsBox .UIFormAddressBox {
      width: 100%; }
      @media screen and (min-width: 800px) {
        .UIFormContainer .partsBox .UIFormAddressBox {
          width: 80%; } }
    .UIFormContainer .partsBox#checkboxAndRadioButtonBox {
      margin-left: 1rem; }
      .UIFormContainer .partsBox#checkboxAndRadioButtonBox input[type=radio] + label,
      .UIFormContainer .partsBox#checkboxAndRadioButtonBox input[type=checkbox] + label {
        margin-bottom: 0.3rem; }
      .UIFormContainer .partsBox#checkboxAndRadioButtonBox input[type=radio] + label:last-child,
      .UIFormContainer .partsBox#checkboxAndRadioButtonBox input[type=checkbox] + label:last-child {
        margin-bottom: 0.0rem; }
  .UIFormContainer .buttonBox {
    width: 100%;
    display: flex;
    justify-content: center; }
    .UIFormContainer .buttonBox button {
      width: 100%; }
      @media screen and (min-width: 800px) {
        .UIFormContainer .buttonBox button {
          width: 60%; } }
  .UIFormContainer .separatorBox_thin {
    width: 100%;
    height: 0.6rem; }
  .UIFormContainer .separatorBox_thick {
    width: 100%;
    height: 1.2rem; }
  .UIFormContainer .UIFormContainerRequiredBox, .UIFormContainer .UIFormContainerOptionalBox {
    margin-left: 1.0rem;
    min-width: 3.0rem;
    min-height: 1.8rem;
    width: 3.0rem;
    height: 1.8rem;
    border-radius: 0.2rem;
    background-color: #D9383F;
    color: #ffffff;
    font-size: 1.0rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.5rem; }
    .UIFormContainer .UIFormContainerRequiredBox::before, .UIFormContainer .UIFormContainerOptionalBox::before {
      content: "必須"; }
  .UIFormContainer .UIFormContainerOptionalBox {
    background-color: #9FA1A8;
    color: #ffffff; }
    .UIFormContainer .UIFormContainerOptionalBox::before {
      content: "任意"; }

.UITabView {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }
  .UITabView #tab1:checked ~ .UITabViewBox > #UITabView1,
  .UITabView #tab2:checked ~ .UITabViewBox > #UITabView2,
  .UITabView #tab3:checked ~ .UITabViewBox > #UITabView3,
  .UITabView #tab4:checked ~ .UITabViewBox > #UITabView4,
  .UITabView #tab5:checked ~ .UITabViewBox > #UITabView5,
  .UITabView #tab6:checked ~ .UITabViewBox > #UITabView6 {
    display: flex; }
  .UITabView input[type="radio"] {
    display: none; }
    .UITabView input[type="radio"] + label {
      width: calc(100% / 6);
      display: inline-block;
      position: relative;
      cursor: pointer;
      box-sizing: border-box;
      text-align: center;
      border-radius: 0.3em 0.3rem 0.0rem 0.0rem;
      padding: 0;
      padding-top: 0.1rem;
      font-family: "Zen Kaku Gothic Antique", sans-serif;
      font-size: 1.0rem;
      font-weight: normal;
      color: #000000;
      background-color: #aaaaaa;
      transition: none; }
      .UITabView input[type="radio"] + label:before {
        top: 0;
        left: 0;
        width: 0;
        height: 0;
        background: none;
        border: none; }
      .UITabView input[type="radio"] + label:after {
        transition: none; }
    .UITabView input[type="radio"]:checked + #tabLabel {
      border-bottom: none;
      font-weight: bold;
      color: #ffffff;
      background-color: #3498db; }
    .UITabView input[type="radio"]:checked + #tabLabel:after {
      background: none; }
  .UITabView > .UITabViewBox > div {
    display: none; }
  .UITabView .UITabViewBox {
    width: 100%;
    display: flex;
    justify-content: center;
    border-top: none;
    background-color: #aaaaaa; }
