@charset "utf-8";@charset "UTF-8";
.image {
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

.image img {
	display: block;
	width: 100%;
	height: auto;
}

/* デザイン線*/

.line01 {
    border-top: 1px solid #555;
    margin: 0 auto;
    width: 30em;
    margin-top: 5%;
}

/* 矢印*/

.dli-caret-right {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.375em 0.64952em;
  border-left-color: currentColor;
  border-right: 0;
}
 
/* ボタン*/

.border {
    border: solid 0.5px;
    background-color: #000;
    margin: 0 auto;
    padding: 0% 2% 0% 2%;
    font-size: 0.9em;
    color: #fff;
    letter-spacing: 0.12em;
    border-radius: 4px;
}

/* テキスト */

.text01 {
    font-size: 1.0em;
    line-height: 24px;
    width: 100%;
    margin-top: 5%;
    text-align:center;
    margin-bottom: 5%;
    font-family: "Noto Sans JP", serif;
}

.text02 {
    font-size: 1.0em;
    line-height: 24px;
    width: 100%;
    margin-top: 5%;
    text-align: left;
    margin-bottom: 5%;
    font-family: "Noto Sans JP", serif;
}

.text03 {
    font-size: 1.0em;
    line-height: 24px;
    width: 60%;
    margin: 0 auto;
    text-align: center;
    padding: 3%;
    font-family: "Noto Sans JP", serif;
}

.font01 {
    font-size: 2.6em;
    width: 100%;
    margin: 0% auto;
    text-align: center;
    font-family: "Noto Sans JP", serif;
    margin-top: 8%;
}
.font02 {
    font-size: 2.0em;
    width: 100%;
    margin: 0% auto;
    text-align: center;
    font-family: "Noto Sans JP", serif;
    margin-top: 5%;
}

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-size: 1.0em;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    font-family: serif;
    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;
}

a.btn_03 {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 200px;
    margin: auto;
    padding: 1rem 4rem;
    font-weight: bold;
    border: 2px solid #000;
    background: #000;
    color: #fff;
    transition: 0.5s;
    font-family: serif;
    font-size: 1.1em;
}

a.btn_03:hover {
	color: #27acd9;
	background: #fff;
}

/* アイテム写真１カラム3段*/

.container110 {
    display: grid;
    grid-template-columns: 0.5fr;
    grid-template-rows: 0.5fr 0.2fr;
    gap: 1em 1em;
    grid-auto-flow: row;
    grid-template-areas:
        "photoimage"
        "des";
    justify-content: center;
    margin-top: 10%;
}

.photoimage { grid-area: photoimage; }

.des { grid-area: des;
   font-family: "Noto Sans JP", serif;
}


/* アイテム写真１カラム*/

.container127 {
    display: grid;
    grid-template-columns: 0.4fr;
    grid-template-rows: 1fr;
    gap: 10px 10px;
    grid-auto-flow: row;
    justify-content: center;
    align-content: center;
    grid-template-areas: "photoimage02";
    margin: 5%;
}

.photoimage02 { grid-area: photoimage02; }


/* プロフィール*/

.container128 {
    display: grid;
    grid-template-columns: 0.1fr 0.3fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px 10px;
    grid-auto-flow: row;
    justify-content: center;
    align-content: center;
    grid-template-areas:
        "profilephoto01 profiletext01"
        "profilephoto02 profiletext02";
    margin-top: 10%;
    margin-bottom: 5%;
}

.profilephoto01 { grid-area: profilephoto01; 
  width:80%;
  margin:0 auto;
}

.profiletext01 {
    grid-area: profiletext01;
    font-size: 0.7em;
    line-height: 18px;
    width: 100%;
    text-align: left;
    margin-bottom: 5%;
    font-family: "Noto Sans JP", serif;
}

.profilephoto02 { grid-area: profilephoto02; 
  width:80%;
  margin:0 auto;
}

.profiletext02 { grid-area: profiletext02;
    font-size: 0.7em;
    line-height: 18px;
    width: 100%;
    text-align: left;
    margin-bottom: 5%;
    font-family: "Noto Sans JP", serif;
}

