/*
Theme Name: TEST=TEST
Author: :<
*/


/*<?php echo get_theme_file_uri(''); ?>*/

/*ドロワーメニュー*/

body {
    background-color: #fff3bf;
    margin: none;
}

header {
    color: white;
    background-color: rgb(255, 178, 36);
    width: 100%;
    height: 60px;
    left: 0;
    padding-left: 15px;
    display: flex;
    align-items: center;
    top: 0;
    position: fixed;
    z-index: 60;
}

/*メニューボタン*/
.menubutton {
    position: fixed;    
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background:rgb(255, 178, 36);
    cursor: pointer;    /*⇖カーソルを👆ポインターに変える*/
    z-index: 100;   /*positionで要素同士が重なるデザインのときにプロパティで重ねていく順番を指定*/
}
.menubutton i {
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-70%, -70%);   /*translateで位置を調整*/
    width: 30px;
    height: 2px;
    background: white;
    transition: all .5s;
    z-index: 90;
}
.menubutton i:first-child {
    top: 15px;
}
.menubutton i:nth-child(2) {
    top: 50%;
}
.menubutton i:last-child {
    top: 45px;
}

.menubutton.open i:first-child {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);     /*translateで上書きされないように位置を調整。さらに、rotateで角度を調整。*/
}
.menubutton.open i:nth-child(2) {
    opacity: 0;
}
.menubutton.open i:last-child {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

/*メニュー*/
.menu {
    position: fixed;
    top: 0;
    right: -200px;
    width: 200px;    /*メニューの開く幅を指定*/
    height: 100%;
    background: #9fff82;
    transition: all .5s;
    z-index: 90;
}

.menu.open {
    right: 0;
    z-index: 90;
}
.menu ul {
    margin: 40vh 0 0 0;
    padding: 0;
    list-style: none;
}
.menu li {
    padding: 5px 0;
    text-align: center;
    margin-right: -20px;
    opacity: 0;
    transition: all .5s;
}
.menu a {
    text-decoration: none;
    color: black;
}
.menu.open li {
    margin-right: 0;
    opacity: 1;

}
.menu.open li:first-child {
    transition-delay: .5s;
}
.menu.open li:nth-child(2) {
    transition-delay: .7s;
}
.menu.open li:nth-child(3) {
    transition-delay: .9s;
}
.menu.open li:nth-child(4) {
    transition-delay: 1.1s;
}
.menu.open li:last-child {
    transition-delay: 1.3s;
}

.greeting {
    max-width: 910px;
    text-align: center;
    margin: 0 auto;
}

.greeting h2 {
    text-align: left;
    padding-left: 15px;
    margin-top: 60px;
    color: black;
}

.greeting h3 {
    display: inline-block;
    text-align: left;
    color: black;
    margin-top: 10px;
}

.contents {
    display: flex;
    position: relative;
    margin-bottom: 120px;
}

.news-head {
    position: absolute;
    width: 35vw;
    height: 5vw;
    margin-left: 10vw;
    margin-top: 60px;
    background-color: rgb(255, 178, 36);
    z-index: 1;
}

.news {
    position: relative;
    background-color: white;
    width: 35vw;
    height: 40vw;
    margin-left: 10vw;
    margin-top: 60px;
}

.news-circle {
    display: inline-block;
    text-align: center;
    line-height: 25vw;
    border: solid 3px skyblue;
    width: 27vw;
    height: 15vw;
    border-radius: 50%;
    margin-top: 10vw;
    margin-left: 3vw;
    text-decoration: none;
}

.news-circle02 {
    display: inline-block;
    text-align: center;
    line-height: 15vw;
    border: solid 3px skyblue;
    width: 10vw;
    height: 2vw;
    border-radius: 50%;
    margin-top: 0vw;
    margin-left: 18vw;
}

.news-circle03 {
    display: inline-block;
    text-align: center;
    line-height: 4vw;
    border: solid 3px skyblue;
    width: 4vw;
    height: 1vw;
    border-radius: 50%;
    margin-top: -10vw;
    margin-left: 24vw;
}

.news-circle04 {
    display: inline-block;
    text-align: center;
    line-height: 2vw;
    border: solid 3px skyblue;
    width: 2vw;
    height: 1vw;
    border-radius: 50%;
    margin-left: 28vw;
}

.news-circle > p {
    font-size: 3vw;
    margin-top: -5vw;
    color:rgb(255, 178, 36);
}

.introduction {
    position: absolute;
    background-color: white;
    padding-top: 2px;
    width: 35.5%;
    height: 40vw;
    margin-left: 54.3%;
    margin-right: 50%;
    margin-top: 60px;
}

.introduction-head {
    position: absolute;
    padding-top: 2px;
    width: 100%;
    height: 5vw;
    margin-right: 50%;
    margin-top: -76%;
    background-color: rgb(255, 178, 36);
}

.introduction-circle {
    display: inline-block;
    text-align: center;
    line-height: 25vw;
    border: solid 3px skyblue;
    width: 27vw;
    height: 15vw;
    border-radius: 50%;
    margin-top: 10vw;
    margin-left: 3vw;
    text-decoration: none;
}

.introduction-circle02 {
    display: inline-block;
    text-align: center;
    line-height: 15vw;
    border: solid 3px skyblue;
    width: 10vw;
    height: 2vw;
    border-radius: 50%;
    margin-top: 0vw;
    margin-left: 18vw;
}

.introduction-circle03 {
    display: inline-block;
    text-align: center;
    line-height: 15vw;
    border: solid 3px skyblue;
    width: 4vw;
    height: 1vw;
    border-radius: 50%;
    margin-top: -2vw;
    margin-left: 25vw;
}

.introduction-circle04 {
    display: inline-block;
    text-align: center;
    line-height: 15vw;
    border: solid 3px skyblue;
    width: 2vw;
    height: 1vw;
    border-radius: 50%;
    margin-top: -2vw;
    margin-left: 28vw;
}

.introduction-circle > p {
    font-size: 3vw;
    margin-top: -5vw;
    color:rgb(255, 178, 36);
}

*{
    margin: 0;
    padding: 0;
}

.background-slider {
    background-color: white;
    padding-bottom: 100px;
    padding-top: 160px;
    
}

.container{
    position: relative;
    width: 91vw;
    height: 40vw;
    max-width: 910px;
    max-height: 400px;
    margin: 0px auto 0;
}

.sliderbox{
    border: 2px solid none;
    overflow: hidden;
}

.sliderlist{
    width: 91vw;
    height: 40vw;
    display: flex;
    list-style: none;
}

.sliderlist__item{
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    max-width: 910px;
    max-height: 400px;
}

.sliderlist__item1{
    background-color: silver;
}

.sliderlist__item2{
    background-color: silver;
}

.sliderlist__item3{
    background-color: silver;
}

.sliderlist__item1 img{
    width: 100%;
    height: 100%;
}

.sliderlist__item2 img{
    width: 100%;
    height: 100%;
}

.sliderlist__item3 img{
    width: 100%;
    height: 100%;
}

/* 矢印 */
.prev{
    position: absolute;
    top: 50%;
    left: 1%;
    display: none;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid black;
    border-left: 2px solid black;
    cursor: pointer;
    transform: translateY(-50%) rotate(45deg);
    z-index: 90;
}

.next{
    position: absolute;
    top: 50%;
    right: 1%;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid black;
    border-right: 2px solid black;
    cursor: pointer;
    transform: translateY(-50%) rotate(-45deg);
    z-index: 90px;
}