@charset "utf-8";#ec-header {
    display: none;
}
#wrapper {
    padding-top: 0px;
}

#wrapper {
    padding-top: 0px;
}
.crumbsList {
    display: none;
}

@charset "utf-8";@font-face {
	font-family: 'HelveticaBold';
	src: url('/assets/front/fonts/Helvetica-Bold.ttf') format('truetype');
}

.image {
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}


/*ライン*/

.line02 {
    border-top: 1px solid #555;
    margin: 0 auto;
    width: 60em;
    margin-top: 8%;
    margin-bottom: 3%;
}

/* ボタン*/

.bton a {
    background: #211537;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 300px;
    padding: 10px 25px;
    color: white;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}

.bton a:hover {
    background: #333;
    color: #FFF;
}

.bton a:hover:after {
    border-color: #211537;
}

/* buyボタン*/

.border {
    border: solid 0.5px;
    background-color: #1b1f2b;
    margin: 0% 10%;
    padding: 0% 2% 0% 2%;
    font-size: 0.9em;
    color: #fff;
}

/*矢印ボタン*/
section {
  max-width: 310px;
  margin: 0 auto;
  padding-top:5%;
  padding-bottom:5%;
}

a.btn_02 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    padding: 0 6% 0 12%;
    color: #000;
    font-family: 'HelveticaBold';
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    font-size: 1.1em;
}

a.btn_02:hover {
  background: #000;
  color: #fff;
}

a.btn_02:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  left: 6%;
  margin-top: -7px;
}

a.btn_02:hover:before {
  border-color: transparent transparent transparent #fff;
}

/* テキスト*/

.text01 {
    font-size: 6.5em;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-top: 5%;
    font-family: "Oswald", sans-serif;
    font-weight: 800;
    padding-bottom: 8%;
}

.text02 {
    font-size: 1.8em;
    line-height: 26px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-family: "Oswald", sans-serif;
    padding-top: 3%;
    padding-bottom: 1%;
    font-weight: bolder;
}

.text03 {
    font-size: 0.9em;
    line-height: 26px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-family: "Oswald", sans-serif;
}

.text04 {
    font-size: 0.9em;
    line-height: 26px;
    width: 50%;
    margin: 0 auto;
    text-align: left;
    font-family: "Oswald", sans-serif;
    padding: 2%;
}

/*クレジット用右 */

.text05 {
    font-size: 0.9em;
    line-height: 26px;
    width: 50%;
    margin: 0 auto;
    text-align: right;
    font-family: "Oswald", sans-serif;
    padding: 1%;
}


/*クレジット用ボックス左 */

.text06 {
    font-size: 0.9em;
    line-height: 26px;
    width: 60%;
    margin: 0 auto;
    text-align: justify;
    font-family: "Oswald", sans-serif;
    padding: 1%;
}

/*クレジットボックス用左 */

.text07 {
    font-size: 0.9em;
    line-height: 26px;
    width: 60%;
    margin: 0 auto;
    text-align: center;
    font-family: "Oswald", sans-serif;
    padding: 1%;
}

/*クレジットボックス用右 */

.text08 {
    font-size: 0.9em;
    line-height: 26px;
    width: 60%;
    margin: 0 auto;
    text-align: right;
    font-family: "Oswald", sans-serif;
    padding: 1%;
}

.font01 {
    font-size: 3.5em;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-top: 15%;
    padding-bottom: 5%;
    font-family: "Oswald", sans-serif;
    font-weight: 800;
}

/* 1カラム */
.parent {
    display: grid;
    grid-template-columns: repeat(1, 0.5fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 5px;
    justify-content: center;
    padding-top: 5%;
}

/* 4カラム */
.con59container {
    display: grid;
    grid-template-columns: 0.3fr 0.3fr;
    grid-template-rows: 1fr 1fr;
    gap: 5px 5px;
    grid-auto-flow: row;
    justify-content: center;
    justify-items: center;
    grid-template-areas:
        "imagephoto10 imagephoto20"
        "imagephoto30 imagephoto40";
    padding-top: 3%;
}

.imagephoto10 { grid-area: imagephoto10; }

.imagephoto20 { grid-area: imagephoto20; }

.imagephoto30 { grid-area: imagephoto30; }

.imagephoto40 { grid-area: imagephoto40; }


/* 3カラム */
.con60container {
    display: grid;
    grid-template-columns: 0.3fr 0.3fr 0.3fr;
    grid-template-rows: 1fr;
    gap: 5px 5px;
    grid-auto-flow: row;
    justify-content: center;
    justify-items: center;
    grid-template-areas: "imagephoto50 imagephoto60 imagephoto70";
}

.imagephoto50 { grid-area: imagephoto50; }

.imagephoto60 { grid-area: imagephoto60; }

.imagephoto70 { grid-area: imagephoto70; }

/* 1カラム+テキスト */

.con61container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 0.5fr 0.5fr;
    gap: 5px 5px;
    grid-auto-flow: row;
    justify-content: center;
    justify-items: center;
    grid-template-areas:
        "imegephoto80"
        "imagetext80";
    padding-bottom: 5%;
}

.imegephoto80 {
    grid-area: imegephoto80;
    width: 15%;
}

.imagetext80 {
    grid-area: imagetext80;
    font-size: 1.0em;
    line-height: 26px;
    width: 45%;
    margin: 0 auto;
    text-align: center;
    font-family: "Oswald", sans-serif;
}

/* 2カラム */
.containercon512 {
    display: grid;
    grid-template-columns: 0.3fr 0.3fr;
    grid-template-rows: 1fr;
    gap: 5px 5px;
    grid-auto-flow: row;
    justify-content: center;
    justify-items: center;
    grid-template-areas: "imegephoto90 imagephoto100";
    padding-top:5%;
}

.imegephoto90 { grid-area: imegephoto90; }

.imagephoto100 { grid-area: imagephoto100; }

}


@media only screen and (max-width: 768px){
.text01 {
    font-size: 6.5em;
}
}

@media only screen and (max-width: 768px){
.text05 {
    font-size: 0.8em;
    line-height: 24px;
}

.text06 {
    font-size: 0.8em;
    line-height: 24px;
}

.text07 {
    font-size: 0.8em;
    line-height: 24px;
}

.text08 {
    font-size: 0.8em;
    line-height: 24px;
}

.imagetext80 {
    grid-area: imagetext80;
    font-size: 0.9em;
    line-height: 24px;
    width: 55%;
}
}
@media only screen and (max-width: 430px){
.imegephoto80 {
    grid-area: imegephoto80;
    width: 40%;
}
.imagetext80 {
    grid-area: imagetext80;
    font-size: 1.0em;
    line-height: 26px;
    width: 90%;
    margin: 0 auto;
    text-align: justify;
    font-family: "Oswald", sans-serif;
}

.parent {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 5px;
    justify-content: center;
    margin: 3%;
}

.con59container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    margin: 3%;
}

.con60container {
     display: block;
     margin: 3%;
}

.containercon512 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    margin: 3%;
}
.text01 {
    font-size: 4.0em;
}

.text04 {
    line-height: 25px;
    width: 95%;
    text-align: justify;
}

.text05 {
    line-height: 25px;
    width: 95%;
    text-align: justify;
}

.text06 {
    line-height: 25px;
    width: 95%;
    text-align: justify;
}

.text07 {
    line-height: 25px;
    width: 95%;
    text-align: justify;
}

.text08 {
    line-height: 25px;
    width: 95%;
    text-align: justify;
}
}
@media only screen and (max-width: 320px){
.text01 {
    font-size: 3.5em;
}
}