html {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
}

body {
    background-color: #EAEAEA;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    font-family: 'Noto Sans JP', sans-serif;
}


/* 2023.6.29  *annotation component */

.modal-window {
    width: 100%;
    height: 100vh;
    background-color:  rgba(0, 26, 77, 0.75);;
    position: fixed;
    z-index: 10000;
}


.flag-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;
    text-align: right;
}

.cancel-btn {
    margin-right: -30px;
}

.flag {
    background-color: white;
    color: #001A4D;
    width: 9em;
    margin: auto;
    border-radius: 3%;
    padding: 30px;
}

.anno-box {
    display: flex;
}

.banner-con {
    height: 100%;
    text-align: center;
}

.banner-message {
    font-size: .53em;
}

#pop-up {
    font-size: .65em;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48;
  color: white;
}

.info-bar {
    height: 70px;
    background-color: #001A4D;
    padding: 5px;
}

.annotation {
    color: #001A4D;
    font-size: .45em;
    font-weight: bold;
    background-color: #EADA18;
    width: fit-content;
    padding: 5px;
    border-radius: 5px;
    margin-left: 5px;
}

.annotation-mes {
    font-weight: bold;
    color: white;
    font-size: .5em;
    text-align: center;
}

/* navbar */

.logo-bar {
    width: 100vw;
    height: 90px;
    position: fixed;
    z-index: 100;
    justify-content: space-between;
}

.nav-components {
   display: flex;
}

.scroll-change {
    background-color: white;
    height: 70px;
}

.logo {
    margin-top: 10px;
    margin-left: 10px;
    width: 25%;
    margin-right: 50%;
    background-image: url(assets/logo.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

/* hamburger menu */

.hamburger-menu {
    display: block;
    width: 60px;
    height: 60px;
    float: right;
    position: relative;
    bottom: 5px;
}
  
.menu-bg {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    bottom: 0;
    width: 50px;
    height: 50px;
    background-color: #FEA500;
    border-radius: 50%;
    transition: transform 250ms ease;
    cursor: pointer;
    z-index: 200;
    margin: auto;
}
  
.menu-bg span {
    position: relative;
    display: block;
    width: 50%;
    height: 2px;
    background-color: white;
    float: left;
    transform-origin: center center;
    transition: transform 250ms ease;
    z-index: 200;
}
  
.menu-bg span:nth-of-type(1) {
    transform: translateY(-5px);
}
  
.menu-bg span:nth-of-type(3) {
    transform: translateY(5px);
}
  
#menu {
    display: none;
    position: relative;
}
  
#menu:checked ~ .menu-bg {
    background-color: transparent;
    transform: rotate(360deg);
    transition: transform 250ms ease;
}
  
#menu:checked ~ .menu-bg span {
    background-color: #FEA500;
    transition: transform 250ms ease;
}
  
#menu:checked ~ .menu-bg span:nth-of-type(1) {
    transform: translateY(1px) rotate(45deg);
}
  
#menu:checked ~ .menu-bg span:nth-of-type(2) {
    display: none;
}
  
#menu:checked ~ .menu-bg span:nth-of-type(3) {
    transform: translateY(-1px) rotate(-45deg);
}
 
#menu:checked ~ .nav {
    right: 0px;
    transition: right 500ms ease;
}
  
#menu:checked ~ main {
    transform: translateX(250px);
    transition: transform 500ms ease;
}
  
  
.nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: white;
    transition: right 500ms ease;
    z-index: 10;
}
  
.nav ul {
    position: relative;
    list-style-type: none;
    margin: 100px 0;
    padding: 0;
}
  
.nav ul li {
    position: relative;
    display: block;
}
  
.nav ul li a {
    position: relative;
    display: block;
    margin: 0;
    padding: 30px 30px;
    color: #001A4D;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    font-size: .75em;
}
  
.nav ul li a:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: width 250ms ease;
    z-index: -1;
}
  
.nav ul li a:hover {
    color: #FEA500;
}
  
.nav ul li a:hover:before {
    width: 100%;
    height: 100%;
    background-color: white;
    transition: width 50ms ease;
}

.btn-innav {
    width: 100%;
    text-align: center;
}

.container {
    position: relative;
    max-width: 787px;
    width: 100%;
}

.background {
    position: relative;
    display: flex;
    height: 100vh;
}

.green {
    background-color: #008081;
    /* background-image: url(assets/green.png); */
    background-repeat: no-repeat;
    width: 50%;
    height: 120%;
}

.green img {
    width: 100%;
    margin-top: 50vh;
}

.orange {
    background-color: #FEA500;
    /* background-image: url(assets/orange.png); */
    background-repeat: no-repeat;
    width: 50%;
    height: 120%;
}

