@charset "UTF-8";

body {
    font-family:"europa","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif, Verdana, "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
    background-color: #fff;
    color: #404040;
    font-size: 16px;
    letter-spacing: 0.18em;
    line-height: 1.6em;
    }

a {
    text-decoration: none;
}

.wrapper {
    width: 1050px;
    margin: 0 auto;
}

.precautions {
    color: #8c8c8c;
    font-size: 13px;
}

.link {
    color: #ffbc62;
    font-size: 16px;
}

.link:hover {
    color: #ffd6a8;
    transition: 0.5s;
}

.title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

@media screen and (max-width: 559px){
    .wrapper {
        width: 95%;
    }

    .title {
        font-size: 20px;
        font-weight: bold;
        text-align: left;
        line-height: 1.8;
    }
}


/**********　　　　ヘッダー(PC)　　　　**********/

header {
    display: flex;
    align-items: center;
    a:link      {color: #9f9f9f;}
    a:visited   {color: #9f9f9f;}
    a:hover     {color: #9f9f9f;}
    a:active    {color: #9f9f9f;}
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.header-top img {
    width: 100px;
}

.menu-content {
    display: flex;
}

.menu-content li {
    display: inline-block;
    padding-left: 20px;
    font-size: 14px;
}

.header-sub {
    margin-top: 30px;
}

.header-sub .nav {
    display: flex;
}

.header-sub .nav li {
    display: inline-block;
    padding-right: 30px;
    font-size: 16px;
    letter-spacing: 0.25em;
}

#menu-btn-check {
    display: none;
}

.sp-nav {
    display: none;
}

/**********　　　　ヘッダー(SP)　　　　**********/

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

    .header-top {
        margin-top: 20px;
    }

    .header-top img {
        width: 80px;
    }

    .header-sub .nav li {
        padding-right: 10px;
    }

    .header-sub .nav a {
        font-size: 10px;
    }

    .menu-btn {
        display: flex;
        height: 20px;
        width: 60px;
        justify-content: center;
        align-items: center;
        z-index: 90;
    }
    .menu-btn span,
    .menu-btn span:before,
    .menu-btn span:after {
        content: '';
        display: block;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        background-color: #404040;
        position: absolute;
    }
    .menu-btn span:before {
        bottom: 8px;
    }
    .menu-btn span:after {
        top: 8px;
    }

    .sp-nav {
        display: block;
        margin-top: 20px;
    }

    #menu-btn-check {
        display: none;
    }

    .menu-content {
        width: 88%;
        height: 100%;
        position: fixed;
        top: 0;
        right: 100%;/*leftの値を変更してメニューを画面外へ*/
        z-index: 80;
        background-color: #eee;
        transition: all 0.5s;/*アニメーション設定*/
    }

    .menu-content ul {
        padding: 50px 10px 0;
        margin-right: 100px;
    }
  
    .menu-content ul li a {
        display: block;
        width: 100%;
        font-size: 22px;
        box-sizing: border-box;
        color:#404040;
        text-decoration: none;
        padding: 0 15px 10px 10px;
        position: relative;
        line-height: 2em;
    }
    .menu-content ul li a::before {
        content: "";
        width: 7px;
        height: 7px;
        transform: rotate(45deg);
        position: absolute;
        right: 11px;
        top: 16px;
    }

    .menu-content ul .sp-nav li a {
        color: #606060;
    }
    
    #menu-btn-check:checked ~ .menu-content {
    right: 12%;/*メニューを画面内へ*/
}
}

/**********　　　　メインビジュアル(PC)　　　　**********/

#main-visual {
    margin-top: 80px;
    padding-bottom: 20px;
}

#main-visual img {
    width: 1050px;
}

.img-sp {
    display: none;
}

.btn-box {
    text-align: center;
    margin-top: 50px;
}

.btn {
    background-color: #ffaa33;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.12em;
    text-align: center;
    border-radius: 50px;
    padding: 20px 80px;
}
  
.btn:hover {
    background-color: #ffbc62;
}

/**********　　　　メインビジュアル(SP)　　　　**********/


