@charset "UTF-8";
@-webkit-keyframes hideSplash {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
@keyframes hideSplash {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
    /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
    -ms-overflow-style: none;
    /*Firefoxへの対応*/
    scrollbar-width: none;
}

  *::-webkit-scrollbar{
    display: none;
  }
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

body {
  background-color: #f4f4f4;
  font-size: 12px;
  color: #000;
  font-family: "Sawarabi Mincho";
}

.imgbox {
  height: inherit;
}

img {
  -o-object-fit: contain;
  object-fit: contain;
  height: 100%;
  width: 100%;
  max-width: 100%;
  padding: 1px;
}

.wrapper {
  padding: 15px;
  overflow: scroll;
  white-space: nowrap;
  height: 100%;
  width: 100%;
  max-width: 1123px;
  margin: 0 auto;
  background: #fff;
}

.sheet {
  width: calc(100% - 10px);
  max-width: 540px;
  display: inline-block;
  height: 100%;
  vertical-align: top;
}
.sheet-ttl {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}
.sheet-ttl .ttl {
  font-size: 20px;
}
.sheet-ttl .ymd {
  font-size: 14px;
}
.sheet + .sheet {
  margin-left: 10px;
  margin-top: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 45px 45px 1fr;
}
.grid-3 > div {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  border-bottom: 1px solid #333;
}
.grid-3 > div:nth-child(3n + 2) {
  border-left: 1px dashed #333;
  border-right: 1px solid #333;
}
.grid-3__ttl {
  height: 30px !important;
}

.mt-100 {
  margin-top: 100px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.grid-2 > div {
  height: 60px;
}
.grid-2__ttl {
  height: 30px !important;
}
.grid-2 .imgbox {
  height: 30px;
}

.border-w2 {
  border: 2px solid #333;
}

.border-b,
.additional-contact,
.sex,
.address,
.birthday,
.your-name__top,
.textarea-view,
.grid-2 > div {
  border-bottom: 1px solid #333;
}

.border-t,
.sex,
.your-name {
  border-top: 1px solid #333;
}

.border-r,
.additional-contact,
.contact,
.sex,
.address,
.birthday,
.your-name,
.grid-2 > div:nth-child(odd) {
  border-right: 1px solid #333;
}

.border-l,
.additional-contact,
.contact,
.address,
.birthday,
.your-name {
  border-left: 1px solid #333;
}

.content-padding,
.textarea-view {
  padding: 5px;
}

.textarea-view {
  height: 201.5px;
}
.textarea-view .imgbox {
  height: auto;
}

.container {
  display: grid;
  grid-template-columns: 1fr 110px;
  grid-template-rows: 100px 80px 110px;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas: "your-name id-photo" "birthday id-photo" "address sex";
}

.id-photo {
  grid-area: id-photo;
}
.id-photo .imgbox {
  padding-left: 5px;
  padding-bottom: 5px;
}

.your-name {
  grid-area: your-name;
  border-width: 2px;
}
.your-name__top {
  display: flex;
  align-items: center;
  height: calc(100% - 30px);
}
.your-name__top div {
  padding: 5px;
}
.your-name__top div:first-child {
  height: 30px;
}

.birthday {
  grid-area: birthday;
  border-left-width: 2px;
  border-right-width: 2px;
  display: flex;
  align-items: center;
  padding: 5px;
}
.birthday > div:last-child {
  flex-grow: 1;
}
.birthday-inner {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 30px;
  margin-top: 10px;
  flex-grow: 1;
  margin-right: 20px;
}
.birthday-inner .imgbox {
  width: 30px;
}
.birthday .age {
  display: flex;
  width: 70px;
  align-items: flex-end;
  margin-left: auto;
  height: 32px;
  margin-right: 20px;
}
.birthday .age .imgbox {
  width: 30px;
}

.address {
  grid-area: address;
  border-left-width: 2px;
}

.sex {
  grid-area: sex;
  padding: 5px;
  border-top-width: 2px;
  border-right-width: 2px;
}
.sex div {
  width: 100%;
}
.sex div:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100% - 30px);
}

.contact {
  border-width: 2px;
}

.additional-contact {
  border-width: 2px;
  height: 145px;
}
.additional-contact__top {
  display: flex;
}
.additional-contact__top div {
  padding: 5px;
  height: 30px;
}
.additional-contact__top + .imgbox {
  height: 60px;
}
.additional-contact__text {
  position: relative;
  text-align: right;
}
.additional-contact__text::after {
  content: "方";
  display: block;
  position: absolute;
  top: -30px;
  right: 5px;
}

.kanabox {
  display: flex;
  border-bottom: 1px dotted #333;
  padding: 5px;
  height: 30px;
  align-items: center;
  gap: 10px;
}

.history {
  margin-top: 10px;
}

.load-splash {
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-animation: hideSplash 2s linear 1.5s;
  animation: hideSplash 2s linear 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  pointer-events: none;
} /*# sourceMappingURL=styles.css.map */