.orange img {
    width: 100%;
    margin-top: 50vh;
}

.top-mes-con {
    position: absolute;
    z-index: 15;
    top: 20%;
}

.top-message {
    font-size: 1em;
    font-weight: bold;
    background-color: white;
    color: #001A4D;
    padding: 5px 10px;
    width: fit-content;
    margin-top: 0;
    margin-bottom: 20px;
}

.hero {
    position: absolute;
    width: 85%;
    bottom: 5vh;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
}

.hero-message {
    font-size: .65em;
    font-weight: bold;
    color: #001A4D;
    text-align: center;
    width: 100%;
}





/* contents */

.feature {
    width: 100%;
    height: 95vh;
    background-color: #EAEAEA;
}

.title {
    padding-top: 20px;
    text-align: center;
    height: fit-content;
    opacity: 1!important;
}

.sub {
    margin-top: 20px;
    color: #001A4D;
    font-size: .8em;
    font-weight: bold;
    margin-bottom: 5px;
}

.main {
    margin-top: 5px;
    color: #001A4D;
    font-size: 1.5em;
    font-weight: bold;
}

.sidescroll-box {
    margin-left: 5%;
    margin-right: 5%;
    width: 90%;
    height: 70vh;
    overflow: auto;
    overscroll-behavior-x: contain;
    display: flex;
    scroll-snap-type: x mandatory;
    background-color: #EAEAEA;
}
  
.box {
    width: 80%;
    height: 80%;
    background-color: white;
    border-radius: 10px;
    text-align: center;
    margin-right: 5%;
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 10% 0;
}

.box img {
    height: 30%;
}

#end {
    margin-right: 0;
}

.box p {
    padding-top: 10px;
    color: #001A4D;
    font-size: .5em;
    font-weight: bold;
    line-height: 2em;
}

#f-title {
    font-size: .8em;
}

#fi2 {
    width: auto;
    height: 40%;
}

#fi3 {
    width: auto;
    height: 40%;
}

#fi4 {
    width: auto;
    height: 40%;
}


@media screen and (max-width: 375px ) {

    .feature {
        width: 100%;
        height: 100vh;
        background-color: #EAEAEA;
    }

    .sidescroll-box {
        margin-left: 5%;
        margin-right: 5%;
        width: 90%;
        height: 75vh;
        overflow: auto;
        overscroll-behavior-x: contain;
        display: flex;
        scroll-snap-type: x mandatory;
        background-color: #EAEAEA;
    }
    
    #fi2 {
        width: auto;
        height: 30%;
    }
    
    #fi3 {
        width: auto;
        height: 30%;
    }
    
    #fi4 {
        width: auto;
        height: 30%;
    }

}


.step-number {
    width: 45px;
    height: 45px;
    position: relative;
    background-color: #FEA500;
    border-radius: 50%;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.step-number span {
    position: absolute;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.price {
    position: relative;
    height: fit-content;
}

.bg-pattern {
    top: 0;
    left: 0;
    width: 100vw;
    height: fit-content;
    background-color: #fff;
}

#grid-g {
background-image:
    repeating-linear-gradient(to bottom,
    transparent 25px,
    #97cfcf 26px,  #97cfcf 26px,
    transparent 27px,  transparent 51px, 
    #97cfcf 52px,  #97cfcf 52px,
    transparent 53px,  transparent 77px, 
    #97cfcf 78px,  #97cfcf 78px,
    transparent 79px,  transparent 103px, 
    #97cfcf 104px,  #97cfcf 104px,
    transparent 105px,  transparent 129px, 
    #97cfcf 130px,  #97cfcf 130px),

    repeating-linear-gradient(to right,
    transparent 25px,
    #97cfcf 26px,  #97cfcf 26px,
    transparent 27px,  transparent 51px, 
    #97cfcf 52px,  #97cfcf 52px,
    transparent 53px,  transparent 77px, 
    #97cfcf 78px,  #97cfcf 78px,
    transparent 79px,  transparent 103px, 
    #97cfcf 104px,  #97cfcf 104px,
    transparent 105px,  transparent 129px, 
    #97cfcf 130px,  #97cfcf 130px);
}

.price-contents img {
    width: 80%;
}

#man-icon {
    width: 50%;
}

#priceboard {
    width: 85%;
    margin-top: 30px;
    margin-bottom: 30px;
}

.btnzone {
    height: 80px;
}

.simulatorBtn {
    text-decoration: none;
    padding: 15px 30px;
    margin: 30px 0;
    font-size: .65em;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    background-color: #008081;
    color: white;
    border-bottom: #001A4D 3px solid ;
    border-right: #001A4D 2px solid ;
}

.price-contents {
    text-align: center;
}

.step {
    text-align: center;
}

.step p {
    color: #FEA500;
    font-weight: bold;
    line-height: 10px;
}

#num {
    font-size: 2em;
    margin-top: -1px;
}
     