@media screen and (max-width: 559px){
   
    #main-visual img {
        width: 100%;
    }

    .img-sp {
        display: block;
    }

    .img-pc {
        display: none;
    }

    #main-visual {
        margin-top: 20px;
    }

    .btn-box {
        position: fixed;
        bottom: 20px; 
        padding: 20px 35px;
        z-index: 60;
    }
}

/**********　　　　そのこだわりが、しごとになる(PC)　　　　**********/

#catch {
    margin-top: 100px;
}

#catch .wrapper {
    display: flex;
    justify-content: space-between;
}

.catch-left {
    width: 500px;
}

.catch-left img {
    width: 500px;
    margin-bottom: 40px;
}

.catch-right {
    width: 500px;
}

.catch-right img {
    width: 500px;
    height: 500px;
}

/**********　　　　そのこだわりが、しごとになる(SP)　　　　**********/

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

    .catch-left {
        width: 100%;
        margin-bottom: 70px;
    }

    #catch .wrapper {
        display: block;
    }

    .catch-left img {
        width: 100%;
        margin-bottom: 0;
    }

    .catch-right {
        width: 100%;
    }

    .catch-right img {
        width: 100%;
        height: 450px;
    }
}

/**********　　　　キャンペーン開催中！(PC)　　　　**********/

#campaign {
    text-align: center;
}

#campaign img {
    width: 1050px;
    margin-top: 200px;
}

#campaign .precautions {
    margin-top: 90px;
    margin-bottom: 20px;
    text-align: left;
}

/**********　　　　キャンペーン開催中！(SP)　　　　**********/

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

    #campaign img {
        width: 100%;
        margin-top: 50px;
    }

    #campaign .precautions {
        margin-top: 30px;
        margin-bottom: 20px;
        text-align: left;
    }
}

/**********　　　　Fammのスクールで学べるスキル(PC)　　　　**********/

#skill {
    margin-top: 150px;
}

.skill-group {
    width: 260px;
    margin-top: 80px;
}

.skill-group img{
    width: 250px;
}

.skill-group .lead {
    color: #4c4c4c;
    font-weight: bold;
}

.skill-group p {
    margin-top: 15px;
    margin-bottom: 5px;
}

.container {
    display: flex;
    justify-content: space-around;
}

/**********　　　　Fammのスクールで学べるスキル(SP)　　　　**********/

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

    #skill {
        margin-top: 50px;
    }

    #skill .title {
        margin-bottom: 50px;
    }

    .skill-group {
        width: 100%;
        margin-top: 0;
        margin-bottom: 30px;
    }

    .skill-group img{
        width: 100%;
    }

    #skill .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}


/**********　　　　卒業生は3,000人以上。ママ専用の学習コミュニティ。(PC)　　　　**********/

#community {
    margin-top: 150px;
}

#community .title {
    margin-bottom: 30px;
}

#community .container {
    justify-content: space-between;
}

.community-group {
    width: 330px;
    margin-top: 40px;
}

.community-group img {
    width: 330px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.community-group h1 {
    margin-bottom: 15px;
}

/**********　　　　卒業生は3,000人以上。ママ専用の学習コミュニティ。(SP)　　　　**********/

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

    #community {
        margin-top: 50px;
    }

    #community .container {
        display: block;
    }

    .community-group {
        width: 100%;
        margin-top: 20px;
        margin-bottom: 50px;
    }

    .community-group img {
        width: 100%;
    }

    .community-group .precautions {
        margin-bottom: 20px;
    }
}

/**********　　　　講義後のアンケートに、95.4%の受講生が「満足」と答えてくださいました(PC)　　　　**********/

#questionnaire {
    margin-top: 150px;
}

#questionnaire .title {
    margin-bottom: 60px;
}

#questionnaire .container img {
    width: 370px;
    height: 350px;
    margin-bottom: 20px;
}

.questionnaire-left {
    width: 370px;
}

/**********　　　　講義後のアンケートに、95.4%の受講生が「満足」と答えてくださいました(SP)　　　　**********/

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

    #questionnaire {
        margin-top: 50px;
    }

    #questionnaire .container img {
        width: 100%;
        height: 100%;
    }

    #questionnaire .container {
        display: block;
    }

    .questionnaire-left {
        width: 100%;
        margin-bottom: 100px;
    }
}