/* スライド*/
.carousel {
    position: relative;
    width: 35%;
    overflow: hidden;
    margin: 0 auto;
}

.slides {
    display: flex;
    width: 130%;
    animation: slide 4s infinite;
}

.slide {
    width: 100%;
    flex-shrink: 0;
}

slide_img {
     width: 100%;
     display: block;
}

        @keyframes slide {
            0% { transform: translateX(0); }
            20% { transform: translateX(0); }
            25% { transform: translateX(-100%); }
            45% { transform: translateX(-100%); }
            50% { transform: translateX(0); }
            100% { transform: translateX(0); }
        }
        }
/*===============================================
tablet
===============================================*/
@media (max-width: 834px) {
section {
  max-width: 320px;
  margin: 0 auto;
}

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-size: 1.0em;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    font-family: serif;
    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;
}
}
@media (max-width: 834px) {
.container128 {
    display: grid;
    grid-template-columns: 0.2fr 0.3fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px 10px;
    grid-auto-flow: row;
    justify-content: center;
    align-content: center;
    grid-template-areas:
        "profilephoto01 profiletext01"
        "profilephoto02 profiletext02";
    margin-top: 10%;
    margin-bottom: 5%;
}
}
@media (max-width: 768px) {
.text01 {
        font-size: 1.0em;
        width: 100%;
        margin: 0 auto;
        text-align: center;
        padding: 5%;
}
.text03 {
    font-size: 1.0em;
    width: 95%;
}
.font01 {
    font-size: 2.6em;
}
}
/*===============================================
SMP
===============================================*/
@media (max-width: 425px) {

section {
  max-width: 310px;
  margin: 0 auto;
  padding-bottom: 15%;
}

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-size: 1.0em;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    font-family: serif;
    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;
}

.sma{
    display: none;
}

.line01 {
    border-top: 1px solid #555;
    margin: 0 auto;
    width: 90%;
    margin-top: 5%;
    padding: 5%;
}
.container110 {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 0.3fr 0.2fr;
        gap: 5px 5px;
        grid-auto-flow: row;
        grid-template-areas:
        "photoimage"
        "des";
        justify-content: center;
        padding: 3%;
}
.container127 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 10px 10px;
    grid-auto-flow: row;
    justify-content: center;
    align-content: center;
    grid-template-areas: "photoimage02";
    margin: 5%;
}
.carousel {
    position: relative;
    width: 90%;
    overflow: hidden;
    margin: 0 auto;
}
.slides {
    display: flex;
    width: 100%;
    animation: slide 4s infinite;
}
.container128 {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    grid-template-rows: 0.3fr 0.3fr;
    gap: 5px 5px;
    grid-auto-flow: row;
    justify-content: center;
    align-content: center;
    grid-template-areas:
        "profilephoto01 profiletext01"
        "profilephoto02 profiletext02";
    margin-top: 10%;
    margin-bottom: 5%;
    padding: 5%;
}

.profilephoto01 {
    grid-area: profilephoto01;
    width: 100%;
    margin: 0 auto;
}

.profilephoto02 {
    grid-area: profilephoto02;
    width: 100%;
    margin: 0 auto;
}
.profiletext01 {
    grid-area: profiletext01;
    font-size: 0.7em;
    line-height: 18px;
    width: 100%;
    text-align: left;
    margin-bottom: 5%;
    font-family: "Noto Sans JP", serif;
}
.profiletext02 {
    grid-area: profiletext02;
    font-size: 0.7em;
    line-height: 18px;
    width: 100%;
    text-align: left;
    margin-bottom: 5%;
    font-family: "Noto Sans JP", serif;
}
.text02 {
    font-size: 1.0em;
    line-height: 24px;
    width: 100%;
    margin-top: 5%;
    text-align: left;
    margin-bottom: 5%;
    font-family: "Noto Sans JP", serif;
    padding: 3%;
}
}
@media (max-width: 320px) {
.font01 {
        font-size: 2.2em;
}
}