.flow-contents {
    background-color: white;
    height: fit-content;
    border-radius: 10px;
    border: #FEA500 3px solid;
    position: relative;
    margin-bottom: 75px;
}

.flow-contents p {
    font-size: .65em;
    font-weight: 550;
    color: #001A4D;
}

#flow-title {
    font-size: .85em;
}

#odd-outfit {
    border-left: none;
    margin-left: -30px;
    width: 100%;
}

#odd-contents {
    margin-left: 30px;
    padding-left: 20px;
}

#even-outfit {
    border-right: none;
    border-radius: 10px 0px 0px 10px;
    margin-left: 30px;
    width: 90%;
}

#even-contents {
    margin-left: 30px;
    padding-left: 40px;
}


.appBtn {
    text-decoration: none;
    padding: 15px 30px;
    margin: 30px 0;
    font-size: .65em;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    background-color: #FEA500;
    color: white;
    border-bottom: #e08301 3px solid ;
    border-right: #e08301 3px solid ;
    z-index: 100;
}

#odd-img {
    position: relative;
    padding-left: 90%;
}

#odd-img img {
    height: auto;
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 70px;
}

#even-img {
    position: relative;
}

#even-img img {
    height: auto;
    position: absolute;
    bottom: -30px;
    left: -90px;
    width: 70px;
}

#grid-o {
    background-image:
        repeating-linear-gradient(to bottom,
        transparent 25px,
        #ffd7b2  26px,  #ffd7b2 26px,
        transparent 27px,  transparent 51px, 
        #ffd7b2  52px,  #ffd7b2  52px,
        transparent 53px,  transparent 77px, 
        #ffd7b2  78px,  #ffd7b2  78px,
        transparent 79px,  transparent 103px, 
        #ffd7b2  104px,  #ffd7b2  104px,
        transparent 105px,  transparent 129px, 
        #ffd7b2  130px,  #ffd7b2  130px),
    
        repeating-linear-gradient(to right,
        transparent 25px,
        #ffd7b2  26px,  #ffd7b2  26px,
        transparent 27px,  transparent 51px, 
        #ffd7b2  52px,  #ffd7b2  52px,
        transparent 53px,  transparent 77px, 
        #ffd7b2  78px,  #ffd7b2  78px,
        transparent 79px,  transparent 103px, 
        #ffd7b2  104px,  #ffd7b2  104px,
        transparent 105px,  transparent 129px, 
        #ffd7b2  130px,  #ffd7b2  130px);
}

.application {
    width: 100%;
    height: fit-content;
}

.app-message {
    margin-top: 10px;
    color: #001A4D;
    font-size: 1.25em;
    font-weight: bold;
}

.forfree {
    display: flex;
    align-items: end;
    justify-content: center;
    line-height: 20px;
    height: 100px;
    padding: 0 15px;
}

.fee {
    color: #001A4D;
    font-weight: bold;
    font-size: .65em;
    margin-left: 10px;
}

.zero {
    color: #F57B03;
    font-weight: bold;
    font-size: 4em;
    margin: auto;
    margin-left: 20px;
}

.yen {
    color: #001A4D;
    font-weight: bold;
    font-size: 1.5em;
    margin: auto;
    margin-bottom: 25px;
}

.message {
    background-color: #FEA500;
    height: fit-content;
    padding-bottom: 25px;
}

.message-box {
    background-color: white;
    width: 90%;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.message-box p {
    padding: 20px 10px;
    font-size: .55em;
}

.qa-link-zone {
    height: 80px;
    text-align: right;
}

#qalink {
    color: #001A4D;
    font-size: .55em;
    margin-right: 10%;
    text-decoration: none;
    border-bottom: #001A4D 1px solid;
}

#qalink span {
    color: #FEA500;
    border-bottom: none;
}

#application {
    position: relative;
    display: flex;
    justify-content: center;
    height: fit-content;
    margin-top: 20px;
}

.lastbtn-img {
    position: absolute;
    width: 50%;
    z-index: 8;
    bottom: 0;
    right: 0;
}

#lastforfree {
    padding-bottom: 55px;
}


/* footer */

.footer {
    width: 100%;
    text-align: center;
    background-color: #001A4D;
    bottom: 0;
}

.trademark {
    padding-top: 15px;
    color: white;
    font-size: .45em;
}

.links {
    padding-bottom: 15px;
}

.links a {
    text-align: center;
    text-decoration: none;
    color: white;
    font-size: .45em;
    padding-bottom: 15px;
}