/**********　　　　TVCM放映！　スクールの主なメディア実績・リリース情報(PC)　　　　**********/

#media {
    margin-top: 150px;
}

#media .wrapper {
    display: flex;
    justify-content: space-between;
}

#media .title {
    margin-bottom: 30px;
}

#media .precautions {
    margin-bottom: 40px;
}

.media-left {
    width: 500px;
}

.movie iframe {
    margin-bottom: 120px;
    width: 500px;
    height: 285px;
}

.media-right {
    width: 500px;
}

.media-group h2 {
    font-weight: bold;
    margin-bottom: 5px;
}

.media-group p {
    margin-bottom: 5px;
}

.media-group {
    margin-bottom: 35px;
}

/**********　　　　TVCM放映！　スクールの主なメディア実績・リリース情報(SP)　　　　**********/

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

    #media {
        margin-top: 50px;
    }

    .media-left {
        width: 100%;
        margin-bottom: 30px;
    }

    .movie iframe {
        margin-bottom: 40px;
        width: 100%;
        height: 270px;
    }

    #media .precautions {
        margin-bottom: 0;
    }

    #media .wrapper {
        display: block;
    }

    .media-right {
        width: 100%;
    }
}

/**********　　　　経験豊富な講師がサポート(PC)　　　　**********/

#teacher {
    margin-top: 125px;
}

#teacher .title {
    margin-bottom: 50px;
}

#teacher .container {
    width: 1050px;
    margin: 0 auto;
}

.teacher-group {
    width: 160px;
    text-align: center;
}

.teacher-group img {
    width: 160px;
    height: 160px;
    margin-bottom: 10px;
}

.teacher-group a {
    color: #4c4c4c;
    font-weight: bold;
}

.ruby {
    font-size: 14px;
    letter-spacing: 0.01em;
}

/**********　　　　経験豊富な講師がサポート(SP)　　　　**********/

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

    #teacher {
        margin-top: 50px;
    }

    #teacher .title {
        margin-bottom: 30px;
    }

    #teacher .container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 15px;
        width: 100%;
    }

    .teacher-group img {
        width: 100%;
        height: 68%;
        margin-bottom: 10px;
    }

    .teacher-group {
        width: 100%;
        letter-spacing: 0.14em;
        margin-bottom: 20px;
    }
}

/**********　　　　Fammスクールの受講料(PC)　　　　**********/

#fee {
    margin-top: 150px;
}

#fee .title {
    margin-bottom: 70px;
}

#fee img {
    width: 1000px;
}

#fee .wrapper {
    text-align: center;
}

/**********　　　　Fammスクールの受講料(SP)　　　　**********/

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

    #fee {
        margin-top: 50px;
    }

    #fee .title {
        margin-bottom: 30px;
    }

    #fee img {
        width: 100%;
    }
}

/**********　　　　Webデザイナー講座(PC)　　　　**********/

#web-design {
    margin-top: 320px;
}

#web-design .title {
    margin-bottom: 70px;
}

#web-design img {
    width: 400px;
}

.web-design-right {
    width: 600px;
    margin-top: 80px;
}

.web-design-right h1 {
    margin-bottom: 30px;
    font-weight: bold;
    text-align: center;
    font-size: 19px;
}

/**********　　　　Webデザイナー講座(SP)　　　　**********/

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

    #web-design {
        margin-top: 150px;
    }

    #web-design .container {
        display: block;
    }

    #web-design .title {
        margin-bottom: 30px;
    }

    #web-design img {
        width: 100%;
    }

    .web-design-right {
        width: 100%;
    }

    .web-design-right h1 {
        text-align: left;
    }
}

/**********　　　　Fammスクールで、身につくスキル　講座で学べる内容(PC)　　　　**********/

#course-content {
    margin-top: 150px;
}

#course-content .title {
    margin-bottom: 30px;
}

.course-left {
    width: 500px;
    margin-right: 30px;
}

