/*
    Theme Name: COMFES Original Theme
    Description: COMFESのオリジナルテーマです。
    Author: Rin Yamamoto
    Version: 1.0
*/

* {
  box-sizing: border-box;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  --main-color: rgb(217, 106, 61);
  --sub-color: #fff;
  --sub-color2: rgb(44, 75, 144);
  --sub-color3: rgb(235, 224, 173);
  word-break: break-all;
}

img {
  width: 100%;
}

a {
  transition: all .3s ease;
  text-decoration: none !important;
}

a:hover {
  opacity: .8;
}

html {
  font-size: clamp(0.625rem, 0rem + 2.6667vw, 1.2783333333333333rem);
  scroll-behavior: smooth;
}

body {
  background-color: var(--main-color);
  position: relative;
}

header {
  background-color: var(--sub-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  opacity: 1;
  transition: all .3s ease;
}

header h1 {
  width: 20%;
}

.menu-header-menu-container {
  width: 65%;
}

.menu-header-menu-container ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-header-menu-container ul li {
  flex-basis: 23%;
}

.menu-header-menu-container a {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid var(--main-color);
  border-radius: 20px;
  padding: 5% 0;
}

footer {
  background-color: var(--sub-color3);
  padding: 4% 0;
  z-index: 3;
  position: relative;
}

.footerContainer {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footerMenu {
  flex-basis: 42%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.footerMenu>a {
  font-size: 1rem;
  font-weight: bold;
  flex-basis: 47%;
  color: var(--main-color);
}

.footerInner {
  flex-basis: 42%;
}

.footerInner h1 {
  margin-bottom: 1rem;
}

.footerSns {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footerSns a {
  flex-basis: 20%;
}

.leftSide {
  display: none;
}

.rightSide {
  display: none;
}


@media screen and (min-width: 768px) {
  html {
    font-size: 11.4315px;
  }

  body {
    max-width: 768px;
    margin: 0 auto;
  }

  header {
    max-width: 768px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (min-width: 960px) {
  .leftSide {
    display: block;
    position: fixed !important;
    top: 0;
    left: 0;
    overflow: hidden;
  }

  .leftSideImg,
  .rightSideImg {
    width: 100%;
  }

  .rightSide {
    display: block;
    position: fixed !important;
    top: 0;
    right: 0;
    overflow: hidden;
  }
}

@media screen and (min-width:1200px) {
  .leftSide {
    display: block;
    position: fixed !important;
    top: 0;
    left: 0;
    overflow: hidden;
  }

  .leftSideImg,
  .rightSideImg {
    width: 50%;
  }

  .rightSide {
    display: block;
    position: fixed !important;
    top: 0;
    right: 0;
    overflow: hidden;
  }
}

.privacy-policy li{
	margin-left:10px;
    list-style:auto;
}