.course-left img {
    width: 500px;
    height: 430px;
}

.course-img {
    margin-top: 100px;
}

.course-img p {
    margin-bottom: 40px;
}

.course-right {
    width: 500px;
}

.course-right p {
    margin-bottom: 80px;
}

.course-right img {
    width: 470px;
    height: 400px;
    margin-bottom: 80px;
}

.course-right .precautions {
    letter-spacing: 0.05em;
    line-height: 1.6em;
}

/**********　　　　Fammスクールで、身につくスキル　講座で学べる内容(SP)　　　　**********/

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

    #course-content {
        margin-top: 70px;
    }

    #course-content .container {
        display: block;
    }

    #course-content .title {
        margin-bottom: 20px;
    }

    .course-left {
        width: 100%;
        margin-right: 0;
    }

    .course-right {
        width: 100%;
    }

    .course-img {
        margin-top: 30px;
    }

    .course-img p {
        margin-bottom: 20px;
    }

    .course-left img {
        width: 100%;
        height: 100%;
    }

    .course-right {
        width: 100%;
        margin-top: 100px;
    }

    .course-right p {
        margin-bottom: 50px;
    }

    .course-right img {
        width: 100%;
        height: 100%;
        margin-bottom: 50px;
    }
}

/**********　　　　Fammはママ向けプランに特化　卒業生の講座中の作例(PC)　　　　**********/

#sample {
    margin-top: 150px;
}

#sample .title {
    margin-bottom: 30px;
}

.sample-left {
    width: 500px;
    margin-right: 30px;
}

.sample-left img {
    width: 500px;
    margin-top: 30px;
}

.sample-right {
    width: 500px;
}

.sample-right img {
    margin-top: 30px;
}

/**********　　　　Fammはママ向けプランに特化　卒業生の講座中の作例(SP)　　　　**********/

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

    #sample {
        margin-top: 80px;
    }

    #sample .title {
        margin-bottom: 15px;
    }

    #sample .container {
        display: block;
    }

    .sample-left {
        width: 100%;
        margin-right: 0;
    }

    .sample-left img {
        width: 100%;
        margin-top: 30px;
    }

    .sample-left .precautions {
        margin-top: 5px;
        letter-spacing: 0.01em;
    }

    .sample-right {
        width: 100%;
        margin-top: 90px;
    }

    .sample-right img {
        margin-top: 20px;
        width: 100%;
    }
}

/**********　　　　卒業後もキャリアアップを応援サポート(PC)　　　　**********/

#carrierup {
    margin-top: 150px;
}

#carrierup .title {
    margin-bottom: 60px;
}

.carrierup-left {
    width: 500px;
    margin-right: 30px;
}

.carrierup-left img {
    width: 18%;
    height: 18%;
    margin-right: 20px;
}

.carrierup-group {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.carrierup-text {
    width: 450px;
}

.carrierup-text h1 {
    margin-bottom: 5px;
}

.carrierup-text .precautions {
    letter-spacing: 0.08em;
}

.application-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.carrierup-right {
    width: 500px;
}

.application-group {
    width: 240px;
}

.application-block img {
    width: 100%;
    height: 70%;
}

.application-block h1 {
    margin-bottom: 5px;
}

.application-block .precautions {
    letter-spacing: 0.08em;
}

/**********　　　　卒業後もキャリアアップを応援サポート(SP)　　　　**********/

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

    #carrierup {
        margin-top: 70px;
    }

    #carrierup .title {
        margin-bottom: 40px;
    }

    .carrierup-left {
        width: 100%;
        margin-right: 0;
    }

    #carrierup .container {
        display: block;
    }

    .carrierup-left img {
        width: 15%;
        height: 15%;
    }
    
    .carrierup-text {
        width: 100%;
    }
    
    .carrierup-text h1 {
        margin-bottom: 0;
    }
    
    .carrierup-text .precautions {
        letter-spacing: 0.005em;
    }

    .carrierup-right {
        width: 100%;
        margin-top: 80px;
    }

    .application-group {
        width: 100%;
    }

    .application-block img {
        width: 100%;
        height: 65%;
    }

    .application-block h1 {
        margin-bottom: 0;
    }

    .application-block .precautions {
        letter-spacing: 0.005em;
    }
}

/**********　　　　しっかりしたサポートで、お客様の満足度と成長に向き合います(PC)　　　　**********/

#support {
    margin-top: 150px;
}

#support .title {
    margin-bottom: 60px;
}

.support-group {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.support-group .img1 {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-right: 30px;
}

.support-group .img2 {
    width: 100px;
    height: 100px;
    margin-right: 30px;
}

.support-group .img3 {
    width: 120px;
    height: 90px;
    margin-right: 10px;
}

.support-group h1 {
    margin-bottom: 20px;
}

.support-text .precautions {
    letter-spacing: 0.08em;
}

/**********　　　　しっかりしたサポートで、お客様の満足度と成長に向き合います(SP)　　　　**********/


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

    #support {
        margin-top: 80px;
    }

    #support .title {
        margin-bottom: 40px;
    }

    .support-group .img1 {
        width: 35px;
        height: 35px;
        object-fit: cover;
        margin-right: 15px;
    }
    
    .support-group .img2 {
        width: 35px;
        height: 35px;
        margin-right: 15px;
    }
    
    .support-group .img3 {
        width: 60px;
        height: 30px;
        margin-right: 10px;
    }
}

/**********　　　　人生を変えたママがたくさん(PC)　　　　**********/

#mama {
    margin-top: 150px;
}

#mama .title {
    margin-bottom: 60px;
}

.mama-group {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
}

.mama-group img {
    width: 300px;
    height: 155px;
    margin-right: 20px;
}

.mama-text {
    width: 720px;
}

.mama-text a {
    color: #404040;
}

.mama-block {
    margin-bottom: 40px;
}

.line {
    margin-top: 100px;
    text-align: center;
}

/**********　　　　人生を変えたママがたくさん(SP)　　　　**********/

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

    #mama {
        margin-top: 60px;
    }

    #mama .title {
        margin-bottom: 30px;
    }

    .mama-group img {
        width: 115px;
        height: 60px;
        margin-right: 20px;
    }

    .mama-group {
        margin-bottom: 20px;
    }

    #mama .link {
        margin-top: 40px;
    }

    #mama .line img {
        width: 100%;
    }

    #mama .line {
        margin-top: 30px;
    }
}

/**********　　　　ママに役立つオンラインウェビナー(PC)　　　　**********/

#online {
    margin-top: 100px;
}

#online .title {
    margin-bottom: 30px;
}

/**********　　　　ママに役立つオンラインウェビナー(SP)　　　　**********/

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

    #online {
        margin-top: 50px;
    }
}

/**********　　　　次回開催・過去のウェビナー(PC)　　　　**********/

#webiner {
    margin-top: 150px;
}

#webiner .title {
    margin-bottom: 60px;
}

.webiner-left {
    width: 500px;
}

.webiner-left p {
    margin-bottom: 65px;
}

.webiner-right {
    width: 500px;
}

.webiner-right img {
    width: 60px;
    height: 80px;
    margin-right: 20px;
}

.webiner-group {
    display: flex;
    justify-content: left;
    margin-bottom: 25px;
}

.webiner-text a {
    color: #404040;
    letter-spacing: 0.12em;
}

.webiner-text .precautions {
    margin-bottom: 10px;
}

.webiner-text h1 {
    margin-top: 10px;
}

/**********　　　　次回開催・過去のウェビナー(SP)　　　　**********/

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

    #webiner {
        margin-top: 80px;
    }

    #webiner .container {
        display: block;
    }

    #webiner .title {
        margin-bottom: 40px;
    }

    .webiner-left {
        width: 100%;
    }

    .webiner-left p {
        margin-bottom: 40px;
    }

    .webiner-right {
        width: 100%;
        margin-top: 75px;
    }

    .webiner-group {
        margin-bottom: 35px;
    }

    .webiner-right img {
        width: 55px;
        height: 70px;
        margin-right: 15px;
    }
}

/**********　　　　よくある質問・その他コース(PC)　　　　**********/

#question {
    margin-top: 150px;
}

#question .title {
    margin-bottom: 40px;
}

.question {
    width: 500px;
    margin-right: 20px;
}

.question h1 {
    margin-bottom: 10px;
}

.question .precautions {
    letter-spacing: 0.05em;
    line-height: 1.6em;
}

.question-group {
    margin-bottom: 25px;
}

.question .line {
    margin-top: 60px;
    text-align: center;
}

.question .line img {
    width: 500px;
}

.others {
    width: 500px;
}

.others-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.others-block .skill-group {
    margin-top: 0;
    margin-bottom: 30px;
}

/**********　　　　よくある質問・その他コース(SP)　　　　**********/

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

    #question {
        margin-top: 100px;
    }

    #question .title {
        margin-bottom: 30px;
    }
    
    #question .container {
        display: block;
    }

    .question {
        width: 100%;
        margin-right: 0;
    }

    .question .line img {
        width: 100%;
    }

    .others {
        width: 100%;
        margin-top: 100px;
    }
}

/**********　　　　プレママ・ママ以外の方へ(PC)　　　　**********/

#other-than {
    margin-top: 250px;
}

#other-than .container {
    align-items: center;
}

#other-than .title {
    margin-bottom: 30px;
}

.other-than-text {
    width: 480px;
}

.other-than-text p {
    margin-bottom: 30px;
}

#other-than img {
    width: 530px;
    height: 530px;
}

/**********　　　　プレママ・ママ以外の方へ(SP)　　　　**********/

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

    #other-than {
        margin-top: 50px;
    }

    #other-than .title {
        margin-bottom: 5px;
    }

    .other-than-text {
        width: 100%;
    }

    #other-than img {
        width: 50%;
        height: 50%;
    }

    #other-than .container {
        align-items: start;
    }
}

/**********　　　　Fammとは(PC)　　　　**********/

#about {
    margin-top: 100px;
}

#about .title {
    margin-bottom: 60px;
}

#about .container {
    align-items: center;
}

#about img {
    width: 550px;
    height: 380px;
    margin-right: 40px;
}

.about-text {
    width: 480px;
}

.about-text h1 {
    margin-bottom: 25px;
}

.about-text .precautions {
    margin-bottom: 25px;
}

/**********　　　　Fammとは(SP)　　　　**********/


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

    #about {
        margin-top: 50px;
    }

    #about img {
        width: 220px;
        height: 170px;
        margin-right: 20px;
    }

    #about .container {
        align-items: start;
    }

    .about-text h1 {
        margin-bottom: 15px;
    }
}

/**********　　　　人気商品(PC)　　　　**********/

#item {
    margin-top: 60px;
}

#item .title {
    margin-bottom: 60px;
}

.item-group {
    width: 120px;
}

.item-group img {
    width: 120px;
    height: 110px;
    margin-bottom: 10px;
}

.item-group h1 {
    line-height: 1.8em;
}

.item-group .precautions {
    line-height: 1.8em;
}

.custom {
    text-decoration: line-through;
}

.contact {
    margin-top: 150px;
    text-align: center;
}

/**********　　　　人気商品(SP)　　　　**********/

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

    #item {
        margin-top: 10px;
    }

    #item .title {
        margin-bottom: 30px;
    }

    #item .container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
    }

    .item-group img {
        width: 145px;
        height: 135px;
        margin-bottom: 10px;
    }

    .item-group {
        width: 100%;
    }

    .contact {
        margin-top: 50px;
    }

    .contact img {
        width: 100%;
    }
}

/**********　　　　フッター(PC)　　　　**********/

footer {
    margin-top: 200px;
    text-align: center;
}

footer li {
    width: 140px;
    text-align: center;
}

footer ul {
    display: flex;
    justify-content: space-between;
}

footer p {
    margin-top: 100px;
    margin-bottom: 250px;
}

/**********　　　　フッター(SP)　　　　**********/

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

    footer {
        margin-top: 80px;
    }

    footer ul {
        display: block;
    }

    footer li {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    footer p {
        margin-top: 50px;
        margin-bottom: 100px;
    }
}
   
    

